@7365admin1/core 3.39.0 → 3.41.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 +12 -0
- package/dist/index.d.ts +95 -34
- package/dist/index.js +2041 -1678
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4802 -4445
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as mongodb from 'mongodb';
|
|
2
|
-
import { ObjectId, ClientSession, Db, Collection, Document } from 'mongodb';
|
|
2
|
+
import { ObjectId, ClientSession, Db, Collection, Document, AggregateOptions } from 'mongodb';
|
|
3
3
|
import Joi from 'joi';
|
|
4
4
|
import { Request, Response, NextFunction } from 'express';
|
|
5
5
|
import * as bson from 'bson';
|
|
@@ -37,22 +37,36 @@ declare enum AppServiceType {
|
|
|
37
37
|
type TAppServiceType = AppServiceType;
|
|
38
38
|
|
|
39
39
|
type TSession = {
|
|
40
|
-
|
|
40
|
+
_id?: ObjectId;
|
|
41
|
+
hashedToken: string;
|
|
42
|
+
familyId: string;
|
|
41
43
|
user: string | ObjectId;
|
|
44
|
+
expiresAt: string;
|
|
45
|
+
usedAt?: string | null;
|
|
42
46
|
createdAt?: string;
|
|
43
47
|
};
|
|
44
|
-
type TSessionCreate = Pick<TSession, "
|
|
45
|
-
declare const
|
|
46
|
-
declare function MSession(value:
|
|
47
|
-
|
|
48
|
+
type TSessionCreate = Pick<TSession, "hashedToken" | "familyId" | "user" | "expiresAt">;
|
|
49
|
+
declare const sessionSchema: Joi.ObjectSchema<any>;
|
|
50
|
+
declare function MSession(value: TSessionCreate): {
|
|
51
|
+
hashedToken: string;
|
|
52
|
+
familyId: string;
|
|
48
53
|
user: string | ObjectId;
|
|
54
|
+
expiresAt: string;
|
|
55
|
+
usedAt: null;
|
|
49
56
|
createdAt: string;
|
|
50
57
|
};
|
|
51
58
|
|
|
52
59
|
declare function useSessionRepo(): {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
60
|
+
createFamily: (userId: string | ObjectId, ttlSeconds: number, session?: ClientSession) => Promise<{
|
|
61
|
+
token: string;
|
|
62
|
+
familyId: string;
|
|
63
|
+
}>;
|
|
64
|
+
findActiveByToken: (rawToken: string) => Promise<mongodb.WithId<TSession> | null>;
|
|
65
|
+
markUsed: (_id: ObjectId, session?: ClientSession) => Promise<void>;
|
|
66
|
+
insertRotated: (familyId: string, userId: string | ObjectId, ttlSeconds: number, session?: ClientSession) => Promise<{
|
|
67
|
+
token: string;
|
|
68
|
+
}>;
|
|
69
|
+
revokeFamily: (familyId: string, session?: ClientSession) => Promise<void>;
|
|
56
70
|
};
|
|
57
71
|
|
|
58
72
|
declare function useAuthService(): {
|
|
@@ -64,9 +78,18 @@ declare function useAuthService(): {
|
|
|
64
78
|
}) => Promise<{
|
|
65
79
|
sid: string;
|
|
66
80
|
user: string;
|
|
81
|
+
refreshToken: string;
|
|
82
|
+
} | {
|
|
83
|
+
sid: string;
|
|
84
|
+
user: string;
|
|
85
|
+
refreshToken?: undefined;
|
|
67
86
|
}>;
|
|
68
|
-
refreshToken: (token: string) => Promise<
|
|
69
|
-
|
|
87
|
+
refreshToken: (token: string) => Promise<{
|
|
88
|
+
sid: string;
|
|
89
|
+
user: string;
|
|
90
|
+
refreshToken: string;
|
|
91
|
+
}>;
|
|
92
|
+
logout: (sid: string, refreshToken?: string) => Promise<string>;
|
|
70
93
|
verifyPassword: (_id: string | ObjectId, password: string) => Promise<string>;
|
|
71
94
|
};
|
|
72
95
|
|
|
@@ -803,16 +826,16 @@ declare const TPrice: z.ZodObject<{
|
|
|
803
826
|
name: string;
|
|
804
827
|
type: "one-time-payment" | "other" | "monthly-subscription" | "yearly-subscription";
|
|
805
828
|
value: number;
|
|
806
|
-
createdAt?: Date | undefined;
|
|
807
829
|
_id?: ObjectId | undefined;
|
|
830
|
+
createdAt?: Date | undefined;
|
|
808
831
|
updatedAt?: Date | undefined;
|
|
809
832
|
deletedAt?: Date | undefined;
|
|
810
833
|
saleValue?: number | undefined;
|
|
811
834
|
saleExpiry?: Date | undefined;
|
|
812
835
|
}, {
|
|
813
836
|
name: string;
|
|
814
|
-
createdAt?: Date | undefined;
|
|
815
837
|
_id?: string | ObjectId | undefined;
|
|
838
|
+
createdAt?: Date | undefined;
|
|
816
839
|
type?: "one-time-payment" | "other" | "monthly-subscription" | "yearly-subscription" | undefined;
|
|
817
840
|
updatedAt?: Date | undefined;
|
|
818
841
|
deletedAt?: Date | undefined;
|
|
@@ -826,8 +849,8 @@ declare function usePriceModel(db: Db): {
|
|
|
826
849
|
name: string;
|
|
827
850
|
type: "one-time-payment" | "other" | "monthly-subscription" | "yearly-subscription";
|
|
828
851
|
value: number;
|
|
829
|
-
createdAt?: Date | undefined;
|
|
830
852
|
_id?: ObjectId | undefined;
|
|
853
|
+
createdAt?: Date | undefined;
|
|
831
854
|
updatedAt?: Date | undefined;
|
|
832
855
|
deletedAt?: Date | undefined;
|
|
833
856
|
saleValue?: number | undefined;
|
|
@@ -835,8 +858,8 @@ declare function usePriceModel(db: Db): {
|
|
|
835
858
|
};
|
|
836
859
|
validatePrice: (data: unknown) => z.SafeParseReturnType<{
|
|
837
860
|
name: string;
|
|
838
|
-
createdAt?: Date | undefined;
|
|
839
861
|
_id?: string | ObjectId | undefined;
|
|
862
|
+
createdAt?: Date | undefined;
|
|
840
863
|
type?: "one-time-payment" | "other" | "monthly-subscription" | "yearly-subscription" | undefined;
|
|
841
864
|
updatedAt?: Date | undefined;
|
|
842
865
|
deletedAt?: Date | undefined;
|
|
@@ -847,8 +870,8 @@ declare function usePriceModel(db: Db): {
|
|
|
847
870
|
name: string;
|
|
848
871
|
type: "one-time-payment" | "other" | "monthly-subscription" | "yearly-subscription";
|
|
849
872
|
value: number;
|
|
850
|
-
createdAt?: Date | undefined;
|
|
851
873
|
_id?: ObjectId | undefined;
|
|
874
|
+
createdAt?: Date | undefined;
|
|
852
875
|
updatedAt?: Date | undefined;
|
|
853
876
|
deletedAt?: Date | undefined;
|
|
854
877
|
saleValue?: number | undefined;
|
|
@@ -858,8 +881,8 @@ declare function usePriceModel(db: Db): {
|
|
|
858
881
|
name: string;
|
|
859
882
|
type: "one-time-payment" | "other" | "monthly-subscription" | "yearly-subscription";
|
|
860
883
|
value: number;
|
|
861
|
-
createdAt?: Date | undefined;
|
|
862
884
|
_id?: ObjectId | undefined;
|
|
885
|
+
createdAt?: Date | undefined;
|
|
863
886
|
updatedAt?: Date | undefined;
|
|
864
887
|
deletedAt?: Date | undefined;
|
|
865
888
|
saleValue?: number | undefined;
|
|
@@ -896,8 +919,8 @@ declare const TCounter: z.ZodObject<{
|
|
|
896
919
|
deletedAt?: Date | undefined;
|
|
897
920
|
}, {
|
|
898
921
|
type: string;
|
|
899
|
-
createdAt?: Date | undefined;
|
|
900
922
|
_id?: string | ObjectId | undefined;
|
|
923
|
+
createdAt?: Date | undefined;
|
|
901
924
|
updatedAt?: Date | undefined;
|
|
902
925
|
deletedAt?: Date | undefined;
|
|
903
926
|
count?: number | undefined;
|
|
@@ -914,8 +937,8 @@ declare function useCounterModel(db: Db): {
|
|
|
914
937
|
};
|
|
915
938
|
validateCounter: (data: unknown) => z.SafeParseReturnType<{
|
|
916
939
|
type: string;
|
|
917
|
-
createdAt?: Date | undefined;
|
|
918
940
|
_id?: string | ObjectId | undefined;
|
|
941
|
+
createdAt?: Date | undefined;
|
|
919
942
|
updatedAt?: Date | undefined;
|
|
920
943
|
deletedAt?: Date | undefined;
|
|
921
944
|
count?: number | undefined;
|
|
@@ -1045,8 +1068,8 @@ declare const TInvoice: z.ZodObject<{
|
|
|
1045
1068
|
quantity: number;
|
|
1046
1069
|
seats?: number | undefined;
|
|
1047
1070
|
}[];
|
|
1048
|
-
createdAt?: Date | undefined;
|
|
1049
1071
|
_id?: ObjectId | undefined;
|
|
1072
|
+
createdAt?: Date | undefined;
|
|
1050
1073
|
updatedAt?: Date | undefined;
|
|
1051
1074
|
metadata?: {
|
|
1052
1075
|
description?: string | undefined;
|
|
@@ -1068,8 +1091,8 @@ declare const TInvoice: z.ZodObject<{
|
|
|
1068
1091
|
quantity: number;
|
|
1069
1092
|
seats?: number | undefined;
|
|
1070
1093
|
}[];
|
|
1071
|
-
createdAt?: Date | undefined;
|
|
1072
1094
|
_id?: string | ObjectId | undefined;
|
|
1095
|
+
createdAt?: Date | undefined;
|
|
1073
1096
|
status?: "pending" | "cancelled" | "paid" | "overdue" | undefined;
|
|
1074
1097
|
type?: "organization-subscription" | "affiliate-subscription" | "one-time-payment" | "other" | undefined;
|
|
1075
1098
|
updatedAt?: Date | undefined;
|
|
@@ -1099,8 +1122,8 @@ declare function useInvoiceModel(db: Db): {
|
|
|
1099
1122
|
quantity: number;
|
|
1100
1123
|
seats?: number | undefined;
|
|
1101
1124
|
}[];
|
|
1102
|
-
createdAt?: Date | undefined;
|
|
1103
1125
|
_id?: ObjectId | undefined;
|
|
1126
|
+
createdAt?: Date | undefined;
|
|
1104
1127
|
updatedAt?: Date | undefined;
|
|
1105
1128
|
metadata?: {
|
|
1106
1129
|
description?: string | undefined;
|
|
@@ -1131,8 +1154,8 @@ declare function useInvoiceRepo(): {
|
|
|
1131
1154
|
quantity: number;
|
|
1132
1155
|
seats?: number | undefined;
|
|
1133
1156
|
}[];
|
|
1134
|
-
createdAt?: Date | undefined;
|
|
1135
1157
|
_id?: ObjectId | undefined;
|
|
1158
|
+
createdAt?: Date | undefined;
|
|
1136
1159
|
updatedAt?: Date | undefined;
|
|
1137
1160
|
metadata?: {
|
|
1138
1161
|
description?: string | undefined;
|
|
@@ -1167,8 +1190,8 @@ declare function useInvoiceRepo(): {
|
|
|
1167
1190
|
quantity: number;
|
|
1168
1191
|
seats?: number | undefined;
|
|
1169
1192
|
}[];
|
|
1170
|
-
createdAt?: Date | undefined;
|
|
1171
1193
|
_id?: ObjectId | undefined;
|
|
1194
|
+
createdAt?: Date | undefined;
|
|
1172
1195
|
updatedAt?: Date | undefined;
|
|
1173
1196
|
metadata?: {
|
|
1174
1197
|
description?: string | undefined;
|
|
@@ -1193,8 +1216,8 @@ declare function useInvoiceRepo(): {
|
|
|
1193
1216
|
quantity: number;
|
|
1194
1217
|
seats?: number | undefined;
|
|
1195
1218
|
}[];
|
|
1196
|
-
createdAt?: Date | undefined;
|
|
1197
1219
|
_id?: ObjectId | undefined;
|
|
1220
|
+
createdAt?: Date | undefined;
|
|
1198
1221
|
updatedAt?: Date | undefined;
|
|
1199
1222
|
metadata?: {
|
|
1200
1223
|
description?: string | undefined;
|
|
@@ -1675,6 +1698,9 @@ declare function useCustomerController(): {
|
|
|
1675
1698
|
};
|
|
1676
1699
|
|
|
1677
1700
|
declare const addressSchema: Joi.ObjectSchema<any>;
|
|
1701
|
+
declare const residentAppModuleKeys: readonly ["feedback", "bulletin", "bulletinVideos", "inviteVisitors", "myVisitors", "billingAndSoa", "access", "facilityBooking", "onlineForm", "emergencyContact"];
|
|
1702
|
+
type ResidentAppModuleKey = (typeof residentAppModuleKeys)[number];
|
|
1703
|
+
type TResidentAppModules = Partial<Record<ResidentAppModuleKey, boolean>>;
|
|
1678
1704
|
declare enum SiteStatus {
|
|
1679
1705
|
ACTIVE = "active",
|
|
1680
1706
|
PENDING = "pending"
|
|
@@ -1695,6 +1721,7 @@ type TSiteMetadata = {
|
|
|
1695
1721
|
incidentCounter?: number;
|
|
1696
1722
|
incidentLogo?: string;
|
|
1697
1723
|
services?: Record<string, any>[];
|
|
1724
|
+
residentAppModules?: TResidentAppModules;
|
|
1698
1725
|
};
|
|
1699
1726
|
type SiteAddress = {
|
|
1700
1727
|
line1: string;
|
|
@@ -2415,6 +2442,7 @@ declare function useVehicleRepo(): {
|
|
|
2415
2442
|
}>;
|
|
2416
2443
|
getVehicleBySiteAndPlateNumber: (plateNumber: string, site: string | ObjectId, category: string | ObjectId, status: string) => Promise<TVehicle | null>;
|
|
2417
2444
|
getBlocklistedVehicleByPlateNumber: (plateNumber: string, site?: string) => Promise<bson.Document>;
|
|
2445
|
+
findOne: (query: Record<string, any>) => Promise<TVehicle | null>;
|
|
2418
2446
|
};
|
|
2419
2447
|
|
|
2420
2448
|
declare function formatDahuaDate(date: Date): string;
|
|
@@ -2509,16 +2537,20 @@ declare function useSiteCameraRepo(): {
|
|
|
2509
2537
|
direction?: string | string[];
|
|
2510
2538
|
page?: number;
|
|
2511
2539
|
limit?: number;
|
|
2540
|
+
status?: string;
|
|
2512
2541
|
}) => Promise<{
|
|
2513
2542
|
pageRange: string;
|
|
2514
2543
|
pages: number;
|
|
2515
2544
|
items: Array<TSiteCamera>;
|
|
2516
2545
|
}>;
|
|
2546
|
+
findMany: (query: object, project?: object, options?: AggregateOptions) => Promise<Document[]>;
|
|
2547
|
+
findOne: (query: object, project?: object, options?: AggregateOptions) => Promise<Document | null>;
|
|
2517
2548
|
};
|
|
2518
2549
|
|
|
2519
2550
|
declare function useSiteCameraService(): {
|
|
2520
2551
|
add: (value: TSiteCamera) => Promise<"CCTV(s) added successfully." | "ANPR(s) added successfully.">;
|
|
2521
2552
|
listenToCapturedPlateNumber: (onDetected?: ((data: any) => void) | undefined) => Promise<void>;
|
|
2553
|
+
updateById: (id: string, value: Partial<TSiteCamera>) => Promise<string>;
|
|
2522
2554
|
};
|
|
2523
2555
|
|
|
2524
2556
|
declare function useSiteCameraController(): {
|
|
@@ -2623,8 +2655,10 @@ type TGetAttendancesQuery = {
|
|
|
2623
2655
|
page?: number;
|
|
2624
2656
|
limit?: number;
|
|
2625
2657
|
search?: string;
|
|
2658
|
+
startDate?: string | Date;
|
|
2659
|
+
endDate?: string | Date;
|
|
2626
2660
|
} & Pick<TAttendance, "site" | "serviceType">;
|
|
2627
|
-
type TGetAttendancesByUserQuery = Pick<TGetAttendancesQuery, "page" | "limit" | "search" | "site" | "serviceType"> & Pick<TAttendance, "user">;
|
|
2661
|
+
type TGetAttendancesByUserQuery = Pick<TGetAttendancesQuery, "page" | "limit" | "search" | "site" | "serviceType" | "startDate" | "endDate"> & Pick<TAttendance, "user">;
|
|
2628
2662
|
declare const attendanceSchema: Joi.ObjectSchema<any>;
|
|
2629
2663
|
declare function MAttendance(value: TAttendance): {
|
|
2630
2664
|
site: string | ObjectId;
|
|
@@ -2683,8 +2717,8 @@ declare function useAttendanceSettingsController(): {
|
|
|
2683
2717
|
declare function useAttendanceRepository(): {
|
|
2684
2718
|
createIndex: () => Promise<void>;
|
|
2685
2719
|
checkInAttendance: (value: TAttendanceCheckIn, session?: ClientSession) => Promise<ObjectId>;
|
|
2686
|
-
getAllAttendances: ({ page, limit, search, site, serviceType, }: TGetAttendancesQuery) => Promise<{}>;
|
|
2687
|
-
getAttendanceByUser: ({ page, limit, search, site, serviceType, user, }: TGetAttendancesByUserQuery) => Promise<{}>;
|
|
2720
|
+
getAllAttendances: ({ page, limit, search, site, startDate, endDate, serviceType, }: TGetAttendancesQuery) => Promise<{}>;
|
|
2721
|
+
getAttendanceByUser: ({ page, limit, search, site, startDate, endDate, serviceType, user, }: TGetAttendancesByUserQuery) => Promise<{}>;
|
|
2688
2722
|
getAttendanceById: (_id: string | ObjectId, session?: ClientSession) => Promise<{}>;
|
|
2689
2723
|
getRawAttendanceById: (_id: string | ObjectId, session?: ClientSession) => Promise<TAttendance>;
|
|
2690
2724
|
checkOutAttendance: (_id: string | ObjectId, value: TAttendanceCheckOut, session?: ClientSession) => Promise<number>;
|
|
@@ -4784,7 +4818,13 @@ declare function UseAccessManagementRepo(): {
|
|
|
4784
4818
|
userType: string;
|
|
4785
4819
|
type: string;
|
|
4786
4820
|
search: string;
|
|
4787
|
-
|
|
4821
|
+
page: number;
|
|
4822
|
+
limit: number;
|
|
4823
|
+
}) => Promise<{
|
|
4824
|
+
items: any[];
|
|
4825
|
+
pages: number;
|
|
4826
|
+
pageRange: string;
|
|
4827
|
+
}>;
|
|
4788
4828
|
assignedAccessCardsByUnitRepo: (params: {
|
|
4789
4829
|
site: string;
|
|
4790
4830
|
unitId: string;
|
|
@@ -6183,7 +6223,14 @@ declare function useNewDashboardRepo(): {
|
|
|
6183
6223
|
missed: any;
|
|
6184
6224
|
percentage: number;
|
|
6185
6225
|
};
|
|
6186
|
-
activePatrolItems:
|
|
6226
|
+
activePatrolItems: {
|
|
6227
|
+
id: string;
|
|
6228
|
+
title: any;
|
|
6229
|
+
subtitle: string;
|
|
6230
|
+
person: any;
|
|
6231
|
+
status: any;
|
|
6232
|
+
time: string;
|
|
6233
|
+
}[];
|
|
6187
6234
|
}>;
|
|
6188
6235
|
getPropertyManagementDashboard: (siteId: string, period?: Period, type?: string, facility?: string) => Promise<{
|
|
6189
6236
|
openWorkOrder: {
|
|
@@ -7071,6 +7118,7 @@ declare function useVerificationControllerV2(): {
|
|
|
7071
7118
|
declare function useAuthControllerV2(): {
|
|
7072
7119
|
signUp: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7073
7120
|
login: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7121
|
+
refreshToken: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7074
7122
|
logout: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7075
7123
|
resetPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7076
7124
|
verifyPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -7085,8 +7133,18 @@ declare function useAuthServiceV2(): {
|
|
|
7085
7133
|
}) => Promise<{
|
|
7086
7134
|
sid: string;
|
|
7087
7135
|
user: string;
|
|
7136
|
+
refreshToken: string;
|
|
7137
|
+
} | {
|
|
7138
|
+
sid: string;
|
|
7139
|
+
user: string;
|
|
7140
|
+
refreshToken?: undefined;
|
|
7141
|
+
}>;
|
|
7142
|
+
refreshToken: (token: string) => Promise<{
|
|
7143
|
+
sid: string;
|
|
7144
|
+
user: string;
|
|
7145
|
+
refreshToken: string;
|
|
7088
7146
|
}>;
|
|
7089
|
-
logout: (sid: string) => Promise<string>;
|
|
7147
|
+
logout: (sid: string, refreshToken?: string) => Promise<string>;
|
|
7090
7148
|
verifyPassword: (_id: string | ObjectId, password: string) => Promise<string>;
|
|
7091
7149
|
};
|
|
7092
7150
|
|
|
@@ -7095,8 +7153,8 @@ declare function useUserRepoV2(): {
|
|
|
7095
7153
|
createTextIndex: () => Promise<void>;
|
|
7096
7154
|
createUniqueIndex: () => Promise<void>;
|
|
7097
7155
|
createUser: (value: TUser, session?: ClientSession) => Promise<ObjectId>;
|
|
7098
|
-
getUserByEmail: (email: string) => Promise<mongodb.WithId<bson.Document> |
|
|
7099
|
-
getUserByEmailStatus: (email: string) => Promise<mongodb.WithId<bson.Document> |
|
|
7156
|
+
getUserByEmail: (email: string) => Promise<TUser | mongodb.WithId<bson.Document> | null>;
|
|
7157
|
+
getUserByEmailStatus: (email: string) => Promise<TUser | mongodb.WithId<bson.Document> | null>;
|
|
7100
7158
|
getUserById: (id: string | ObjectId) => Promise<TUser>;
|
|
7101
7159
|
getUsers: ({ search, page, limit, sort, type, status, }: {
|
|
7102
7160
|
search?: string | undefined;
|
|
@@ -7649,6 +7707,9 @@ interface residentFormEntry {
|
|
|
7649
7707
|
fields: Record<string, any>;
|
|
7650
7708
|
remarks?: string;
|
|
7651
7709
|
managementValues?: Record<string, any>;
|
|
7710
|
+
createdAt?: Date;
|
|
7711
|
+
updatedAt?: Date | null;
|
|
7712
|
+
deletedAt?: Date | null;
|
|
7652
7713
|
}
|
|
7653
7714
|
declare const residentFormEntry: Joi.ObjectSchema<any>;
|
|
7654
7715
|
|
|
@@ -8101,4 +8162,4 @@ declare function useHidAmicoController(): {
|
|
|
8101
8162
|
finalizeIntercomCall: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
8102
8163
|
};
|
|
8103
8164
|
|
|
8104
|
-
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, 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, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, 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, 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, TBidPreloved, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoIdentity, THidAmicoReader, 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, TSignNfcPatrolLog, 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, chatPrelovedEvents, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, promoCodeSchema, remarksSchema, residentFormEntry, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoConfiguration, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSync, schemaHidAmicoUserImageParams, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSignNfcPatrolLog, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBidPreloved, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFolderManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateHidAmicoIdentity, schemaUpdateHidAmicoReader, 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, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBidPrelovedController, useBidPrelovedRepo, useBidPrelovedService, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, useChatPrelovedService, 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, useHidAmicoController, useHidAmicoRepo, useHidAmicoService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useMemberService, 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, visitorPersonRepo, visitorPersonService, visitorType, visitors_namespace_collection, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|
|
8165
|
+
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, 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, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, 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, PStatus, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, QrTagProps, ResidentAppModuleKey, 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, TBidPreloved, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoIdentity, THidAmicoReader, 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, TResidentAppModules, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, 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, chatPrelovedEvents, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, promoCodeSchema, remarksSchema, residentAppModuleKeys, residentFormEntry, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoConfiguration, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSync, schemaHidAmicoUserImageParams, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSignNfcPatrolLog, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBidPreloved, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFolderManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateHidAmicoIdentity, schemaUpdateHidAmicoReader, 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, sessionSchema, shiftSchema, siteSchema, site_people_namespace_collection, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBidPrelovedController, useBidPrelovedRepo, useBidPrelovedService, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, useChatPrelovedService, 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, useHidAmicoController, useHidAmicoRepo, useHidAmicoService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useMemberService, 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, visitorPersonRepo, visitorPersonService, visitorType, visitors_namespace_collection, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|