@7365admin1/core 2.18.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 +6 -0
- package/dist/index.d.ts +45 -5
- package/dist/index.js +3553 -3300
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3606 -3354
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
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;
|
|
@@ -2332,6 +2334,7 @@ type TVisitorTransaction = {
|
|
|
2332
2334
|
remarks?: string;
|
|
2333
2335
|
deliveryType?: string;
|
|
2334
2336
|
attachments?: string[];
|
|
2337
|
+
snapshotKey?: string;
|
|
2335
2338
|
nric?: string;
|
|
2336
2339
|
contractorType?: string;
|
|
2337
2340
|
manualCheckout?: boolean;
|
|
@@ -2368,6 +2371,7 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
|
|
|
2368
2371
|
remarks: string | undefined;
|
|
2369
2372
|
deliveryType: string | undefined;
|
|
2370
2373
|
attachments: string[] | undefined;
|
|
2374
|
+
snapshotKey: string | undefined;
|
|
2371
2375
|
nric: string | undefined;
|
|
2372
2376
|
contractorType: string | undefined;
|
|
2373
2377
|
manualCheckout: boolean;
|
|
@@ -2394,7 +2398,7 @@ declare function useVisitorTransactionRepo(): {
|
|
|
2394
2398
|
type?: string | undefined;
|
|
2395
2399
|
checkedOut?: string | undefined;
|
|
2396
2400
|
}, session?: ClientSession) => Promise<{}>;
|
|
2397
|
-
getOpenByPlateNumber: (plateNumber: string) => Promise<TVisitorTransaction | null>;
|
|
2401
|
+
getOpenByPlateNumber: (plateNumber: string, site: string | ObjectId) => Promise<TVisitorTransaction | null>;
|
|
2398
2402
|
updateById: (_id: string | ObjectId, value: Partial<TVisitorTransaction>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
2399
2403
|
deleteVisitorTransaction: (_id: string | ObjectId) => Promise<number>;
|
|
2400
2404
|
createTextIndex: () => Promise<void>;
|
|
@@ -2768,6 +2772,10 @@ type logCamera = {
|
|
|
2768
2772
|
video: Array<string>;
|
|
2769
2773
|
}>;
|
|
2770
2774
|
};
|
|
2775
|
+
type incidentReport = {
|
|
2776
|
+
reportId: string;
|
|
2777
|
+
id: string | ObjectId;
|
|
2778
|
+
};
|
|
2771
2779
|
type TPatrolLog = {
|
|
2772
2780
|
_id?: ObjectId;
|
|
2773
2781
|
route?: string | ObjectId;
|
|
@@ -2778,11 +2786,13 @@ type TPatrolLog = {
|
|
|
2778
2786
|
end: string;
|
|
2779
2787
|
cameras: Array<logCamera>;
|
|
2780
2788
|
status: Array<string>;
|
|
2789
|
+
incidentReport: incidentReport;
|
|
2781
2790
|
createdAt?: Date | string;
|
|
2782
2791
|
updatedAt?: Date | string;
|
|
2783
2792
|
deletedAt?: Date | string;
|
|
2784
2793
|
};
|
|
2785
2794
|
declare const schemeLogCamera: Joi.ObjectSchema<any>;
|
|
2795
|
+
declare const incidentReportLog: Joi.ObjectSchema<any>;
|
|
2786
2796
|
declare const schemaPatrolLog: Joi.ObjectSchema<any>;
|
|
2787
2797
|
declare const schemaUpdatePatrolLog: Joi.ObjectSchema<any>;
|
|
2788
2798
|
declare function MPatrolLog(value: TPatrolLog): {
|
|
@@ -2795,6 +2805,7 @@ declare function MPatrolLog(value: TPatrolLog): {
|
|
|
2795
2805
|
cameras: logCamera[];
|
|
2796
2806
|
status: string[];
|
|
2797
2807
|
route: string | ObjectId | undefined;
|
|
2808
|
+
incidentReport: incidentReport;
|
|
2798
2809
|
createdAt: string | Date;
|
|
2799
2810
|
updatedAt: string | Date;
|
|
2800
2811
|
deletedAt: string | Date;
|
|
@@ -3066,6 +3077,15 @@ declare function useServiceProviderBillingController(): {
|
|
|
3066
3077
|
deleteServiceProviderBillingById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
3067
3078
|
};
|
|
3068
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
|
+
}
|
|
3069
3089
|
type TSiteFacilityBooking = {
|
|
3070
3090
|
_id?: ObjectId;
|
|
3071
3091
|
facility?: string;
|
|
@@ -3154,6 +3174,7 @@ type TSiteFacilityBooking = {
|
|
|
3154
3174
|
deletedAt?: Date | string;
|
|
3155
3175
|
};
|
|
3156
3176
|
declare const schemaSiteFacilityBooking: Joi.ObjectSchema<any>;
|
|
3177
|
+
declare const schemaUpdateSiteFacilityBooking: Joi.ObjectSchema<any>;
|
|
3157
3178
|
declare function MSiteFacilityBooking(value: TSiteFacilityBooking): {
|
|
3158
3179
|
_id: ObjectId;
|
|
3159
3180
|
facility: string;
|
|
@@ -3256,8 +3277,8 @@ declare function useSiteFacilityBookingRepo(): {
|
|
|
3256
3277
|
pages: number;
|
|
3257
3278
|
pageRange: string;
|
|
3258
3279
|
} | TSiteFacilityBooking>;
|
|
3259
|
-
getSiteFacilityBookingById: (
|
|
3260
|
-
updateSiteFacilityBookingById: (
|
|
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>>;
|
|
3261
3282
|
deleteSiteFacilityBookingById: (_id: string | ObjectId) => Promise<number>;
|
|
3262
3283
|
createIndexes: () => Promise<void>;
|
|
3263
3284
|
};
|
|
@@ -4129,6 +4150,23 @@ declare function UseAccessManagementRepo(): {
|
|
|
4129
4150
|
items: any;
|
|
4130
4151
|
length: any;
|
|
4131
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
|
+
}>;
|
|
4132
4170
|
};
|
|
4133
4171
|
|
|
4134
4172
|
declare function useAccessManagementController(): {
|
|
@@ -4157,6 +4195,8 @@ declare function useAccessManagementController(): {
|
|
|
4157
4195
|
getCardDetails: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4158
4196
|
addQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4159
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>>>;
|
|
4160
4200
|
};
|
|
4161
4201
|
|
|
4162
4202
|
declare const DEVICE_STATUS: {
|
|
@@ -5121,4 +5161,4 @@ declare function useAddressRepo(): {
|
|
|
5121
5161
|
getByUserId: (user: string | ObjectId) => Promise<TAddress | null>;
|
|
5122
5162
|
};
|
|
5123
5163
|
|
|
5124
|
-
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, VehicleOrder, VehicleSort, 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 };
|