@7365admin1/core 2.17.0 → 2.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @iservice365/core
2
2
 
3
+ ## 2.19.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 89ff358: get latest changes for people, virtual patrol, M&E mobile, soa, and billing
8
+
3
9
  ## 2.17.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -26,9 +26,11 @@ declare function useSessionRepo(): {
26
26
  };
27
27
 
28
28
  declare function useAuthService(): {
29
- login: ({ email, password, }: {
29
+ login: ({ email, password, isMobile, type, }: {
30
30
  email: string;
31
31
  password: string;
32
+ isMobile?: boolean | undefined;
33
+ type?: string | undefined;
32
34
  }) => Promise<{
33
35
  sid: string;
34
36
  user: string;
@@ -1870,6 +1872,15 @@ declare enum VehicleStatus {
1870
1872
  INACTIVE = "inactive",
1871
1873
  DELETED = "deleted"
1872
1874
  }
1875
+ declare enum VehicleOrder {
1876
+ ASC = "asc",
1877
+ DESC = "desc"
1878
+ }
1879
+ declare enum VehicleSort {
1880
+ CREATED_AT = "createdAt",
1881
+ ID = "_id",
1882
+ NAME = "name"
1883
+ }
1873
1884
  declare enum OrgNature {
1874
1885
  PROPERTY_MANAGEMENT_AGENCY = "property_management_agency",
1875
1886
  SECURITY_AGENCY = "security_agency"
@@ -1954,6 +1965,12 @@ declare function useVehicleRepo(): {
1954
1965
  sort?: Record<string, any> | undefined;
1955
1966
  }) => Promise<{}>;
1956
1967
  deleteExpiredVehicles: (session?: ClientSession) => Promise<number>;
1968
+ getAllVehiclesByUnitId: ({ unitId, page, limit, sort, }: {
1969
+ unitId: string | ObjectId;
1970
+ page?: number | undefined;
1971
+ limit?: number | undefined;
1972
+ sort?: Record<string, 1 | -1> | undefined;
1973
+ }) => Promise<{}>;
1957
1974
  };
1958
1975
 
1959
1976
  declare function useVehicleService(): {
@@ -1975,6 +1992,7 @@ declare function useVehicleController(): {
1975
1992
  approveVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1976
1993
  getVehiclesByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1977
1994
  reactivateVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1995
+ getAllVehiclesByUnitId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1978
1996
  };
1979
1997
 
1980
1998
  type TCamera = {
@@ -2316,6 +2334,7 @@ type TVisitorTransaction = {
2316
2334
  remarks?: string;
2317
2335
  deliveryType?: string;
2318
2336
  attachments?: string[];
2337
+ snapshotKey?: string;
2319
2338
  nric?: string;
2320
2339
  contractorType?: string;
2321
2340
  manualCheckout?: boolean;
@@ -2352,6 +2371,7 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
2352
2371
  remarks: string | undefined;
2353
2372
  deliveryType: string | undefined;
2354
2373
  attachments: string[] | undefined;
2374
+ snapshotKey: string | undefined;
2355
2375
  nric: string | undefined;
2356
2376
  contractorType: string | undefined;
2357
2377
  manualCheckout: boolean;
@@ -2378,7 +2398,7 @@ declare function useVisitorTransactionRepo(): {
2378
2398
  type?: string | undefined;
2379
2399
  checkedOut?: string | undefined;
2380
2400
  }, session?: ClientSession) => Promise<{}>;
2381
- getOpenByPlateNumber: (plateNumber: string) => Promise<TVisitorTransaction | null>;
2401
+ getOpenByPlateNumber: (plateNumber: string, site: string | ObjectId) => Promise<TVisitorTransaction | null>;
2382
2402
  updateById: (_id: string | ObjectId, value: Partial<TVisitorTransaction>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
2383
2403
  deleteVisitorTransaction: (_id: string | ObjectId) => Promise<number>;
2384
2404
  createTextIndex: () => Promise<void>;
@@ -2752,6 +2772,10 @@ type logCamera = {
2752
2772
  video: Array<string>;
2753
2773
  }>;
2754
2774
  };
2775
+ type incidentReport = {
2776
+ reportId: string;
2777
+ id: string | ObjectId;
2778
+ };
2755
2779
  type TPatrolLog = {
2756
2780
  _id?: ObjectId;
2757
2781
  route?: string | ObjectId;
@@ -2762,11 +2786,13 @@ type TPatrolLog = {
2762
2786
  end: string;
2763
2787
  cameras: Array<logCamera>;
2764
2788
  status: Array<string>;
2789
+ incidentReport: incidentReport;
2765
2790
  createdAt?: Date | string;
2766
2791
  updatedAt?: Date | string;
2767
2792
  deletedAt?: Date | string;
2768
2793
  };
2769
2794
  declare const schemeLogCamera: Joi.ObjectSchema<any>;
2795
+ declare const incidentReportLog: Joi.ObjectSchema<any>;
2770
2796
  declare const schemaPatrolLog: Joi.ObjectSchema<any>;
2771
2797
  declare const schemaUpdatePatrolLog: Joi.ObjectSchema<any>;
2772
2798
  declare function MPatrolLog(value: TPatrolLog): {
@@ -2779,6 +2805,7 @@ declare function MPatrolLog(value: TPatrolLog): {
2779
2805
  cameras: logCamera[];
2780
2806
  status: string[];
2781
2807
  route: string | ObjectId | undefined;
2808
+ incidentReport: incidentReport;
2782
2809
  createdAt: string | Date;
2783
2810
  updatedAt: string | Date;
2784
2811
  deletedAt: string | Date;
@@ -3050,6 +3077,15 @@ declare function useServiceProviderBillingController(): {
3050
3077
  deleteServiceProviderBillingById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
3051
3078
  };
3052
3079
 
3080
+ declare enum FacilitySort {
3081
+ CREATED_AT = "createdAt",
3082
+ NAME = "name",
3083
+ ID = "_id"
3084
+ }
3085
+ declare enum FacilityStatus {
3086
+ PENDING = "pending",
3087
+ ACTIVE = "active"
3088
+ }
3053
3089
  type TSiteFacilityBooking = {
3054
3090
  _id?: ObjectId;
3055
3091
  facility?: string;
@@ -3138,6 +3174,7 @@ type TSiteFacilityBooking = {
3138
3174
  deletedAt?: Date | string;
3139
3175
  };
3140
3176
  declare const schemaSiteFacilityBooking: Joi.ObjectSchema<any>;
3177
+ declare const schemaUpdateSiteFacilityBooking: Joi.ObjectSchema<any>;
3141
3178
  declare function MSiteFacilityBooking(value: TSiteFacilityBooking): {
3142
3179
  _id: ObjectId;
3143
3180
  facility: string;
@@ -3240,8 +3277,8 @@ declare function useSiteFacilityBookingRepo(): {
3240
3277
  pages: number;
3241
3278
  pageRange: string;
3242
3279
  } | TSiteFacilityBooking>;
3243
- getSiteFacilityBookingById: (_id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document> | TSiteFacilityBooking>;
3244
- updateSiteFacilityBookingById: (_id: ObjectId | string, value: Partial<TSiteFacilityBooking>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
3280
+ getSiteFacilityBookingById: (id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document> | TSiteFacilityBooking>;
3281
+ updateSiteFacilityBookingById: (id: ObjectId | string, value: Partial<TSiteFacilityBooking>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
3245
3282
  deleteSiteFacilityBookingById: (_id: string | ObjectId) => Promise<number>;
3246
3283
  createIndexes: () => Promise<void>;
3247
3284
  };
@@ -4113,6 +4150,23 @@ declare function UseAccessManagementRepo(): {
4113
4150
  items: any;
4114
4151
  length: any;
4115
4152
  }>;
4153
+ availableCardContractorsRepo: (params: {
4154
+ siteId: string;
4155
+ unitId: string;
4156
+ page: number;
4157
+ limit: number;
4158
+ type: string;
4159
+ }) => Promise<bson.Document[]>;
4160
+ vmsgenerateQrCodesRepo: (params: {
4161
+ site: string;
4162
+ unitId: string;
4163
+ quantity: number;
4164
+ normalizedUnitId: string[];
4165
+ }) => Promise<{
4166
+ acknowledged: boolean;
4167
+ insertedCount: number;
4168
+ insertedIds: Record<number, ObjectId>;
4169
+ }>;
4116
4170
  };
4117
4171
 
4118
4172
  declare function useAccessManagementController(): {
@@ -4141,6 +4195,8 @@ declare function useAccessManagementController(): {
4141
4195
  getCardDetails: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4142
4196
  addQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4143
4197
  allQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4198
+ availableCardContractors: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4199
+ vmsgenerateQrCodes: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4144
4200
  };
4145
4201
 
4146
4202
  declare const DEVICE_STATUS: {
@@ -5105,4 +5161,4 @@ declare function useAddressRepo(): {
5105
5161
  getByUserId: (user: string | ObjectId) => Promise<TAddress | null>;
5106
5162
  };
5107
5163
 
5108
- export { ANPRMode, AccessTypeProps, AssignCardConfig, BULLETIN_RECIPIENTS, BuildingStatus, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, OrgNature, PERSON_TYPES, PersonType, QrTagProps, STATUS_VALUES, SiteAddress, SiteCategories, SiteStatus, SiteType, SortFields, SortOrder, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TChat, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDefaultAccessCard, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, VehicleCategory, VehicleStatus, VehicleType, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, chatSchema, customerSchema, feedbackSchema, logCamera, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, orgSchema, promoCodeSchema, robotSchema, schema, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, siteSchema, tokenSchema, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useChatController, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useMemberController, useMemberRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgRepo, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleRepo, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserRepo, useUserService, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationRepo, useVerificationService, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, workOrderSchema };
5164
+ export { ANPRMode, AccessTypeProps, AssignCardConfig, BULLETIN_RECIPIENTS, BuildingStatus, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, FacilitySort, FacilityStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, OrgNature, PERSON_TYPES, PersonType, QrTagProps, STATUS_VALUES, SiteAddress, SiteCategories, SiteStatus, SiteType, SortFields, SortOrder, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TChat, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDefaultAccessCard, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, chatSchema, customerSchema, feedbackSchema, incidentReport, incidentReportLog, logCamera, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, orgSchema, promoCodeSchema, robotSchema, schema, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, siteSchema, tokenSchema, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useChatController, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useMemberController, useMemberRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgRepo, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleRepo, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserRepo, useUserService, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationRepo, useVerificationService, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, workOrderSchema };