@7365admin1/core 2.46.0 → 2.48.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,17 @@
1
1
  # @iservice365/core
2
2
 
3
+ ## 2.48.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6ebc3bf: get latest changes for api
8
+
9
+ ## 2.47.0
10
+
11
+ ### Minor Changes
12
+
13
+ - cada66c: get latest changes
14
+
3
15
  ## 2.46.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -173,13 +173,13 @@ declare function useUserController(): {
173
173
 
174
174
  declare function useUserService(): {
175
175
  createDefaultUser: () => Promise<void>;
176
- createUserBySignUp: ({ id, name, password, }?: {
176
+ createUserBySignUp: ({ id, name, password }?: {
177
177
  id?: string | undefined;
178
178
  name?: string | undefined;
179
179
  password?: string | undefined;
180
180
  }) => Promise<bson.ObjectId>;
181
181
  resetPassword: (id: string, newPassword: string, passwordConfirmation: string) => Promise<string>;
182
- updateUserProfile: ({ file, user, previousProfile, }: {
182
+ updateUserProfile: ({ file, user, previousProfile }: {
183
183
  file: Express.Multer.File;
184
184
  user: string;
185
185
  previousProfile?: string | undefined;
@@ -397,7 +397,7 @@ type TKeyValuePair<K extends string | number | symbol = string, V = any> = {
397
397
  };
398
398
 
399
399
  declare function useVerificationService(): {
400
- createUserInvite: ({ email, metadata, }: {
400
+ createUserInvite: ({ email, metadata }: {
401
401
  email: string;
402
402
  metadata: TKeyValuePair;
403
403
  }) => Promise<bson.ObjectId>;
@@ -412,11 +412,15 @@ declare function useVerificationService(): {
412
412
  verify: (id: string) => Promise<TVerification>;
413
413
  cancelUserInvitation: (id: string) => Promise<void>;
414
414
  updateStatusById: (_id: string, status: string) => Promise<string>;
415
- signUp: ({ email, metadata, }: {
415
+ signUp: ({ email, metadata }: {
416
416
  email: string;
417
417
  metadata: TKeyValuePair;
418
418
  }) => Promise<bson.ObjectId>;
419
419
  checkExpiredInvitation: () => Promise<string>;
420
+ createSimpleUserInvite: ({ email, metadata }: {
421
+ email: string;
422
+ metadata: TKeyValuePair;
423
+ }) => Promise<bson.ObjectId>;
420
424
  };
421
425
 
422
426
  declare function useVerificationController(): {
@@ -426,6 +430,7 @@ declare function useVerificationController(): {
426
430
  createForgetPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
427
431
  verify: (req: Request, res: Response, next: NextFunction) => Promise<void>;
428
432
  cancelUserInvitation: (req: Request, res: Response, next: NextFunction) => Promise<void>;
433
+ createSimpleUserInvite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
429
434
  };
430
435
 
431
436
  type TFile = {
@@ -1197,6 +1202,7 @@ declare function MFeedback(value: TFeedback): {
1197
1202
  };
1198
1203
 
1199
1204
  declare const feedbacks_namespace_collection = "feedbacks";
1205
+ declare const feedbacks2_namespace_collection = "feedbacks2";
1200
1206
  declare function useFeedbackRepo(): {
1201
1207
  createIndex: () => Promise<void>;
1202
1208
  createTextIndex: () => Promise<void>;
@@ -1906,9 +1912,52 @@ declare function useBuildingUnitController(): {
1906
1912
  getBuildingUnitsWithOwner: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1907
1913
  };
1908
1914
 
1915
+ declare enum CameraType {
1916
+ IP = "ip",
1917
+ ANPR = "anpr"
1918
+ }
1919
+ type TCamera = {
1920
+ host: string;
1921
+ username: string;
1922
+ password: string;
1923
+ type: string;
1924
+ };
1925
+ type TSiteCamera = {
1926
+ _id?: ObjectId;
1927
+ site: string | ObjectId;
1928
+ host: string;
1929
+ username: string;
1930
+ password: string;
1931
+ type: string;
1932
+ category: string;
1933
+ guardPost?: number;
1934
+ status?: string;
1935
+ direction?: string;
1936
+ createdAt?: Date | string;
1937
+ updatedAt?: Date | string;
1938
+ deletedAt?: Date | string;
1939
+ };
1940
+ declare const schemaUpdateSiteCamera: Joi.ObjectSchema<any>;
1941
+ declare const schemaSiteCamera: Joi.ObjectSchema<any>;
1942
+ declare function MSiteCamera(value: TSiteCamera): {
1943
+ _id: ObjectId;
1944
+ site: ObjectId;
1945
+ host: string;
1946
+ username: string;
1947
+ password: string;
1948
+ type: string;
1949
+ category: string;
1950
+ guardPost: number;
1951
+ status: string;
1952
+ direction: string;
1953
+ createdAt: string | Date;
1954
+ updatedAt: string | Date;
1955
+ deletedAt: string | Date;
1956
+ };
1957
+
1909
1958
  declare function useDahuaService(): {
1910
1959
  getSnapshot: () => Promise<string>;
1911
- getTrafficJunction: (host?: string, username?: string, password?: string, site?: string, gate?: string, designation?: string) => Promise<void>;
1960
+ listenToCamera: (camera: TSiteCamera) => Promise<void>;
1912
1961
  addPlateNumber: (value: {
1913
1962
  host: string;
1914
1963
  username: string;
@@ -2185,49 +2234,6 @@ declare function useVehicleController(): {
2185
2234
  uploadSpreadsheetVehicles: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2186
2235
  };
2187
2236
 
2188
- declare enum CameraType {
2189
- IP = "ip",
2190
- ANPR = "anpr"
2191
- }
2192
- type TCamera = {
2193
- host: string;
2194
- username: string;
2195
- password: string;
2196
- type: string;
2197
- };
2198
- type TSiteCamera = {
2199
- _id?: ObjectId;
2200
- site: string | ObjectId;
2201
- host: string;
2202
- username: string;
2203
- password: string;
2204
- type: string;
2205
- category: string;
2206
- guardPost?: number;
2207
- status?: string;
2208
- direction?: string;
2209
- createdAt?: Date | string;
2210
- updatedAt?: Date | string;
2211
- deletedAt?: Date | string;
2212
- };
2213
- declare const schemaUpdateSiteCamera: Joi.ObjectSchema<any>;
2214
- declare const schemaSiteCamera: Joi.ObjectSchema<any>;
2215
- declare function MSiteCamera(value: TSiteCamera): {
2216
- _id: ObjectId;
2217
- site: ObjectId;
2218
- host: string;
2219
- username: string;
2220
- password: string;
2221
- type: string;
2222
- category: string;
2223
- guardPost: number;
2224
- status: string;
2225
- direction: string;
2226
- createdAt: string | Date;
2227
- updatedAt: string | Date;
2228
- deletedAt: string | Date;
2229
- };
2230
-
2231
2237
  declare function useSiteCameraRepo(): {
2232
2238
  createIndexes: () => Promise<string | undefined>;
2233
2239
  add: (value: TSiteCamera, session?: ClientSession) => Promise<ObjectId>;
@@ -2258,7 +2264,7 @@ declare function useSiteCameraRepo(): {
2258
2264
  }) => Promise<{}>;
2259
2265
  delCachedData: () => void;
2260
2266
  getBySiteGuardPost: (site: string | ObjectId, guardPost: number) => Promise<{} | null>;
2261
- updateById: (_id: string | ObjectId, value: Partial<Pick<TSiteCamera, "host" | "username" | "password" | "category" | "guardPost">>, session?: ClientSession) => Promise<string>;
2267
+ updateById: (_id: string | ObjectId, value: Partial<Pick<TSiteCamera, "host" | "username" | "password" | "category" | "guardPost" | "updatedAt">>, session?: ClientSession) => Promise<string>;
2262
2268
  deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
2263
2269
  getAllCameraWithPassword: (value: {
2264
2270
  type: string;
@@ -3960,6 +3966,24 @@ declare function useSiteBillingConfigurationController(): {
3960
3966
  deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
3961
3967
  };
3962
3968
 
3969
+ declare enum EventStatus {
3970
+ PLANNED = "planned",
3971
+ IN_PROGRESS = "in_progress",
3972
+ COMPLETED = "completed"
3973
+ }
3974
+ declare enum EventSort {
3975
+ CREATED_AT = "createdAt",
3976
+ NAME = "name",
3977
+ ID = "_id"
3978
+ }
3979
+ declare enum EventOrder {
3980
+ ASC = "asc",
3981
+ DESC = "desc"
3982
+ }
3983
+ declare enum EventType {
3984
+ TASK = "TASK",
3985
+ EVENT = "EVENT"
3986
+ }
3963
3987
  type TEventManagement = {
3964
3988
  _id?: ObjectId;
3965
3989
  site: ObjectId;
@@ -3980,8 +4004,8 @@ declare function MEventManagement(value: TEventManagement): {
3980
4004
  title: string;
3981
4005
  description: string;
3982
4006
  dateTime: Date;
3983
- status: "completed" | "planned" | "in_progress";
3984
- type: "TASK" | "EVENT";
4007
+ status: "completed" | "planned" | "in_progress" | EventStatus;
4008
+ type: "TASK" | "EVENT" | EventType;
3985
4009
  createdAt: string | Date;
3986
4010
  updatedAt: string | Date | undefined;
3987
4011
  deletedAt: string | Date | undefined;
@@ -4596,6 +4620,17 @@ declare function UseAccessManagementRepo(): {
4596
4620
  site: string;
4597
4621
  }) => Promise<bson.Document[]>;
4598
4622
  indexCombination: () => Promise<string>;
4623
+ getTransactionsRepo: ({ page, limit, site, cardNo, url }: {
4624
+ page: number;
4625
+ limit: number;
4626
+ site: string | ObjectId;
4627
+ cardNo: string;
4628
+ url: string;
4629
+ }) => Promise<{
4630
+ items: any[];
4631
+ pages: number;
4632
+ pageRange: string;
4633
+ }>;
4599
4634
  };
4600
4635
 
4601
4636
  declare function useAccessManagementController(): {
@@ -4635,6 +4670,7 @@ declare function useAccessManagementController(): {
4635
4670
  url: string;
4636
4671
  }) => Promise<void>;
4637
4672
  getBlockLevelAndUnitList: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4673
+ getTransactions: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
4638
4674
  };
4639
4675
 
4640
4676
  declare const DEVICE_STATUS: {
@@ -6023,13 +6059,6 @@ declare function useHrmLabsAttendanceSrvc(): {
6023
6059
  pages?: undefined;
6024
6060
  pageRange?: undefined;
6025
6061
  count?: undefined;
6026
- } | {
6027
- success: boolean;
6028
- message: string;
6029
- items: never[];
6030
- pages: number;
6031
- pageRange: string;
6032
- count: {};
6033
6062
  } | {
6034
6063
  items: any[];
6035
6064
  pages: number;
@@ -6037,6 +6066,13 @@ declare function useHrmLabsAttendanceSrvc(): {
6037
6066
  success?: undefined;
6038
6067
  message?: undefined;
6039
6068
  count?: undefined;
6069
+ } | {
6070
+ success: boolean;
6071
+ message: any;
6072
+ items: never[];
6073
+ pages: number;
6074
+ pageRange: string;
6075
+ count: {};
6040
6076
  }>;
6041
6077
  getAttendanceDataCount: (payload: any) => Promise<{
6042
6078
  success: boolean;
@@ -6059,6 +6095,10 @@ declare function useHrmLabsAttendanceSrvc(): {
6059
6095
  };
6060
6096
  success?: undefined;
6061
6097
  message?: undefined;
6098
+ } | {
6099
+ success: boolean;
6100
+ message: any;
6101
+ totalCount: null;
6062
6102
  }>;
6063
6103
  getAllAttendance: (payload: any) => Promise<{
6064
6104
  success: boolean;
@@ -6130,6 +6170,14 @@ declare function useHrmLabsAttendanceSrvc(): {
6130
6170
  success?: undefined;
6131
6171
  message?: undefined;
6132
6172
  count?: undefined;
6173
+ } | {
6174
+ success: boolean;
6175
+ message: any;
6176
+ items: never[];
6177
+ count: {};
6178
+ countPerJobTitle: {};
6179
+ totalCount: null;
6180
+ countPerStatus: {};
6133
6181
  }>;
6134
6182
  getChartAttendanceData: (payload: any) => Promise<{
6135
6183
  success: boolean;
@@ -6161,6 +6209,14 @@ declare function useHrmLabsAttendanceSrvc(): {
6161
6209
  pages?: undefined;
6162
6210
  pageRange?: undefined;
6163
6211
  count?: undefined;
6212
+ } | {
6213
+ success: boolean;
6214
+ message: any;
6215
+ chartCount: null;
6216
+ items?: undefined;
6217
+ pages?: undefined;
6218
+ pageRange?: undefined;
6219
+ count?: undefined;
6164
6220
  }>;
6165
6221
  };
6166
6222
 
@@ -6446,6 +6502,7 @@ declare function useVerificationRepoV2(): {
6446
6502
  email?: string | undefined;
6447
6503
  }) => Promise<{}>;
6448
6504
  updateStatusById: (_id: string | ObjectId, status: string, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
6505
+ countPendingOrgInvites: (orgId: string | ObjectId) => Promise<number>;
6449
6506
  };
6450
6507
 
6451
6508
  declare function useVerificationServiceV2(): {
@@ -6467,6 +6524,10 @@ declare function useVerificationServiceV2(): {
6467
6524
  email: string;
6468
6525
  metadata: TVerificationMetadataV2;
6469
6526
  }) => Promise<bson.ObjectId>;
6527
+ createOrganizationInvite: ({ email, metadata, }: {
6528
+ email: string;
6529
+ metadata: TVerificationMetadataV2;
6530
+ }) => Promise<bson.ObjectId>;
6470
6531
  createServiceProviderInvite: ({ email, orgId, siteId, siteName, }: {
6471
6532
  email: string;
6472
6533
  orgId: string;
@@ -6480,6 +6541,7 @@ declare function useVerificationServiceV2(): {
6480
6541
  declare function useVerificationControllerV2(): {
6481
6542
  verify: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6482
6543
  createUserInvite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6544
+ createOrganizationInvite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6483
6545
  createServiceProviderInvite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6484
6546
  createForgetPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6485
6547
  getVerifications: (req: Request, res: Response, next: NextFunction) => Promise<void>;
@@ -6625,4 +6687,4 @@ declare function useRoleControllerV2(): {
6625
6687
  createRole: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6626
6688
  };
6627
6689
 
6628
- export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, FacilitySort, FacilityStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, PStatus, Period, PersonStatus, PersonType, PersonTypes, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAppServiceType, TApprovedBy, TApprover, 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, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, buildings_namespace_collection, bulletin_boards_namespace_collection, calculatePercentage, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks_namespace_collection, formatDahuaDate, getPeriodRangeWithPrevious, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, landscapeDashboardCollection, logCamera, mAndEDashboardCollection, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, securityDashboardCollection, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, 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, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useNewDashboardController, useNewDashboardRepo, 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, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRedDotPaymentController, useRedDotPaymentRepo, useRedDotPaymentSvc, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleControllerV2, useRoleRepo, useRoleRepoV2, useRoleServiceV2, 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, useUserControllerV2, useUserRepo, useUserRepoV2, useUserService, useUserServiceV2, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationControllerV2, useVerificationRepo, useVerificationRepoV2, useVerificationService, useVerificationServiceV2, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitors_namespace_collection, workOrderSchema, work_orders_namespace_collection };
6690
+ export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, PStatus, Period, PersonStatus, PersonType, PersonTypes, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAppServiceType, TApprovedBy, TApprover, 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, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, buildings_namespace_collection, bulletin_boards_namespace_collection, calculatePercentage, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, getPeriodRangeWithPrevious, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, landscapeDashboardCollection, logCamera, mAndEDashboardCollection, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, securityDashboardCollection, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, 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, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useNewDashboardController, useNewDashboardRepo, 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, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRedDotPaymentController, useRedDotPaymentRepo, useRedDotPaymentSvc, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleControllerV2, useRoleRepo, useRoleRepoV2, useRoleServiceV2, 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, useUserControllerV2, useUserRepo, useUserRepoV2, useUserService, useUserServiceV2, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationControllerV2, useVerificationRepo, useVerificationRepoV2, useVerificationService, useVerificationServiceV2, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitors_namespace_collection, workOrderSchema, work_orders_namespace_collection };