221 lines
5.2 KiB
Python
221 lines
5.2 KiB
Python
from .core_request_validations import (
|
|
ListOptions,
|
|
PydanticBaseModel,
|
|
PatchRecord,
|
|
EndpointPydantic,
|
|
BaseModelRegular,
|
|
)
|
|
from .address import InsertAddress, InsertPostCode, SearchAddress
|
|
from .application import (
|
|
SingleEnumUUID,
|
|
SingleEnumClassKey,
|
|
SingleEnumOnlyClass,
|
|
SingleOccupantTypeUUID,
|
|
SingleOccupantTypeClassKey,
|
|
)
|
|
from .area import (
|
|
InsertBuildArea,
|
|
InsertBuildSites,
|
|
UpdateBuildArea,
|
|
UpdateBuildSites,
|
|
)
|
|
from .authentication import (
|
|
Login,
|
|
Logout,
|
|
ChangePassword,
|
|
Remember,
|
|
Forgot,
|
|
CreatePassword,
|
|
OccupantSelection,
|
|
EmployeeSelection,
|
|
)
|
|
from .build_living_space import (
|
|
InsertBuildLivingSpace,
|
|
UpdateBuildLivingSpace,
|
|
)
|
|
from .build_part import (
|
|
InsertBuildParts,
|
|
InsertBuildTypes,
|
|
UpdateBuildParts,
|
|
UpdateBuildTypes,
|
|
)
|
|
from .building import (
|
|
InsertBuild,
|
|
UpdateBuild,
|
|
)
|
|
from .company import (
|
|
MatchCompany2Company,
|
|
InsertCompany,
|
|
UpdateCompany,
|
|
)
|
|
from .decision_book import (
|
|
DecisionBookDecisionBookInvitations,
|
|
DecisionBookDecisionBookInvitationsUpdate,
|
|
DecisionBookDecisionBookInvitationsAttend,
|
|
DecisionBookDecisionBookInvitationsAssign,
|
|
UpdateDecisionBook,
|
|
UpdateBuildDecisionBookItems,
|
|
UpdateBuildDecisionBookItemDebits,
|
|
InsertBuildDecisionBookItems,
|
|
InsertBuildDecisionBookItemDebits,
|
|
InsertDecisionBookCompleted,
|
|
InsertDecisionBook,
|
|
InsertDecisionBookPerson,
|
|
ListDecisionBook,
|
|
RemoveDecisionBookPerson,
|
|
)
|
|
from .departments import (
|
|
DepartmentsPydantic,
|
|
)
|
|
from .employee import (
|
|
InsertDuties,
|
|
UpdateDuties,
|
|
InsertEmployees,
|
|
SelectDuties,
|
|
UnBindEmployees2People,
|
|
BindEmployees2People,
|
|
UpdateCompanyEmployees,
|
|
InsertCompanyEmployees,
|
|
InsertCompanyEmployeesSalaries,
|
|
InsertCompanyDuty,
|
|
UpdateCompanyEmployeesSalaries,
|
|
UpdateCompanyDuty,
|
|
)
|
|
from .events import (
|
|
CreateEvents,
|
|
RegisterEvents2Employee,
|
|
RegisterEvents2Occupant,
|
|
)
|
|
from .people import (
|
|
UpdatePerson,
|
|
InsertPerson,
|
|
ResponsePersonSalesMange,
|
|
)
|
|
from .project_decision_book import (
|
|
InsertBuildDecisionBookProjectItems,
|
|
UpdateBuildDecisionBookProjectItems,
|
|
InsertBuildDecisionBookProjectItemDebits,
|
|
UpdateBuildDecisionBookProjectItemDebits,
|
|
InsertBuildDecisionBookProjects,
|
|
UpdateBuildDecisionBookProjects,
|
|
)
|
|
from .rules import (
|
|
UpdateEndpointAccess,
|
|
UpdateEndpointAccessList,
|
|
InsertEndpointAccess,
|
|
)
|
|
from .services import (
|
|
RegisterServices2Employee,
|
|
RegisterServices2Occupant,
|
|
)
|
|
from .staff import (
|
|
InsertStaff,
|
|
SelectStaff,
|
|
)
|
|
from .user import (
|
|
InsertUsers,
|
|
UpdateUsers,
|
|
QueryUsers,
|
|
ActiveUsers,
|
|
ListUsers,
|
|
DeleteUsers,
|
|
)
|
|
from .modules import (
|
|
RegisterModules2Occupant,
|
|
RegisterModules2Employee,
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
"ListOptions",
|
|
"PydanticBaseModel",
|
|
"PatchRecord",
|
|
"EndpointPydantic",
|
|
"BaseModelRegular",
|
|
"InsertAddress",
|
|
"InsertPostCode",
|
|
"SearchAddress",
|
|
"SingleEnumUUID",
|
|
"SingleEnumClassKey",
|
|
"SingleEnumOnlyClass",
|
|
"SingleOccupantTypeUUID",
|
|
"SingleOccupantTypeClassKey",
|
|
"InsertBuildArea",
|
|
"InsertBuildSites",
|
|
"UpdateBuildArea",
|
|
"UpdateBuildSites",
|
|
"Login",
|
|
"Logout",
|
|
"ChangePassword",
|
|
"Remember",
|
|
"Forgot",
|
|
"CreatePassword",
|
|
"OccupantSelection",
|
|
"EmployeeSelection",
|
|
"InsertBuildLivingSpace",
|
|
"UpdateBuildLivingSpace",
|
|
"InsertBuildParts",
|
|
"InsertBuildTypes",
|
|
"UpdateBuildParts",
|
|
"UpdateBuildTypes",
|
|
"InsertBuild",
|
|
"UpdateBuild",
|
|
"MatchCompany2Company",
|
|
"InsertCompany",
|
|
"UpdateCompany",
|
|
"DecisionBookDecisionBookInvitations",
|
|
"DecisionBookDecisionBookInvitationsUpdate",
|
|
"DecisionBookDecisionBookInvitationsAttend",
|
|
"DecisionBookDecisionBookInvitationsAssign",
|
|
"UpdateDecisionBook",
|
|
"UpdateBuildDecisionBookItems",
|
|
"UpdateBuildDecisionBookItemDebits",
|
|
"InsertBuildDecisionBookItems",
|
|
"InsertBuildDecisionBookItemDebits",
|
|
"InsertDecisionBookCompleted",
|
|
"InsertDecisionBook",
|
|
"InsertDecisionBookPerson",
|
|
"ListDecisionBook",
|
|
"RemoveDecisionBookPerson",
|
|
"DepartmentsPydantic",
|
|
"InsertDuties",
|
|
"UpdateDuties",
|
|
"InsertEmployees",
|
|
"SelectDuties",
|
|
"UnBindEmployees2People",
|
|
"BindEmployees2People",
|
|
"UpdateCompanyEmployees",
|
|
"InsertCompanyEmployees",
|
|
"InsertCompanyEmployeesSalaries",
|
|
"InsertCompanyDuty",
|
|
"UpdateCompanyEmployeesSalaries",
|
|
"UpdateCompanyDuty",
|
|
"CreateEvents",
|
|
"RegisterEvents2Employee",
|
|
"RegisterEvents2Occupant",
|
|
"UpdatePerson",
|
|
"InsertPerson",
|
|
"ResponsePersonSalesMange",
|
|
"InsertBuildDecisionBookProjectItems",
|
|
"UpdateBuildDecisionBookProjectItems",
|
|
"InsertBuildDecisionBookProjectItemDebits",
|
|
"UpdateBuildDecisionBookProjectItemDebits",
|
|
"InsertBuildDecisionBookProjects",
|
|
"UpdateBuildDecisionBookProjects",
|
|
"UpdateEndpointAccess",
|
|
"UpdateEndpointAccessList",
|
|
"InsertEndpointAccess",
|
|
"RegisterServices2Employee",
|
|
"RegisterServices2Occupant",
|
|
"InsertStaff",
|
|
"SelectStaff",
|
|
"InsertUsers",
|
|
"UpdateUsers",
|
|
"QueryUsers",
|
|
"ActiveUsers",
|
|
"ListUsers",
|
|
"DeleteUsers",
|
|
"RegisterModules2Occupant",
|
|
"RegisterModules2Employee",
|
|
]
|