@7365admin1/core 2.29.0 → 2.30.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.30.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f9a4cb4: release latest changes
8
+
3
9
  ## 2.29.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -1837,7 +1837,7 @@ declare function useDahuaService(): {
1837
1837
  start?: string;
1838
1838
  end?: string;
1839
1839
  owner?: string;
1840
- openGate?: boolean;
1840
+ isOpenGate?: boolean;
1841
1841
  }) => Promise<urllib.HttpClientResponse<any>>;
1842
1842
  removePlateNumber: (value: {
1843
1843
  host: string;
@@ -1858,35 +1858,15 @@ declare function useDahuaService(): {
1858
1858
  owner?: string;
1859
1859
  isOpenGate?: Boolean;
1860
1860
  }) => Promise<urllib.HttpClientResponse<any>>;
1861
+ getPlateNumber: (value: {
1862
+ host: string;
1863
+ username: string;
1864
+ password: string;
1865
+ mode: string;
1866
+ plateNumber: string;
1867
+ }) => Promise<any>;
1861
1868
  };
1862
1869
 
1863
- type TVehicle = {
1864
- _id?: ObjectId;
1865
- name: string;
1866
- phoneNumber?: string;
1867
- type: string;
1868
- email?: string;
1869
- block?: number;
1870
- level?: string;
1871
- unit?: string | ObjectId;
1872
- start?: Date | string;
1873
- end?: Date | string;
1874
- status?: string;
1875
- nric?: string;
1876
- remarks?: string;
1877
- org: string | ObjectId;
1878
- site: string | ObjectId;
1879
- plateNumber: string | string[];
1880
- unitName?: string;
1881
- category: string;
1882
- recNo?: string;
1883
- seasonPassType?: string;
1884
- peopleId?: string | ObjectId;
1885
- createdAt?: Date | string;
1886
- updatedAt?: Date | string;
1887
- deletedAt?: Date | string;
1888
- expiredAt?: Date | string;
1889
- };
1890
1870
  type TVehicleUpdate = Partial<Pick<TVehicle, "name" | "phoneNumber" | "block" | "level" | "unit" | "plateNumber" | "recNo">>;
1891
1871
  declare enum VehicleType {
1892
1872
  WHITELIST = "whitelist",
@@ -1894,7 +1874,8 @@ declare enum VehicleType {
1894
1874
  }
1895
1875
  declare enum VehicleCategory {
1896
1876
  RESIDENT = "resident",
1897
- VISITOR = "visitor"
1877
+ VISITOR = "visitor",
1878
+ GUEST = "guest"
1898
1879
  }
1899
1880
  declare enum VehicleStatus {
1900
1881
  PENDING = "pending",
@@ -1922,6 +1903,33 @@ declare enum ANPRMode {
1922
1903
  TRAFFIC_REDLIST = "TrafficRedList",
1923
1904
  TRAFFIC_BLACKLIST = "TrafficBlackList"
1924
1905
  }
1906
+ type TVehicle = {
1907
+ _id?: ObjectId;
1908
+ name: string;
1909
+ phoneNumber?: string;
1910
+ type: string;
1911
+ email?: string;
1912
+ block?: number;
1913
+ level?: string;
1914
+ unit?: string | ObjectId;
1915
+ start?: Date | string;
1916
+ end?: Date | string;
1917
+ status?: string;
1918
+ nric?: string;
1919
+ remarks?: string;
1920
+ org: string | ObjectId;
1921
+ site: string | ObjectId;
1922
+ plateNumber: string | string[];
1923
+ unitName?: string;
1924
+ category: string;
1925
+ recNo?: string;
1926
+ seasonPassType?: string;
1927
+ peopleId?: string | ObjectId;
1928
+ createdAt?: Date | string;
1929
+ updatedAt?: Date | string;
1930
+ deletedAt?: Date | string;
1931
+ expiredAt?: Date | string;
1932
+ };
1925
1933
  declare const vehicleSchema: Joi.ObjectSchema<any>;
1926
1934
  declare function MVehicle(value: TVehicle): {
1927
1935
  plateNumber: string | string[];
@@ -1986,29 +1994,51 @@ declare function useVehicleRepo(): {
1986
1994
  type?: string | undefined;
1987
1995
  category?: string | undefined;
1988
1996
  status?: string | undefined;
1989
- }) => Promise<{}>;
1990
- getSeasonPassTypes: (site: string | ObjectId) => Promise<{}>;
1991
- getVehicleById: (_id: string | ObjectId) => Promise<any>;
1997
+ }) => Promise<{
1998
+ items: any[];
1999
+ pages: number;
2000
+ pageRange: string;
2001
+ }>;
2002
+ getSeasonPassTypes: (site: string | ObjectId) => Promise<bson.Document[]>;
2003
+ getVehicleById: (_id: string | ObjectId) => Promise<bson.Document>;
1992
2004
  updateVehicleById: (_id: string | ObjectId, value: TVehicleUpdate, session?: ClientSession) => Promise<number>;
1993
2005
  deleteVehicle: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
1994
- getByPlaceNumber: (value: string) => Promise<{}>;
2006
+ getByPlaceNumber: (value: string) => Promise<mongodb.WithId<bson.Document>>;
1995
2007
  getVehicleByPlateNumber: (plateNumber: string) => Promise<TVehicle | null>;
1996
2008
  getVehiclesByNRIC: ({ page, limit, nric, sort, }: {
1997
2009
  page?: number | undefined;
1998
2010
  limit?: number | undefined;
1999
2011
  nric?: string | undefined;
2000
2012
  sort?: Record<string, any> | undefined;
2001
- }) => Promise<{}>;
2013
+ }) => Promise<{
2014
+ items: any[];
2015
+ pages: number;
2016
+ pageRange: string;
2017
+ }>;
2002
2018
  deleteExpiredVehicles: (session?: ClientSession) => Promise<number>;
2003
2019
  getAllVehiclesByUnitId: ({ unitId, page, limit, sort, }: {
2004
2020
  unitId: string | ObjectId;
2005
2021
  page?: number | undefined;
2006
2022
  limit?: number | undefined;
2007
2023
  sort?: Record<string, 1 | -1> | undefined;
2008
- }) => Promise<{}>;
2024
+ }) => Promise<{
2025
+ items: any[];
2026
+ pages: number;
2027
+ pageRange: string;
2028
+ }>;
2029
+ getAllExpiredVehicles: () => Promise<mongodb.WithId<bson.Document>[]>;
2009
2030
  };
2010
2031
 
2011
2032
  declare function formatDahuaDate(date: Date): string;
2033
+ declare function parseDahuaFind(text: string): {
2034
+ exists: boolean;
2035
+ recNo?: undefined;
2036
+ plateNumber?: undefined;
2037
+ } | {
2038
+ exists: boolean;
2039
+ recNo: string | undefined;
2040
+ plateNumber: string | undefined;
2041
+ };
2012
2042
  declare function useVehicleService(): {
2013
2043
  add: (value: TVehicle) => Promise<string>;
2014
2044
  deleteVehicle: (_id: string, recno: string, site: string, type: string, bypass?: boolean) => Promise<string>;
@@ -2357,7 +2387,8 @@ declare enum PersonTypes {
2357
2387
  PICK_UP = "pick-up",
2358
2388
  GUEST = "guest",
2359
2389
  TENANT = "tenant",
2360
- RESIDENT = "resident"
2390
+ RESIDENT = "resident",
2391
+ VISITOR = "visitor"
2361
2392
  }
2362
2393
  declare enum PersonStatus {
2363
2394
  ACTIVE = "active",
@@ -2471,13 +2502,16 @@ type TVisitorTransaction = {
2471
2502
  visitorPass: string | null;
2472
2503
  contact: string;
2473
2504
  }[];
2474
- visitorPass?: string | null;
2505
+ visitorPass?: string | string[] | ObjectId | ObjectId[] | null;
2506
+ passKeys?: string[] | ObjectId[];
2475
2507
  expiredAt?: string | Date | null;
2476
2508
  arrivalTime?: string | null;
2477
2509
  duration?: number | null;
2478
2510
  isOvernightParking?: boolean;
2479
2511
  email?: string;
2480
2512
  numberOfPassengers?: number | null;
2513
+ checkInRemarks?: string;
2514
+ checkOutRemarks?: string;
2481
2515
  createdAt?: string | Date;
2482
2516
  updatedAt?: string | Date;
2483
2517
  deletedAt?: string | Date;
@@ -2509,7 +2543,10 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
2509
2543
  contractorType: string | undefined;
2510
2544
  manualCheckout: boolean;
2511
2545
  direction: string | undefined;
2512
- visitorPass: string | null | undefined;
2546
+ visitorPass: string | ObjectId | string[] | ObjectId[];
2547
+ passKeys: string[] | ObjectId[];
2548
+ checkInRemarks: string | undefined;
2549
+ checkOutRemarks: string | undefined;
2513
2550
  unitName: string | undefined;
2514
2551
  expiredAt: string | Date | null;
2515
2552
  createdAt: string | Date;
@@ -2533,7 +2570,11 @@ declare function useVisitorTransactionRepo(): {
2533
2570
  type?: string | undefined;
2534
2571
  checkedOut?: Boolean | undefined;
2535
2572
  plateNumber?: string | undefined;
2536
- }, session?: ClientSession) => Promise<{}>;
2573
+ }) => Promise<{
2574
+ items: any[];
2575
+ pages: number;
2576
+ pageRange: string;
2577
+ }>;
2537
2578
  getOpenByPlateNumber: (plateNumber: string, site: string | ObjectId) => Promise<TVisitorTransaction | null>;
2538
2579
  updateById: (_id: string | ObjectId, value: Partial<TVisitorTransaction>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
2539
2580
  deleteVisitorTransaction: (_id: string | ObjectId) => Promise<number>;
@@ -2541,7 +2582,7 @@ declare function useVisitorTransactionRepo(): {
2541
2582
  getDeliveryPickupTransactions: () => Promise<mongodb.WithId<bson.Document>[]>;
2542
2583
  getExpiredCheckedOutTransactionsBySite: (siteId: string | ObjectId) => Promise<mongodb.WithId<bson.Document>[]>;
2543
2584
  updateManyDahuaSyncStatus: (ids: (string | ObjectId)[], dahuaSyncStatus: "removed", session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
2544
- getVisitorTransactionById: (id: string | ObjectId) => Promise<{}>;
2585
+ getVisitorTransactionById: (id: string | ObjectId) => Promise<bson.Document>;
2545
2586
  };
2546
2587
 
2547
2588
  declare function useVisitorTransactionService(): {
@@ -2670,7 +2711,7 @@ declare function usePersonRepo(): {
2670
2711
  getPersonByPhoneNumber: (value: string) => Promise<TPerson | null>;
2671
2712
  getPeopleByUnit: ({ status, type, unit, }: {
2672
2713
  status: string;
2673
- type?: PersonTypes[] | undefined;
2714
+ type?: ("resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant")[] | undefined;
2674
2715
  unit?: string | undefined;
2675
2716
  }, session?: ClientSession) => Promise<TPerson[]>;
2676
2717
  getCompany: (search?: string) => Promise<any[] | TPerson>;
@@ -5130,7 +5171,7 @@ type TOccurrenceEntry = {
5130
5171
  incidentReportId?: string | ObjectId;
5131
5172
  signature?: string | ObjectId;
5132
5173
  userName?: string;
5133
- eSignature?: string;
5174
+ eSignature?: string | ObjectId;
5134
5175
  createdByName?: string;
5135
5176
  createdAt?: string | Date;
5136
5177
  updatedAt?: string | Date;
@@ -5150,7 +5191,7 @@ declare function MOccurrenceEntry(value: TOccurrenceEntry): {
5150
5191
  incidentReportId: string | ObjectId | undefined;
5151
5192
  signature: string | ObjectId | undefined;
5152
5193
  userName: string | undefined;
5153
- eSignature: string | undefined;
5194
+ eSignature: string | ObjectId | undefined;
5154
5195
  createdByName: string | undefined;
5155
5196
  date: string | Date | undefined;
5156
5197
  createdAt: string | Date;
@@ -6211,6 +6252,7 @@ declare function useAuthControllerV2(): {
6211
6252
  signUp: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6212
6253
  login: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6213
6254
  logout: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6255
+ resetPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6214
6256
  };
6215
6257
 
6216
6258
  declare function useAuthServiceV2(): {
@@ -6231,9 +6273,45 @@ declare function useUserRepoV2(): {
6231
6273
  createTextIndex: () => Promise<void>;
6232
6274
  createUniqueIndex: () => Promise<void>;
6233
6275
  createUser: (value: TUser, session?: ClientSession) => Promise<ObjectId>;
6234
- getUserByEmail: (email: string) => Promise<TUser | null>;
6235
- getUserByEmailStatus: (email: string) => Promise<TUser | null>;
6276
+ getUserByEmail: (email: string) => Promise<mongodb.WithId<bson.Document> | TUser | null>;
6277
+ getUserByEmailStatus: (email: string) => Promise<mongodb.WithId<bson.Document> | TUser | null>;
6236
6278
  getUserById: (id: string | ObjectId) => Promise<TUser>;
6279
+ getUsers: ({ search, page, limit, sort, type, status, }: {
6280
+ search?: string | undefined;
6281
+ page?: number | undefined;
6282
+ limit?: number | undefined;
6283
+ sort?: Record<string, any> | undefined;
6284
+ type?: string | undefined;
6285
+ status: string;
6286
+ }) => Promise<{}>;
6287
+ getUsersByOrgId: ({ organization, search, page, limit, sort, type, status, }: {
6288
+ organization: string | ObjectId;
6289
+ search?: string | undefined;
6290
+ page?: number | undefined;
6291
+ limit?: number | undefined;
6292
+ sort?: Record<string, any> | undefined;
6293
+ type?: string | undefined;
6294
+ status: string;
6295
+ }) => Promise<{}>;
6296
+ updatePasswordById: ({ _id, password }: {
6297
+ _id: string | ObjectId;
6298
+ password: string;
6299
+ }, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
6300
+ updateUserFieldById: ({ _id, field, value }?: {
6301
+ _id: string | ObjectId;
6302
+ field: string;
6303
+ value: string | ObjectId;
6304
+ }, session?: ClientSession) => Promise<string>;
6305
+ updateBirthday: ({ _id, month, day, year, }: {
6306
+ _id: string | ObjectId;
6307
+ month: string;
6308
+ day: number;
6309
+ year: number;
6310
+ }, session?: ClientSession) => Promise<string>;
6311
+ updatePassword: ({ _id, password }: {
6312
+ _id: string | ObjectId;
6313
+ password: string;
6314
+ }, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
6237
6315
  };
6238
6316
 
6239
6317
  declare function useUserServiceV2(): {
@@ -6241,10 +6319,25 @@ declare function useUserServiceV2(): {
6241
6319
  id?: string | undefined;
6242
6320
  name?: string | undefined;
6243
6321
  }) => Promise<ObjectId>;
6322
+ resetPassword: (id: string, newPassword: string, passwordConfirmation: string) => Promise<string>;
6323
+ updateUserProfile: ({ file, user, previousProfile, }: {
6324
+ file: Express.Multer.File;
6325
+ user: string;
6326
+ previousProfile?: string | undefined;
6327
+ }) => Promise<string>;
6328
+ updatePasswordById: (id: string, currentPassword: string, newPassword: string, passwordConfirmation: string) => Promise<mongodb.UpdateResult<bson.Document>>;
6244
6329
  };
6245
6330
 
6246
6331
  declare function useUserControllerV2(): {
6332
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6333
+ getByEmail: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6334
+ getUsersByOrgId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6335
+ getUsers: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6247
6336
  createUserByVerification: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6337
+ updateUserProfile: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6338
+ updateBirthday: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6339
+ updateUserFieldById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6340
+ updatePasswordById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
6248
6341
  };
6249
6342
 
6250
- export { ANPRMode, AccessTypeProps, AssignCardConfig, BuildingStatus, BulkCardUpdate, BulletinRecipient, BulletinSort, BulletinStatus, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, EmailSender, 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, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, Period, PersonStatus, PersonType, PersonTypes, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, SubscriptionType, 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, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, 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, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, 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, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, 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, 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, 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, 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 };
6343
+ export { ANPRMode, AccessTypeProps, AssignCardConfig, BuildingStatus, BulkCardUpdate, BulletinRecipient, BulletinSort, BulletinStatus, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, EmailSender, 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, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, Period, PersonStatus, PersonType, PersonTypes, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, SubscriptionType, 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, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, 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, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, 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, 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, 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, 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 };