events and auth updated
This commit is contained in:
parent
934c7bc845
commit
129e8015f3
|
|
@ -45,6 +45,17 @@ from api_events.events.building.building_build_parts import (
|
||||||
BuildingBuildPartsUpdateEventMethod,
|
BuildingBuildPartsUpdateEventMethod,
|
||||||
BuildingBuildPartsPatchEventMethod,
|
BuildingBuildPartsPatchEventMethod,
|
||||||
)
|
)
|
||||||
|
from api_events.events.building.building_build_area import (
|
||||||
|
BuildAreaListEventMethod,
|
||||||
|
BuildAreaCreateEventMethod,
|
||||||
|
BuildAreaUpdateEventMethod,
|
||||||
|
BuildAreaPatchEventMethod,
|
||||||
|
)
|
||||||
|
from api_events.events.building.building_build_sites import (
|
||||||
|
BuildSitesListEventMethod,
|
||||||
|
BuildSitesCreateEventMethod,
|
||||||
|
BuildSitesUpdateEventMethod,
|
||||||
|
)
|
||||||
from api_events.events.company.company_company import (
|
from api_events.events.company.company_company import (
|
||||||
CompanyListEventMethod,
|
CompanyListEventMethod,
|
||||||
CompanyCreateEventMethod,
|
CompanyCreateEventMethod,
|
||||||
|
|
@ -164,6 +175,13 @@ __all__ = [
|
||||||
"BuildingLivingSpacesPartsListEventMethod",
|
"BuildingLivingSpacesPartsListEventMethod",
|
||||||
"BuildingLivingSpacesPartsCreateEventMethod",
|
"BuildingLivingSpacesPartsCreateEventMethod",
|
||||||
"BuildingLivingSpacesPartsUpdateEventMethod",
|
"BuildingLivingSpacesPartsUpdateEventMethod",
|
||||||
|
"BuildAreaListEventMethod",
|
||||||
|
"BuildAreaCreateEventMethod",
|
||||||
|
"BuildAreaUpdateEventMethod",
|
||||||
|
"BuildAreaPatchEventMethod",
|
||||||
|
"BuildSitesListEventMethod",
|
||||||
|
"BuildSitesCreateEventMethod",
|
||||||
|
"BuildSitesUpdateEventMethod",
|
||||||
"DecisionBookListEventMethod",
|
"DecisionBookListEventMethod",
|
||||||
"DecisionBookCreateEventMethod",
|
"DecisionBookCreateEventMethod",
|
||||||
"DecisionBookUpdateEventMethod",
|
"DecisionBookUpdateEventMethod",
|
||||||
|
|
|
||||||
|
|
@ -155,9 +155,9 @@ BuildAreaListEventMethod = BuildAreaListEventMethods(
|
||||||
BuildAreaCreateEventMethod = BuildAreaCreateEventMethods(
|
BuildAreaCreateEventMethod = BuildAreaCreateEventMethods(
|
||||||
action=ActionsSchema(endpoint="/building/area/create")
|
action=ActionsSchema(endpoint="/building/area/create")
|
||||||
)
|
)
|
||||||
BuildUpdateEventMethod = BuildAreaUpdateEventMethods(
|
BuildAreaUpdateEventMethod = BuildAreaUpdateEventMethods(
|
||||||
action=ActionsSchema(endpoint="/building/area/update")
|
action=ActionsSchema(endpoint="/building/area/update")
|
||||||
)
|
)
|
||||||
BuildPatchEventMethod = BuildPatchEventMethods(
|
BuildAreaPatchEventMethod = BuildAreaPatchEventMethods(
|
||||||
action=ActionsSchema(endpoint="/building/area/patch")
|
action=ActionsSchema(endpoint="/building/area/patch")
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue