@7365admin1/core 2.83.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 +6 -0
- package/dist/index.d.ts +68 -37
- package/dist/index.js +1613 -744
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1613 -745
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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?:
|
|
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:
|
|
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:
|
|
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:
|
|
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?:
|
|
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:
|
|
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;
|
|
@@ -2649,9 +2666,9 @@ type TPerson = {
|
|
|
2649
2666
|
type?: PersonType;
|
|
2650
2667
|
password?: string;
|
|
2651
2668
|
email?: string;
|
|
2652
|
-
block
|
|
2653
|
-
level
|
|
2654
|
-
unit
|
|
2669
|
+
block?: string | ObjectId | null;
|
|
2670
|
+
level?: string | ObjectId | null;
|
|
2671
|
+
unit?: string | ObjectId | null;
|
|
2655
2672
|
start?: string | Date;
|
|
2656
2673
|
end?: string | Date;
|
|
2657
2674
|
status?: string;
|
|
@@ -2686,9 +2703,9 @@ declare function MPerson(value: TPerson): {
|
|
|
2686
2703
|
user: string | ObjectId;
|
|
2687
2704
|
name: string;
|
|
2688
2705
|
contact: string;
|
|
2689
|
-
block:
|
|
2690
|
-
level: string;
|
|
2691
|
-
unit: string;
|
|
2706
|
+
block: string | ObjectId | null;
|
|
2707
|
+
level: string | ObjectId | null;
|
|
2708
|
+
unit: string | ObjectId | null;
|
|
2692
2709
|
start: string | Date | undefined;
|
|
2693
2710
|
end: string | Date | undefined;
|
|
2694
2711
|
type: "resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant" | undefined;
|
|
@@ -2743,9 +2760,9 @@ type TVisitorTransaction = {
|
|
|
2743
2760
|
name?: string;
|
|
2744
2761
|
contact?: string;
|
|
2745
2762
|
type?: PersonTypes;
|
|
2746
|
-
block?:
|
|
2747
|
-
level?: string;
|
|
2748
|
-
unit?: string | ObjectId;
|
|
2763
|
+
block?: string | ObjectId | null;
|
|
2764
|
+
level?: string | ObjectId | null;
|
|
2765
|
+
unit?: string | ObjectId | null;
|
|
2749
2766
|
checkIn?: string | Date | null;
|
|
2750
2767
|
expectedCheckIn?: string | Date;
|
|
2751
2768
|
checkOut?: string | Date | null;
|
|
@@ -2797,9 +2814,9 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
|
|
|
2797
2814
|
org: string | ObjectId | undefined;
|
|
2798
2815
|
site: string | ObjectId | undefined;
|
|
2799
2816
|
company: string | undefined;
|
|
2800
|
-
block:
|
|
2801
|
-
level: string | undefined;
|
|
2802
|
-
unit: string | ObjectId | undefined;
|
|
2817
|
+
block: string | ObjectId | null | undefined;
|
|
2818
|
+
level: string | ObjectId | null | undefined;
|
|
2819
|
+
unit: string | ObjectId | null | undefined;
|
|
2803
2820
|
contact: string | undefined;
|
|
2804
2821
|
plateNumber: string | undefined;
|
|
2805
2822
|
recNo: string | undefined;
|
|
@@ -2990,7 +3007,11 @@ declare function usePersonRepo(): {
|
|
|
2990
3007
|
org?: string | undefined;
|
|
2991
3008
|
site?: string | undefined;
|
|
2992
3009
|
type?: string | undefined;
|
|
2993
|
-
}, session?: ClientSession) => Promise<{
|
|
3010
|
+
}, session?: ClientSession) => Promise<{
|
|
3011
|
+
items: any[];
|
|
3012
|
+
pages: number;
|
|
3013
|
+
pageRange: string;
|
|
3014
|
+
}>;
|
|
2994
3015
|
updateById: (_id: string | ObjectId, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<TPerson>>;
|
|
2995
3016
|
deleteById: (_id: string | ObjectId) => Promise<number>;
|
|
2996
3017
|
getById: (_id: string | ObjectId) => Promise<TPerson | null>;
|
|
@@ -3004,7 +3025,7 @@ declare function usePersonRepo(): {
|
|
|
3004
3025
|
type?: ("resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant")[] | undefined;
|
|
3005
3026
|
unit?: string | undefined;
|
|
3006
3027
|
}, session?: ClientSession) => Promise<TPerson[]>;
|
|
3007
|
-
getCompany: (search?: string) => Promise<any[]
|
|
3028
|
+
getCompany: (search?: string) => Promise<any[]>;
|
|
3008
3029
|
getPeopleByPlateNumber: (plateNumber: string) => Promise<TPerson[]>;
|
|
3009
3030
|
getPeopleByNRIC: ({ page, limit, nric, sort, site, }: {
|
|
3010
3031
|
page?: number | undefined;
|
|
@@ -3807,7 +3828,7 @@ type TDocumentManagement = {
|
|
|
3807
3828
|
};
|
|
3808
3829
|
type TDocumentCreate = Pick<TDocumentManagement, "org" | "site" | "parentId" | "createdBy" | "name" | "remarks" | "status"> & {
|
|
3809
3830
|
items: {
|
|
3810
|
-
id
|
|
3831
|
+
id?: string | ObjectId;
|
|
3811
3832
|
name?: TDocumentManagement["name"];
|
|
3812
3833
|
type?: TDocumentManagement["type"];
|
|
3813
3834
|
size?: TDocumentManagement["size"];
|
|
@@ -7269,8 +7290,8 @@ declare function useFormEntryRepo(): {
|
|
|
7269
7290
|
limit?: number | undefined;
|
|
7270
7291
|
sort?: Record<string, any> | undefined;
|
|
7271
7292
|
status: string;
|
|
7272
|
-
org
|
|
7273
|
-
site
|
|
7293
|
+
org: string | ObjectId;
|
|
7294
|
+
site: string | ObjectId;
|
|
7274
7295
|
}) => Promise<{
|
|
7275
7296
|
items: any[];
|
|
7276
7297
|
pages: number;
|
|
@@ -7334,11 +7355,19 @@ declare function useBuildingLevelRepo(): {
|
|
|
7334
7355
|
updateLevelById: (_id: string | ObjectId, value: TBuildingLevel, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
7335
7356
|
deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
|
|
7336
7357
|
bulkWriteLevels: (levels: TBuildingLevel[], session?: ClientSession) => Promise<{
|
|
7337
|
-
insertedCount: number;
|
|
7338
7358
|
insertedIds: {
|
|
7339
7359
|
[key: number]: any;
|
|
7340
7360
|
};
|
|
7341
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
|
+
}>;
|
|
7342
7371
|
};
|
|
7343
7372
|
|
|
7344
7373
|
declare function useBuildingLevelService(): {
|
|
@@ -7352,6 +7381,8 @@ declare function useBuildingLevelController(): {
|
|
|
7352
7381
|
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7353
7382
|
updateLevelById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7354
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>;
|
|
7355
7386
|
};
|
|
7356
7387
|
|
|
7357
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 };
|