production-evyos-systems-an.../ServicesApi/Schemas/__init__.py

212 lines
4.7 KiB
Python

from Schemas.account.account import (
AccountBooks,
AccountCodes,
AccountCodeParser,
AccountMaster,
AccountDetail,
AccountRecordExchanges,
AccountRecords,
AccountDelayInterest,
)
from Schemas.account.iban import (
BuildIbans,
BuildIbanDescription,
)
from Schemas.address.address import (
RelationshipEmployee2PostCode,
AddressPostcode,
Addresses,
AddressGeographicLocations,
AddressCountry,
AddressState,
AddressCity,
AddressDistrict,
AddressLocality,
AddressNeighborhood,
AddressStreet,
)
from Schemas.building.build import (
# BuildTypes,
Part2Employee,
RelationshipEmployee2Build,
Build,
BuildParts,
BuildLivingSpace,
BuildManagement,
BuildArea,
BuildSites,
BuildCompaniesProviding,
BuildPersonProviding,
)
from Schemas.building.decision_book import (
BuildDecisionBook,
BuildDecisionBookInvitations,
BuildDecisionBookPerson,
BuildDecisionBookPersonOccupants,
BuildDecisionBookItems,
BuildDecisionBookItemsUnapproved,
BuildDecisionBookPayments,
BuildDecisionBookLegal,
BuildDecisionBookProjects,
BuildDecisionBookProjectPerson,
BuildDecisionBookProjectItems,
)
from Schemas.building.budget import (
DecisionBookBudgetBooks,
DecisionBookBudgetCodes,
DecisionBookBudgetMaster,
DecisionBookBudgets,
)
from Schemas.company.company import (
Companies,
RelationshipDutyCompany,
)
from Schemas.company.employee import (
Employees,
EmployeesSalaries,
EmployeeHistory,
Staff,
)
from Schemas.company.department import (
Duty,
Duties,
Departments,
)
from Schemas.event.event import (
Modules,
Services,
Service2Events,
Service2Application,
Events,
Event2Occupant,
Event2Employee,
Event2OccupantExtra,
Event2EmployeeExtra,
Applications,
Application2Employee,
Application2Occupant,
Application2EmployeeExtra,
Application2OccupantExtra,
)
from Schemas.identity.identity import (
UsersTokens,
OccupantTypes,
People,
Users,
Credentials,
RelationshipDutyPeople,
Contracts,
)
from Schemas.address.address import (
Addresses,
AddressCity,
AddressStreet,
AddressLocality,
AddressDistrict,
AddressNeighborhood,
AddressState,
AddressCountry,
AddressPostcode,
AddressGeographicLocations,
RelationshipEmployee2PostCode,
)
from Schemas.others.enums import (
ApiEnumDropdown,
)
from Schemas.rules.rules import (
EndpointRestriction,
)
__all__ = [
"AccountBooks",
"AccountCodes",
"AccountCodeParser",
"AccountMaster",
"AccountDetail",
"AccountRecordExchanges",
"AccountRecords",
"AccountDelayInterest",
"BuildIbans",
"BuildIbanDescription",
"RelationshipEmployee2PostCode",
"AddressPostcode",
"Addresses",
"AddressGeographicLocations",
"AddressCountry",
"AddressState",
"AddressCity",
"AddressDistrict",
"AddressLocality",
"AddressNeighborhood",
"AddressStreet",
# "BuildTypes",
"Part2Employee",
"RelationshipEmployee2Build",
"Build",
"BuildParts",
"BuildLivingSpace",
"BuildManagement",
"BuildArea",
"BuildSites",
"BuildCompaniesProviding",
"BuildPersonProviding",
"BuildDecisionBook",
"BuildDecisionBookInvitations",
"BuildDecisionBookPerson",
"BuildDecisionBookPersonOccupants",
"BuildDecisionBookItems",
"BuildDecisionBookItemsUnapproved",
"BuildDecisionBookPayments",
"BuildDecisionBookLegal",
"BuildDecisionBookProjects",
"BuildDecisionBookProjectPerson",
"BuildDecisionBookPersonOccupants",
"BuildDecisionBookProjectItems",
"DecisionBookBudgetBooks",
"DecisionBookBudgetCodes",
"DecisionBookBudgetMaster",
"DecisionBookBudgets",
"Companies",
"RelationshipDutyCompany",
"Employees",
"EmployeesSalaries",
"EmployeeHistory",
"Staff",
"Duty",
"Duties",
"Departments",
"Modules",
"Services",
"Service2Events",
"Events",
"Event2Occupant",
"Event2Employee",
"Event2OccupantExtra",
"Event2EmployeeExtra",
"Applications",
"Application2Employee",
"Application2Occupant",
"Addresses",
"AddressCity",
"AddressStreet",
"AddressLocality",
"AddressDistrict",
"AddressNeighborhood",
"AddressState",
"AddressCountry",
"AddressPostcode",
"AddressGeographicLocations",
"UsersTokens",
"OccupantTypes",
"People",
"Users",
"Credentials",
"RelationshipDutyPeople",
"RelationshipEmployee2PostCode",
"Contracts",
"ApiEnumDropdown",
"EndpointRestriction",
"RelationshipEmployee2Build",
# ------------------------------------------------
]