@7365admin1/core 2.82.0 → 3.0.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
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 8040e2f: Major changes: Revised block, level, unit types and all affected modules relying on these keys
8
+
9
+ ## 2.83.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 2d45880: release changes enhancement site module organization
14
+
3
15
  ## 2.82.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -91,8 +91,8 @@ type TUser = {
91
91
  defaultOrg?: string | ObjectId;
92
92
  status?: string;
93
93
  sid?: string;
94
- block?: number | null;
95
- level?: string;
94
+ block?: string | ObjectId | null;
95
+ level?: string | ObjectId | null;
96
96
  type?: string;
97
97
  unitName?: string;
98
98
  contact?: string;
@@ -110,8 +110,8 @@ declare function MUser(value: TUser): {
110
110
  name: string;
111
111
  defaultOrg: string | ObjectId;
112
112
  status: string;
113
- block: number | null;
114
- level: string;
113
+ block: string | ObjectId | null;
114
+ level: string | ObjectId | null;
115
115
  type: string;
116
116
  unitName: string;
117
117
  contact: string;
@@ -1836,7 +1836,7 @@ type TBuilding = {
1836
1836
  site: string | ObjectId;
1837
1837
  name?: string;
1838
1838
  block: number;
1839
- levels: string[];
1839
+ levels: string[] | ObjectId[];
1840
1840
  createdAt?: Date | string;
1841
1841
  updatedAt?: Date | string;
1842
1842
  deletedAt?: Date | string;
@@ -1859,7 +1859,7 @@ type TBuildingUnit = {
1859
1859
  building: ObjectId | string;
1860
1860
  buildingName?: string;
1861
1861
  block: number;
1862
- level: string;
1862
+ level: ObjectId | string;
1863
1863
  category: string;
1864
1864
  status: string;
1865
1865
  owner?: ObjectId | string;
@@ -1883,7 +1883,7 @@ declare function MBuilding(value: TBuilding): {
1883
1883
  site: ObjectId;
1884
1884
  name: string;
1885
1885
  block: number;
1886
- levels: string[];
1886
+ levels: string[] | ObjectId[];
1887
1887
  status: string;
1888
1888
  buildingFiles: {
1889
1889
  id: string;
@@ -1900,21 +1900,21 @@ declare function MBuildingUnit(value: TBuildingUnit): {
1900
1900
  building: ObjectId;
1901
1901
  buildingName: string;
1902
1902
  block: number;
1903
- level: string;
1903
+ level: string | ObjectId;
1904
1904
  category: string;
1905
1905
  status: string;
1906
1906
  buildingUnitFiles: string[];
1907
1907
  owner: string | ObjectId;
1908
1908
  ownerName: string;
1909
- createdAt: string | Date;
1910
- updatedAt: string | Date;
1911
- deletedAt: string | Date;
1912
1909
  companyName: string;
1913
1910
  companyRegistrationNumber: string | number;
1914
1911
  leaseStart: string | Date;
1915
1912
  leaseEnd: string | Date;
1916
1913
  billing: TBilling[];
1917
1914
  unitNumber: number | null;
1915
+ createdAt: string | Date;
1916
+ updatedAt: string | Date;
1917
+ deletedAt: string | Date;
1918
1918
  };
1919
1919
 
1920
1920
  declare const buildings_namespace_collection = "buildings";
@@ -1947,6 +1947,11 @@ declare function useBuildingRepo(): {
1947
1947
  getBuildingLevel: (site: string | ObjectId, block: number) => Promise<mongodb.WithId<bson.Document> | TBuilding | null>;
1948
1948
  getBuildingLevelForResident: (site: string | ObjectId, block: number) => Promise<TBuilding>;
1949
1949
  getBuildingLevelWithUnits: (site: string | ObjectId, block: number | string | ObjectId) => Promise<bson.Document[]>;
1950
+ getBuildingList: (site: string | ObjectId) => Promise<{
1951
+ success: boolean;
1952
+ message: string;
1953
+ data: bson.Document[];
1954
+ }>;
1950
1955
  };
1951
1956
 
1952
1957
  declare function useBuildingService(): {
@@ -1975,6 +1980,7 @@ declare function useBuildingController(): {
1975
1980
  getBuildingLevelForResident: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1976
1981
  uploadSpreadsheetBuilding: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1977
1982
  getBuildingLevelWithUnits: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1983
+ getBuildingList: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1978
1984
  };
1979
1985
 
1980
1986
  declare const building_units_namespace_collection = "building-units";
@@ -1997,12 +2003,22 @@ declare function useBuildingUnitRepo(): {
1997
2003
  deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
1998
2004
  updateLevelByBuildingLevel: (building: string | ObjectId, level: string, newLevel: string, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
1999
2005
  updateByBuildingId: (building: string | ObjectId, value: Partial<Pick<TBuildingUnit, "buildingName" | "block">>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
2000
- getBuildingUnits: (site: string | ObjectId, block: number, level: string) => Promise<{}>;
2006
+ getBuildingUnits: (site: string | ObjectId, block: string, level: string) => Promise<bson.Document[]>;
2001
2007
  getBuildingUnitsForResident: (site: string | ObjectId, block: number, level: string) => Promise<bson.Document[]>;
2002
2008
  getBuildingUnitsWithOwner: (site: string | ObjectId, unitIds?: ObjectId[]) => Promise<{}>;
2003
- getUnitByBlockLevelUnitNumber: (block: number, level: string, unitNumber: string, site: string | ObjectId, session?: ClientSession) => Promise<TBuildingUnit>;
2009
+ getUnitByBlockLevelUnitNumber: (block: string, level: string, unitNumber: string, site: string | ObjectId, session?: ClientSession) => Promise<TBuildingUnit>;
2004
2010
  getBySiteBuildingLevel: (site: string | ObjectId, block: number, level: string) => Promise<TBuildingUnit | null>;
2005
2011
  bulkAddBuildingUnits: (value: TBuildingUnit[], session?: ClientSession) => Promise<mongodb.BulkWriteResult>;
2012
+ getAllLevelsWithUnits: ({ search, page, limit, sort, site, building, status, level, }?: {
2013
+ search?: string | undefined;
2014
+ page?: number | undefined;
2015
+ limit?: number | undefined;
2016
+ sort?: {} | undefined;
2017
+ site?: string | undefined;
2018
+ building?: string | undefined;
2019
+ status?: string | undefined;
2020
+ level?: string | undefined;
2021
+ }) => Promise<Record<string, any>>;
2006
2022
  };
2007
2023
 
2008
2024
  declare function useBuildingUnitService(): {
@@ -2023,6 +2039,7 @@ declare function useBuildingUnitController(): {
2023
2039
  getBuildingUnits: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2024
2040
  getBuildingUnitsForResident: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2025
2041
  getBuildingUnitsWithOwner: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2042
+ getAllLevelsWithUnits: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2026
2043
  };
2027
2044
 
2028
2045
  declare enum CameraType {
@@ -2182,9 +2199,9 @@ type TVehicle = {
2182
2199
  phoneNumber?: string;
2183
2200
  type: string;
2184
2201
  email?: string;
2185
- block?: number;
2186
- level?: string;
2187
- unit?: string | ObjectId;
2202
+ block?: string | ObjectId | null;
2203
+ level?: string | ObjectId | null;
2204
+ unit?: string | ObjectId | null;
2188
2205
  start?: Date | string;
2189
2206
  end?: Date | string;
2190
2207
  status?: string;
@@ -2215,9 +2232,9 @@ declare function MVehicle(value: TVehicle): {
2215
2232
  recNo: string;
2216
2233
  org: string | ObjectId;
2217
2234
  site: string | ObjectId;
2218
- block: number;
2219
- level: string;
2220
- unit: string | ObjectId;
2235
+ block: string | ObjectId | null;
2236
+ level: string | ObjectId | null;
2237
+ unit: string | ObjectId | null;
2221
2238
  nric: string;
2222
2239
  remarks: string;
2223
2240
  seasonPassType: string;
@@ -2487,11 +2504,15 @@ declare function useCustomerSiteRepo(): {
2487
2504
  org: string | ObjectId;
2488
2505
  }) => Promise<TCustomerSite[]>;
2489
2506
  getBySiteAsServiceProvider: (site: string | ObjectId) => Promise<{} | undefined>;
2507
+ getById: (id: string | ObjectId) => Promise<mongodb.WithId<bson.Document>>;
2508
+ updateCustomerSiteById: (id: string | ObjectId, payload: Partial<TCustomerSite>, session?: ClientSession) => Promise<mongodb.WithId<bson.Document>>;
2509
+ deleteById: (id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document>>;
2490
2510
  };
2491
2511
 
2492
2512
  declare function useCustomerSiteService(): {
2493
2513
  add: (value: TCustomerSite) => Promise<string>;
2494
2514
  addViaInvite: (invite: string) => Promise<string>;
2515
+ updateCusSiteById: (customerSiteId: string, payload: Partial<TCustomerSite>) => Promise<mongodb.WithId<bson.Document>>;
2495
2516
  };
2496
2517
 
2497
2518
  declare function useCustomerSiteController(): {
@@ -2499,6 +2520,9 @@ declare function useCustomerSiteController(): {
2499
2520
  getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2500
2521
  addViaInvite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2501
2522
  getBySiteAsServiceProvider: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2523
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2524
+ updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2525
+ deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
2502
2526
  };
2503
2527
 
2504
2528
  type TAttendance = {
@@ -2642,9 +2666,9 @@ type TPerson = {
2642
2666
  type?: PersonType;
2643
2667
  password?: string;
2644
2668
  email?: string;
2645
- block: number;
2646
- level: string;
2647
- unit: string;
2669
+ block?: string | ObjectId | null;
2670
+ level?: string | ObjectId | null;
2671
+ unit?: string | ObjectId | null;
2648
2672
  start?: string | Date;
2649
2673
  end?: string | Date;
2650
2674
  status?: string;
@@ -2679,9 +2703,9 @@ declare function MPerson(value: TPerson): {
2679
2703
  user: string | ObjectId;
2680
2704
  name: string;
2681
2705
  contact: string;
2682
- block: number;
2683
- level: string;
2684
- unit: string;
2706
+ block: string | ObjectId | null;
2707
+ level: string | ObjectId | null;
2708
+ unit: string | ObjectId | null;
2685
2709
  start: string | Date | undefined;
2686
2710
  end: string | Date | undefined;
2687
2711
  type: "resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant" | undefined;
@@ -2736,9 +2760,9 @@ type TVisitorTransaction = {
2736
2760
  name?: string;
2737
2761
  contact?: string;
2738
2762
  type?: PersonTypes;
2739
- block?: number;
2740
- level?: string;
2741
- unit?: string | ObjectId;
2763
+ block?: string | ObjectId | null;
2764
+ level?: string | ObjectId | null;
2765
+ unit?: string | ObjectId | null;
2742
2766
  checkIn?: string | Date | null;
2743
2767
  expectedCheckIn?: string | Date;
2744
2768
  checkOut?: string | Date | null;
@@ -2790,9 +2814,9 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
2790
2814
  org: string | ObjectId | undefined;
2791
2815
  site: string | ObjectId | undefined;
2792
2816
  company: string | undefined;
2793
- block: number | undefined;
2794
- level: string | undefined;
2795
- unit: string | ObjectId | undefined;
2817
+ block: string | ObjectId | null | undefined;
2818
+ level: string | ObjectId | null | undefined;
2819
+ unit: string | ObjectId | null | undefined;
2796
2820
  contact: string | undefined;
2797
2821
  plateNumber: string | undefined;
2798
2822
  recNo: string | undefined;
@@ -2983,7 +3007,11 @@ declare function usePersonRepo(): {
2983
3007
  org?: string | undefined;
2984
3008
  site?: string | undefined;
2985
3009
  type?: string | undefined;
2986
- }, session?: ClientSession) => Promise<{}>;
3010
+ }, session?: ClientSession) => Promise<{
3011
+ items: any[];
3012
+ pages: number;
3013
+ pageRange: string;
3014
+ }>;
2987
3015
  updateById: (_id: string | ObjectId, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<TPerson>>;
2988
3016
  deleteById: (_id: string | ObjectId) => Promise<number>;
2989
3017
  getById: (_id: string | ObjectId) => Promise<TPerson | null>;
@@ -2997,7 +3025,7 @@ declare function usePersonRepo(): {
2997
3025
  type?: ("resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant")[] | undefined;
2998
3026
  unit?: string | undefined;
2999
3027
  }, session?: ClientSession) => Promise<TPerson[]>;
3000
- getCompany: (search?: string) => Promise<any[] | TPerson>;
3028
+ getCompany: (search?: string) => Promise<any[]>;
3001
3029
  getPeopleByPlateNumber: (plateNumber: string) => Promise<TPerson[]>;
3002
3030
  getPeopleByNRIC: ({ page, limit, nric, sort, site, }: {
3003
3031
  page?: number | undefined;
@@ -3800,7 +3828,7 @@ type TDocumentManagement = {
3800
3828
  };
3801
3829
  type TDocumentCreate = Pick<TDocumentManagement, "org" | "site" | "parentId" | "createdBy" | "name" | "remarks" | "status"> & {
3802
3830
  items: {
3803
- id: string | ObjectId;
3831
+ id?: string | ObjectId;
3804
3832
  name?: TDocumentManagement["name"];
3805
3833
  type?: TDocumentManagement["type"];
3806
3834
  size?: TDocumentManagement["size"];
@@ -7262,8 +7290,8 @@ declare function useFormEntryRepo(): {
7262
7290
  limit?: number | undefined;
7263
7291
  sort?: Record<string, any> | undefined;
7264
7292
  status: string;
7265
- org?: string | undefined;
7266
- site?: string | ObjectId | undefined;
7293
+ org: string | ObjectId;
7294
+ site: string | ObjectId;
7267
7295
  }) => Promise<{
7268
7296
  items: any[];
7269
7297
  pages: number;
@@ -7327,11 +7355,19 @@ declare function useBuildingLevelRepo(): {
7327
7355
  updateLevelById: (_id: string | ObjectId, value: TBuildingLevel, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
7328
7356
  deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
7329
7357
  bulkWriteLevels: (levels: TBuildingLevel[], session?: ClientSession) => Promise<{
7330
- insertedCount: number;
7331
7358
  insertedIds: {
7332
7359
  [key: number]: any;
7333
7360
  };
7334
7361
  }>;
7362
+ batchUpdateByIds: (updates: {
7363
+ _id: string | ObjectId;
7364
+ value: Partial<TBuildingLevel>;
7365
+ }[], session?: ClientSession) => Promise<mongodb.BulkWriteResult>;
7366
+ getBuildingLevelList: (site: string | ObjectId, blockId: string | ObjectId) => Promise<{
7367
+ success: boolean;
7368
+ message: string;
7369
+ data: bson.Document[];
7370
+ }>;
7335
7371
  };
7336
7372
 
7337
7373
  declare function useBuildingLevelService(): {
@@ -7345,6 +7381,8 @@ declare function useBuildingLevelController(): {
7345
7381
  getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
7346
7382
  updateLevelById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
7347
7383
  deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
7384
+ batchUpdateByIds: (req: Request, res: Response, next: NextFunction) => Promise<void>;
7385
+ getBuildingLevelList: (req: Request, res: Response, next: NextFunction) => Promise<void>;
7348
7386
  };
7349
7387
 
7350
7388
  export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPost, MPostFavorite, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, PStatus, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, 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, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMessagePreloved, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPost, TPostFavorite, 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, TSubcategoryPreloved, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateFormEntry, 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, building_level_namespace_collection, building_units_namespace_collection, 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, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, 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, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, 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, useFormEntryController, useFormEntryRepo, 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, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePostFavoriteController, usePostFavoriteRepo, usePostFavoriteService, usePostPrelovedController, usePostPrelovedRepo, 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, useSubcategoryPrelovedController, useSubcategoryPrelovedRepo, 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_orders2_namespace_collection, work_orders_namespace_collection };