@7365admin1/core 3.46.1-staging.116 → 3.46.1-staging.118
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/.changeset/terms-acceptance-per-user.md +5 -0
- package/dist/index.d.ts +260 -21
- package/dist/index.js +2117 -257
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2356 -500
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/test/staff-console-authz.test.mjs +51 -9
package/dist/index.d.ts
CHANGED
|
@@ -9548,9 +9548,29 @@ type THidAmicoReader = {
|
|
|
9548
9548
|
password: string;
|
|
9549
9549
|
location?: string;
|
|
9550
9550
|
deviceId?: string;
|
|
9551
|
+
serial?: string;
|
|
9552
|
+
firmwareVersion?: string;
|
|
9553
|
+
readerModel?: "VL35LF" | "VL70LF" | "unknown";
|
|
9554
|
+
capabilities?: {
|
|
9555
|
+
card: boolean;
|
|
9556
|
+
facial: boolean;
|
|
9557
|
+
qr: boolean;
|
|
9558
|
+
pin: boolean;
|
|
9559
|
+
intercom: boolean;
|
|
9560
|
+
};
|
|
9551
9561
|
portalId?: number;
|
|
9552
9562
|
portalName?: string;
|
|
9553
9563
|
monitorPath?: string;
|
|
9564
|
+
callbackTokenHash?: string;
|
|
9565
|
+
callbackToken?: string;
|
|
9566
|
+
monitorStatus?: "unconfigured" | "configured" | "disabled" | "failed";
|
|
9567
|
+
monitorConfiguredAt?: Date | string;
|
|
9568
|
+
lastCallbackAt?: Date | string;
|
|
9569
|
+
lastCallbackType?: string;
|
|
9570
|
+
operatingMode?: "standalone" | "online";
|
|
9571
|
+
cardReadingMode?: "unconfigured" | "pacs" | "csn" | "csn_for_mifare";
|
|
9572
|
+
csnByteOrder?: "msb" | "lsb";
|
|
9573
|
+
pacsFormat?: "raw" | "wiegand";
|
|
9554
9574
|
enabled?: boolean;
|
|
9555
9575
|
status?: "active" | "inactive" | "deleted" | "offline";
|
|
9556
9576
|
lastSeenAt?: Date | string;
|
|
@@ -9580,6 +9600,7 @@ type THidAmicoIdentity = {
|
|
|
9580
9600
|
person?: ObjectId | string;
|
|
9581
9601
|
user?: ObjectId | string;
|
|
9582
9602
|
member?: ObjectId | string;
|
|
9603
|
+
serviceProvider?: ObjectId | string;
|
|
9583
9604
|
visitor?: ObjectId | string;
|
|
9584
9605
|
type: "resident" | "staff" | "contractor" | "visitor" | "admin" | "unknown";
|
|
9585
9606
|
status?: "active" | "inactive" | "deleted";
|
|
@@ -9681,6 +9702,9 @@ declare const schemaHidAmicoUserCardParams: Joi.ObjectSchema<any>;
|
|
|
9681
9702
|
declare const schemaHidAmicoUserCardIdParams: Joi.ObjectSchema<any>;
|
|
9682
9703
|
declare const schemaHidAmicoAssignUserCard: Joi.ObjectSchema<any>;
|
|
9683
9704
|
declare const schemaHidAmicoEnrollUserCard: Joi.ObjectSchema<any>;
|
|
9705
|
+
declare const schemaHidAmicoReaderUserQuery: Joi.ObjectSchema<any>;
|
|
9706
|
+
declare const schemaHidAmicoAccessLogQuery: Joi.ObjectSchema<any>;
|
|
9707
|
+
declare const schemaHidAmicoOperatingMode: Joi.ObjectSchema<any>;
|
|
9684
9708
|
declare const schemaHidAmicoVisitorImageUploadQuery: Joi.ObjectSchema<any>;
|
|
9685
9709
|
declare const schemaHidPermissionCandidateQuery: Joi.ObjectSchema<any>;
|
|
9686
9710
|
declare const schemaHidPermissionScopeQuery: Joi.ObjectSchema<any>;
|
|
@@ -9689,6 +9713,7 @@ declare const schemaHidAmicoExecuteActions: Joi.ObjectSchema<any>;
|
|
|
9689
9713
|
declare const schemaHidAmicoIntercomCall: Joi.ObjectSchema<any>;
|
|
9690
9714
|
declare const schemaHidAmicoConfiguration: Joi.ObjectSchema<any>;
|
|
9691
9715
|
declare const schemaHidAmicoSetConfiguration: Joi.ObjectSchema<any>;
|
|
9716
|
+
declare const schemaHidAmicoMonitor: Joi.ObjectSchema<any>;
|
|
9692
9717
|
declare const schemaHidAmicoObjectOperation: Joi.ObjectSchema<any>;
|
|
9693
9718
|
declare const schemaHidAmicoNotificationParams: Joi.ObjectSchema<any>;
|
|
9694
9719
|
declare function MHidAmicoReader(value: THidAmicoReader): {
|
|
@@ -9700,9 +9725,29 @@ declare function MHidAmicoReader(value: THidAmicoReader): {
|
|
|
9700
9725
|
password: string;
|
|
9701
9726
|
location: string;
|
|
9702
9727
|
deviceId: string;
|
|
9728
|
+
serial: string;
|
|
9729
|
+
firmwareVersion: string;
|
|
9730
|
+
readerModel: "unknown" | "VL35LF" | "VL70LF";
|
|
9731
|
+
capabilities: {
|
|
9732
|
+
card: boolean;
|
|
9733
|
+
facial: boolean;
|
|
9734
|
+
qr: boolean;
|
|
9735
|
+
pin: boolean;
|
|
9736
|
+
intercom: boolean;
|
|
9737
|
+
};
|
|
9703
9738
|
portalId: number | undefined;
|
|
9704
9739
|
portalName: string;
|
|
9705
9740
|
monitorPath: string;
|
|
9741
|
+
callbackTokenHash: string;
|
|
9742
|
+
callbackToken: string;
|
|
9743
|
+
monitorStatus: "failed" | "disabled" | "unconfigured" | "configured";
|
|
9744
|
+
monitorConfiguredAt: string | Date;
|
|
9745
|
+
lastCallbackAt: string | Date;
|
|
9746
|
+
lastCallbackType: string;
|
|
9747
|
+
operatingMode: "standalone" | "online";
|
|
9748
|
+
cardReadingMode: "unconfigured" | "pacs" | "csn" | "csn_for_mifare";
|
|
9749
|
+
csnByteOrder: "msb" | "lsb";
|
|
9750
|
+
pacsFormat: "raw" | "wiegand";
|
|
9706
9751
|
enabled: boolean;
|
|
9707
9752
|
status: "deleted" | "active" | "inactive" | "offline";
|
|
9708
9753
|
lastSeenAt: string | Date;
|
|
@@ -9732,6 +9777,7 @@ declare function MHidAmicoIdentity(value: THidAmicoIdentity): {
|
|
|
9732
9777
|
person: ObjectId | undefined;
|
|
9733
9778
|
user: ObjectId | undefined;
|
|
9734
9779
|
member: ObjectId | undefined;
|
|
9780
|
+
serviceProvider: ObjectId | undefined;
|
|
9735
9781
|
visitor: ObjectId | undefined;
|
|
9736
9782
|
type: "admin" | "contractor" | "resident" | "unknown" | "visitor" | "staff";
|
|
9737
9783
|
status: "deleted" | "active" | "inactive";
|
|
@@ -9772,9 +9818,15 @@ declare function MHidSipAccount(value: THidSipAccount): {
|
|
|
9772
9818
|
updatedAt: string | Date;
|
|
9773
9819
|
};
|
|
9774
9820
|
|
|
9821
|
+
type PublicHidReader = Omit<THidAmicoReader, "password" | "callbackToken" | "callbackTokenHash"> & {
|
|
9822
|
+
passwordSet: boolean;
|
|
9823
|
+
};
|
|
9824
|
+
type CallbackHidReader = PublicHidReader & {
|
|
9825
|
+
callbackTokenHash: string;
|
|
9826
|
+
};
|
|
9775
9827
|
declare function useHidAmicoRepo(): {
|
|
9776
9828
|
createIndexes: () => Promise<string>;
|
|
9777
|
-
add: (value: THidAmicoReader, session?: ClientSession) => Promise<
|
|
9829
|
+
add: (value: THidAmicoReader, session?: ClientSession) => Promise<PublicHidReader>;
|
|
9778
9830
|
list: (value: {
|
|
9779
9831
|
site?: string;
|
|
9780
9832
|
page?: number;
|
|
@@ -9786,9 +9838,20 @@ declare function useHidAmicoRepo(): {
|
|
|
9786
9838
|
}>;
|
|
9787
9839
|
getById: (id: string | ObjectId, options?: {
|
|
9788
9840
|
includePassword?: boolean;
|
|
9789
|
-
}) => Promise<
|
|
9790
|
-
|
|
9791
|
-
|
|
9841
|
+
}) => Promise<mongodb.WithId<bson.Document> | PublicHidReader>;
|
|
9842
|
+
getByDeviceId: (deviceIdValue: string | number, options?: {
|
|
9843
|
+
includePassword?: boolean;
|
|
9844
|
+
}) => Promise<mongodb.WithId<bson.Document> | PublicHidReader>;
|
|
9845
|
+
getByCallbackTokenHash: {
|
|
9846
|
+
(callbackTokenHash: string, options: {
|
|
9847
|
+
includeCallbackTokenHash: true;
|
|
9848
|
+
}): Promise<CallbackHidReader>;
|
|
9849
|
+
(callbackTokenHash: string, options?: {
|
|
9850
|
+
includeCallbackTokenHash?: false;
|
|
9851
|
+
}): Promise<PublicHidReader>;
|
|
9852
|
+
};
|
|
9853
|
+
updateById: (id: string | ObjectId, value: Partial<THidAmicoReader>, session?: ClientSession) => Promise<PublicHidReader>;
|
|
9854
|
+
markDeleted: (id: string | ObjectId, session?: ClientSession) => Promise<PublicHidReader>;
|
|
9792
9855
|
addEvent: (value: THidAmicoEvent, session?: ClientSession) => Promise<{
|
|
9793
9856
|
_id: ObjectId;
|
|
9794
9857
|
reader: ObjectId;
|
|
@@ -9818,6 +9881,7 @@ declare function useHidAmicoRepo(): {
|
|
|
9818
9881
|
person: ObjectId | undefined;
|
|
9819
9882
|
user: ObjectId | undefined;
|
|
9820
9883
|
member: ObjectId | undefined;
|
|
9884
|
+
serviceProvider: ObjectId | undefined;
|
|
9821
9885
|
visitor: ObjectId | undefined;
|
|
9822
9886
|
type: "admin" | "contractor" | "resident" | "unknown" | "visitor" | "staff";
|
|
9823
9887
|
status: "deleted" | "active" | "inactive";
|
|
@@ -9838,6 +9902,7 @@ declare function useHidAmicoRepo(): {
|
|
|
9838
9902
|
pages: number;
|
|
9839
9903
|
pageRange: string;
|
|
9840
9904
|
}>;
|
|
9905
|
+
getIdentityById: (id: string | ObjectId) => Promise<mongodb.WithId<bson.Document>>;
|
|
9841
9906
|
updateIdentity: (id: string | ObjectId, value: Partial<THidAmicoIdentity>, session?: ClientSession) => Promise<mongodb.WithId<bson.Document>>;
|
|
9842
9907
|
deleteIdentity: (id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document>>;
|
|
9843
9908
|
findIdentity: (value: {
|
|
@@ -9853,6 +9918,10 @@ declare function useHidAmicoRepo(): {
|
|
|
9853
9918
|
cardNo?: string;
|
|
9854
9919
|
}) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
9855
9920
|
findProfileIdentity: (reader: string | ObjectId, user: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
9921
|
+
listActiveIdentities: (reader: string | ObjectId) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
9922
|
+
findIdentitiesByHidUserIds: (reader: string | ObjectId, hidUserIds: Array<string | number>) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
9923
|
+
acquireEnrollmentLock: (reader: string | ObjectId, owner: string, ttlSeconds: number) => Promise<boolean>;
|
|
9924
|
+
releaseEnrollmentLock: (reader: string | ObjectId, owner?: string) => Promise<boolean>;
|
|
9856
9925
|
assertOrganizationSiteAccess: (site: string | ObjectId, org: string | ObjectId) => Promise<{
|
|
9857
9926
|
siteId: ObjectId;
|
|
9858
9927
|
orgId: ObjectId;
|
|
@@ -9867,6 +9936,7 @@ declare function useHidAmicoRepo(): {
|
|
|
9867
9936
|
site: ObjectId;
|
|
9868
9937
|
assignments: never[];
|
|
9869
9938
|
}>;
|
|
9939
|
+
listSitePermissionDocuments: (site: string | ObjectId) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
9870
9940
|
saveSitePermissions: (orgIdValue: string | ObjectId, site: string | ObjectId, assignments: THidPermissionAssignment[]) => Promise<{
|
|
9871
9941
|
_id: ObjectId;
|
|
9872
9942
|
orgId: ObjectId;
|
|
@@ -9885,6 +9955,22 @@ declare function useHidAmicoRepo(): {
|
|
|
9885
9955
|
updatedAt: string | Date;
|
|
9886
9956
|
}>;
|
|
9887
9957
|
resolvePermissionAssignments: (site: string | ObjectId, assignments: Array<Pick<THidPermissionAssignment, "subjectId" | "category" | "intercom">>) => Promise<THidPermissionAssignment[]>;
|
|
9958
|
+
assertPermissionSubject: (site: string | ObjectId, category: THidPermissionCategory, subjectId: string | ObjectId) => Promise<{
|
|
9959
|
+
subjectId: ObjectId;
|
|
9960
|
+
category: "resident";
|
|
9961
|
+
name: string;
|
|
9962
|
+
subtitle: string;
|
|
9963
|
+
} | {
|
|
9964
|
+
subjectId: any;
|
|
9965
|
+
category: "property_management";
|
|
9966
|
+
name: string;
|
|
9967
|
+
subtitle: string;
|
|
9968
|
+
} | {
|
|
9969
|
+
subjectId: ObjectId;
|
|
9970
|
+
category: "service_provider";
|
|
9971
|
+
name: string;
|
|
9972
|
+
subtitle: string;
|
|
9973
|
+
}>;
|
|
9888
9974
|
listPermissionCandidates: (value: {
|
|
9889
9975
|
orgId: string;
|
|
9890
9976
|
site: string;
|
|
@@ -9946,6 +10032,15 @@ declare function useHidAmicoService(): {
|
|
|
9946
10032
|
siteObjectId: bson.ObjectId;
|
|
9947
10033
|
db: mongodb.Db;
|
|
9948
10034
|
}>;
|
|
10035
|
+
authorizeHidAccess: (value: {
|
|
10036
|
+
userId: string;
|
|
10037
|
+
level: "member" | "view" | "manage" | "visitor";
|
|
10038
|
+
siteId?: string;
|
|
10039
|
+
readerId?: string;
|
|
10040
|
+
identityId?: string;
|
|
10041
|
+
}) => Promise<{
|
|
10042
|
+
siteId: string;
|
|
10043
|
+
}>;
|
|
9949
10044
|
listReaders: (value: {
|
|
9950
10045
|
site?: string;
|
|
9951
10046
|
page?: number;
|
|
@@ -9955,10 +10050,19 @@ declare function useHidAmicoService(): {
|
|
|
9955
10050
|
pages: number;
|
|
9956
10051
|
pageRange: string;
|
|
9957
10052
|
}>;
|
|
9958
|
-
discoverReader: (value: Pick<THidAmicoReader, "baseUrl" | "username" | "password">) => Promise<{
|
|
10053
|
+
discoverReader: (value: Pick<THidAmicoReader, "baseUrl" | "username" | "password"> & Partial<Pick<THidAmicoReader, "readerModel">>) => Promise<{
|
|
9959
10054
|
deviceId: string;
|
|
9960
10055
|
serial: string;
|
|
9961
10056
|
version: string;
|
|
10057
|
+
firmwareVersion: string;
|
|
10058
|
+
readerModel: "unknown" | "VL35LF" | "VL70LF";
|
|
10059
|
+
capabilities: {
|
|
10060
|
+
card: boolean;
|
|
10061
|
+
facial: boolean;
|
|
10062
|
+
qr: boolean;
|
|
10063
|
+
pin: boolean;
|
|
10064
|
+
intercom: boolean;
|
|
10065
|
+
};
|
|
9962
10066
|
online: boolean;
|
|
9963
10067
|
portals: {
|
|
9964
10068
|
id: number;
|
|
@@ -9967,18 +10071,97 @@ declare function useHidAmicoService(): {
|
|
|
9967
10071
|
areaToId: number;
|
|
9968
10072
|
}[];
|
|
9969
10073
|
}>;
|
|
9970
|
-
createReader: (value: THidAmicoReader
|
|
9971
|
-
|
|
9972
|
-
|
|
10074
|
+
createReader: (value: THidAmicoReader & {
|
|
10075
|
+
monitorEnabled?: boolean;
|
|
10076
|
+
}) => Promise<(Omit<THidAmicoReader, "password" | "callbackTokenHash" | "callbackToken"> & {
|
|
10077
|
+
passwordSet: boolean;
|
|
10078
|
+
}) | {
|
|
10079
|
+
monitorWarning: string;
|
|
10080
|
+
_id?: string | bson.ObjectId | undefined;
|
|
10081
|
+
createdAt?: string | Date | undefined;
|
|
10082
|
+
name: string;
|
|
10083
|
+
status?: "deleted" | "active" | "inactive" | "offline" | undefined;
|
|
10084
|
+
site: string | bson.ObjectId;
|
|
10085
|
+
updatedAt?: string | Date | undefined;
|
|
10086
|
+
deletedAt?: string | Date | undefined;
|
|
10087
|
+
location?: string | undefined;
|
|
10088
|
+
enabled?: boolean | undefined;
|
|
10089
|
+
username: string;
|
|
10090
|
+
serial?: string | undefined;
|
|
10091
|
+
capabilities?: {
|
|
10092
|
+
card: boolean;
|
|
10093
|
+
facial: boolean;
|
|
10094
|
+
qr: boolean;
|
|
10095
|
+
pin: boolean;
|
|
10096
|
+
intercom: boolean;
|
|
10097
|
+
} | undefined;
|
|
10098
|
+
baseUrl: string;
|
|
10099
|
+
deviceId?: string | undefined;
|
|
10100
|
+
firmwareVersion?: string | undefined;
|
|
10101
|
+
readerModel?: "unknown" | "VL35LF" | "VL70LF" | undefined;
|
|
10102
|
+
portalId?: number | undefined;
|
|
10103
|
+
portalName?: string | undefined;
|
|
10104
|
+
monitorPath?: string | undefined;
|
|
10105
|
+
monitorStatus?: "failed" | "disabled" | "unconfigured" | "configured" | undefined;
|
|
10106
|
+
monitorConfiguredAt?: string | Date | undefined;
|
|
10107
|
+
lastCallbackAt?: string | Date | undefined;
|
|
10108
|
+
lastCallbackType?: string | undefined;
|
|
10109
|
+
operatingMode?: "standalone" | "online" | undefined;
|
|
10110
|
+
cardReadingMode?: "unconfigured" | "pacs" | "csn" | "csn_for_mifare" | undefined;
|
|
10111
|
+
csnByteOrder?: "msb" | "lsb" | undefined;
|
|
10112
|
+
pacsFormat?: "raw" | "wiegand" | undefined;
|
|
10113
|
+
lastSeenAt?: string | Date | undefined;
|
|
10114
|
+
lastSyncAt?: string | Date | undefined;
|
|
10115
|
+
lastSyncStatus?: "completed" | "failed" | "idle" | "running" | undefined;
|
|
10116
|
+
lastSyncMessage?: string | undefined;
|
|
10117
|
+
passwordSet: boolean;
|
|
10118
|
+
}>;
|
|
10119
|
+
updateReader: (id: string, value: Partial<THidAmicoReader & {
|
|
10120
|
+
monitorEnabled?: boolean;
|
|
10121
|
+
}>) => Promise<Omit<THidAmicoReader, "password" | "callbackTokenHash" | "callbackToken"> & {
|
|
10122
|
+
passwordSet: boolean;
|
|
10123
|
+
}>;
|
|
10124
|
+
deleteReader: (id: string) => Promise<Omit<THidAmicoReader, "password" | "callbackTokenHash" | "callbackToken"> & {
|
|
10125
|
+
passwordSet: boolean;
|
|
10126
|
+
}>;
|
|
9973
10127
|
testReader: (id: string) => Promise<{
|
|
9974
10128
|
valid: boolean;
|
|
9975
10129
|
message: string;
|
|
9976
10130
|
}>;
|
|
9977
|
-
syncReader: (id: string, payload:
|
|
10131
|
+
syncReader: (id: string, payload: unknown) => Promise<{
|
|
9978
10132
|
message: string;
|
|
9979
|
-
results:
|
|
10133
|
+
results: unknown;
|
|
10134
|
+
}>;
|
|
10135
|
+
configureReaderIntegration: (id: string) => Promise<{
|
|
10136
|
+
monitor: {
|
|
10137
|
+
path: string;
|
|
10138
|
+
hostname: string;
|
|
10139
|
+
port: string;
|
|
10140
|
+
request_timeout: string;
|
|
10141
|
+
};
|
|
10142
|
+
mode: string;
|
|
10143
|
+
verified: boolean;
|
|
9980
10144
|
}>;
|
|
9981
|
-
|
|
10145
|
+
setReaderMonitor: (id: string, enabled: boolean) => Promise<{
|
|
10146
|
+
monitor: {
|
|
10147
|
+
path: string;
|
|
10148
|
+
hostname: string;
|
|
10149
|
+
port: string;
|
|
10150
|
+
request_timeout: string;
|
|
10151
|
+
};
|
|
10152
|
+
mode: string;
|
|
10153
|
+
verified: boolean;
|
|
10154
|
+
} | {
|
|
10155
|
+
enabled: boolean;
|
|
10156
|
+
mode: string;
|
|
10157
|
+
verified: boolean;
|
|
10158
|
+
}>;
|
|
10159
|
+
setOperatingMode: (id: string, mode: "standalone" | "online") => Promise<unknown>;
|
|
10160
|
+
receiveNotification: (callbackToken: string, type: string, payload: UnknownRecord) => Promise<{
|
|
10161
|
+
event: null;
|
|
10162
|
+
response: null;
|
|
10163
|
+
ignored: boolean;
|
|
10164
|
+
} | {
|
|
9982
10165
|
event: {
|
|
9983
10166
|
_id: bson.ObjectId;
|
|
9984
10167
|
reader: bson.ObjectId;
|
|
@@ -9991,6 +10174,7 @@ declare function useHidAmicoService(): {
|
|
|
9991
10174
|
response: {
|
|
9992
10175
|
result: UnknownRecord;
|
|
9993
10176
|
} | null;
|
|
10177
|
+
ignored?: undefined;
|
|
9994
10178
|
}>;
|
|
9995
10179
|
listLogs: (value: {
|
|
9996
10180
|
reader: string;
|
|
@@ -10014,6 +10198,33 @@ declare function useHidAmicoService(): {
|
|
|
10014
10198
|
pages: number;
|
|
10015
10199
|
pageRange: string;
|
|
10016
10200
|
}>;
|
|
10201
|
+
listReaderUsers: (readerId: string, page?: number, limit?: number, search?: string, status?: "mapped" | "unmapped" | "") => Promise<{
|
|
10202
|
+
items: {
|
|
10203
|
+
reader: string;
|
|
10204
|
+
hidUserId: string;
|
|
10205
|
+
registration: string;
|
|
10206
|
+
metadata: {
|
|
10207
|
+
name: string;
|
|
10208
|
+
};
|
|
10209
|
+
isAdministrator: boolean;
|
|
10210
|
+
_id?: bson.ObjectId | undefined;
|
|
10211
|
+
}[];
|
|
10212
|
+
page: number;
|
|
10213
|
+
limit: number;
|
|
10214
|
+
total: number;
|
|
10215
|
+
pages: number;
|
|
10216
|
+
hasMore: boolean;
|
|
10217
|
+
pageRange: string;
|
|
10218
|
+
}>;
|
|
10219
|
+
listReaderAccessLogs: (readerId: string, page?: number, limit?: number, search?: string, status?: "authorized" | "not_authorized" | "unknown" | "", method?: "facial" | "qr_code" | "id_password" | "pin" | "card" | "", tab?: "resident" | "visitor" | "administrator") => Promise<{
|
|
10220
|
+
items: unknown[];
|
|
10221
|
+
page: number;
|
|
10222
|
+
limit: number;
|
|
10223
|
+
total: number;
|
|
10224
|
+
pages: number;
|
|
10225
|
+
hasMore: boolean;
|
|
10226
|
+
pageRange: string;
|
|
10227
|
+
}>;
|
|
10017
10228
|
createIdentity: (readerId: string, value: Partial<THidAmicoIdentity>) => Promise<{
|
|
10018
10229
|
_id: bson.ObjectId;
|
|
10019
10230
|
reader: bson.ObjectId;
|
|
@@ -10024,6 +10235,7 @@ declare function useHidAmicoService(): {
|
|
|
10024
10235
|
person: bson.ObjectId | undefined;
|
|
10025
10236
|
user: bson.ObjectId | undefined;
|
|
10026
10237
|
member: bson.ObjectId | undefined;
|
|
10238
|
+
serviceProvider: bson.ObjectId | undefined;
|
|
10027
10239
|
visitor: bson.ObjectId | undefined;
|
|
10028
10240
|
type: "admin" | "contractor" | "resident" | "unknown" | "visitor" | "staff";
|
|
10029
10241
|
status: "deleted" | "active" | "inactive";
|
|
@@ -10034,7 +10246,7 @@ declare function useHidAmicoService(): {
|
|
|
10034
10246
|
}>;
|
|
10035
10247
|
updateIdentity: (identityId: string, value: Partial<THidAmicoIdentity>) => Promise<mongodb.WithId<bson.Document>>;
|
|
10036
10248
|
deleteIdentity: (identityId: string) => Promise<mongodb.WithId<bson.Document>>;
|
|
10037
|
-
runObjectOperation: (id: string, operation: "load" | "create" | "modify" | "destroy", payload: HidObjectQuery | HidObjectMutation | HidObjectBatch) => Promise<
|
|
10249
|
+
runObjectOperation: (id: string, operation: "load" | "create" | "modify" | "destroy", payload: HidObjectQuery | HidObjectMutation | HidObjectBatch) => Promise<unknown>;
|
|
10038
10250
|
issueVisitorQr: (readerId: string, value: {
|
|
10039
10251
|
visitorId: string;
|
|
10040
10252
|
validityMinutes: number;
|
|
@@ -10049,6 +10261,7 @@ declare function useHidAmicoService(): {
|
|
|
10049
10261
|
portalName: string;
|
|
10050
10262
|
readerName: string;
|
|
10051
10263
|
issuedAt: string;
|
|
10264
|
+
validFrom: string;
|
|
10052
10265
|
expiresAt: string;
|
|
10053
10266
|
}>;
|
|
10054
10267
|
revokeVisitorQr: (readerId: string, visitorId: string) => Promise<{
|
|
@@ -10094,6 +10307,7 @@ declare function useHidAmicoService(): {
|
|
|
10094
10307
|
readerId: string;
|
|
10095
10308
|
hidUserId: string;
|
|
10096
10309
|
issuedAt: string;
|
|
10310
|
+
validFrom: string;
|
|
10097
10311
|
expiresAt: string;
|
|
10098
10312
|
result: {
|
|
10099
10313
|
userId?: undefined;
|
|
@@ -10190,10 +10404,10 @@ declare function useHidAmicoService(): {
|
|
|
10190
10404
|
verified: boolean;
|
|
10191
10405
|
}>;
|
|
10192
10406
|
getDoorState: (id: string) => Promise<any>;
|
|
10193
|
-
executeActions: (id: string, actions:
|
|
10194
|
-
getConfiguration: (id: string, payload: Record<string, string[]>) => Promise<
|
|
10195
|
-
setConfiguration: (id: string, payload:
|
|
10196
|
-
getIntercomStatus: (id: string) => Promise<
|
|
10407
|
+
executeActions: (id: string, actions: UnknownRecord[]) => Promise<any>;
|
|
10408
|
+
getConfiguration: (id: string, payload: Record<string, string[]>) => Promise<unknown>;
|
|
10409
|
+
setConfiguration: (id: string, payload: UnknownRecord) => Promise<unknown>;
|
|
10410
|
+
getIntercomStatus: (id: string) => Promise<unknown>;
|
|
10197
10411
|
makeIntercomCall: (id: string, target: string) => Promise<any>;
|
|
10198
10412
|
finalizeIntercomCall: (id: string) => Promise<any>;
|
|
10199
10413
|
getSitePermissions: (orgId: string, siteId: string, readerId: string) => Promise<{
|
|
@@ -10250,6 +10464,10 @@ declare function useHidAmicoService(): {
|
|
|
10250
10464
|
};
|
|
10251
10465
|
|
|
10252
10466
|
declare function useHidAmicoController(): {
|
|
10467
|
+
authorizeMember: (req: Request, _res: Response, next: NextFunction) => Promise<void>;
|
|
10468
|
+
authorizeView: (req: Request, _res: Response, next: NextFunction) => Promise<void>;
|
|
10469
|
+
authorizeManage: (req: Request, _res: Response, next: NextFunction) => Promise<void>;
|
|
10470
|
+
authorizeVisitor: (req: Request, _res: Response, next: NextFunction) => Promise<void>;
|
|
10253
10471
|
listReaders: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10254
10472
|
discoverReader: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10255
10473
|
createReader: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -10257,8 +10475,13 @@ declare function useHidAmicoController(): {
|
|
|
10257
10475
|
deleteReader: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10258
10476
|
testReader: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10259
10477
|
syncReader: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10478
|
+
configureReaderIntegration: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10479
|
+
setReaderMonitor: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10480
|
+
setOperatingMode: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10260
10481
|
listLogs: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10261
10482
|
listIdentities: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10483
|
+
listReaderUsers: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10484
|
+
listReaderAccessLogs: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10262
10485
|
createIdentity: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10263
10486
|
updateIdentity: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10264
10487
|
deleteIdentity: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -10294,7 +10517,9 @@ declare function useHidAmicoController(): {
|
|
|
10294
10517
|
updateSitePermissions: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10295
10518
|
};
|
|
10296
10519
|
|
|
10297
|
-
declare const HID_CARD_VALUE_FACTOR:
|
|
10520
|
+
declare const HID_CARD_VALUE_FACTOR: bigint;
|
|
10521
|
+
declare const HID_UINT32_MAX: bigint;
|
|
10522
|
+
declare const HID_UINT64_MAX: bigint;
|
|
10298
10523
|
type THidPhysicalCardType = "pacs" | "csn";
|
|
10299
10524
|
type THidPhysicalCardInput = {
|
|
10300
10525
|
cardType: THidPhysicalCardType;
|
|
@@ -10302,13 +10527,27 @@ type THidPhysicalCardInput = {
|
|
|
10302
10527
|
cardNumber?: number;
|
|
10303
10528
|
cardValue?: string | number;
|
|
10304
10529
|
};
|
|
10305
|
-
declare function normalizeHidCardValue(value: unknown): number;
|
|
10306
|
-
declare function encodeHidPacsCard(facilityCodeValue: unknown, cardNumberValue: unknown): number;
|
|
10530
|
+
declare function normalizeHidCardValue(value: unknown): string | number;
|
|
10531
|
+
declare function encodeHidPacsCard(facilityCodeValue: unknown, cardNumberValue: unknown): string | number;
|
|
10307
10532
|
declare function decodeHidPacsCard(cardValueInput: unknown): {
|
|
10308
10533
|
facilityCode: number;
|
|
10309
10534
|
cardNumber: number;
|
|
10310
10535
|
};
|
|
10311
|
-
declare function resolveHidPhysicalCardValue(input: THidPhysicalCardInput): number;
|
|
10536
|
+
declare function resolveHidPhysicalCardValue(input: THidPhysicalCardInput): string | number;
|
|
10537
|
+
|
|
10538
|
+
declare const RAW_UINT64_KEY = "__hidRawUint64";
|
|
10539
|
+
type HidRawUint64 = {
|
|
10540
|
+
[RAW_UINT64_KEY]: string;
|
|
10541
|
+
};
|
|
10542
|
+
/** Marks a decimal uint64 so JSON serialization sends a number without losing precision. */
|
|
10543
|
+
declare function hidRawUint64(value: unknown): HidRawUint64;
|
|
10544
|
+
/**
|
|
10545
|
+
* HID returns card values as JSON numbers. Quote only unsafe integer tokens
|
|
10546
|
+
* before JSON.parse so their original decimal digits remain lossless.
|
|
10547
|
+
*/
|
|
10548
|
+
declare function parseHidJsonLossless(value: unknown): any;
|
|
10549
|
+
/** Serializes explicitly marked uint64 values as raw JSON integer literals. */
|
|
10550
|
+
declare function stringifyHidJson(value: unknown): string;
|
|
10312
10551
|
|
|
10313
10552
|
declare enum PlatformTermsStatus {
|
|
10314
10553
|
ACTIVE = "active",
|
|
@@ -10953,4 +11192,4 @@ declare function useNotificationPreferenceController(): {
|
|
|
10953
11192
|
update: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
10954
11193
|
};
|
|
10955
11194
|
|
|
10956
|
-
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, CAMERA_ANPR_PERMISSIONS, CAMERA_CAPABILITIES, CAMERA_CAPABILITY_REASONS, CAMERA_NOT_PATROL_OR_CCTV, CAMERA_NO_SUB_STREAM_TTL_SECONDS, CAMERA_PTZ_PERMISSIONS, CAMERA_REQUEST_TIMEOUT_MS, CAMERA_RTSP_TIMEOUT_MS, CAMERA_SETUP_PERMISSIONS, CAMERA_SNAPSHOT_CACHE_SECONDS, CAMERA_SNAPSHOT_MAX_BYTES, CAMERA_TEST_MIN_INTERVAL_SECONDS, CAMERA_TEST_ROUND_LIMIT, CAMERA_TEST_ROUND_SECONDS, CAMERA_TYPE_ANPR, CAMERA_TYPE_IP, CAMERA_VIEW_PERMISSIONS, CLOCK_DRIFT_WARN_SECONDS, CURRENT_TIME_ENDPOINT, Camera, CameraAddressInput, CameraCapability, CameraCapabilityContext, CameraCapabilityDescriptor, CameraCapabilityEntry, CameraCapabilityReason, CameraCapabilityState, CameraCapabilityTrace, CameraDevice, CameraFrame, CameraMembership, CameraStream, CameraTestStatus, CameraTransport, CameraType, DEVICE_STATUS, DOBStatus, DUPLICATE_TERMS_VERSION_MESSAGE, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, HID_CARD_VALUE_FACTOR, HID_PERMISSION_CATEGORIES, IAccessCard, IAccessCardTransaction, InviteActor, MAX_CAMERA_CHANNEL, 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, MHidSipAccount, MHidSitePermissions, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, MNotificationPreference, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPlatformTerms, MPost, MPostFavorite, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MSubscriptionPlan, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, NOTIFICATION_CATEGORIES, NOTIFICATION_CHANNELS, NOTIFICATION_CHANNEL_LABELS, NOTIFICATION_NAMESPACE, NotificationAppSlug, NotificationCategory, NotificationChannel, NotificationModule, NotificationPreferenceView, NotificationService, ORG_MARKETPLACE_VENDOR_FIELD, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PERSON_TYPES, PROPERTY_MANAGEMENT_MEMBER_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PlatformTermsStatus, PostOrder, PostSort, PostStatus, QrTagProps, REALTIME_MAX_FANOUT, ResidentAppModuleKey, SERVICE_PROVIDER_INVITE_LABELS, SERVICE_PROVIDER_INVITE_TRANSITIONS, SERVICE_PROVIDER_SIGN_IN_SUBJECT, SERVICE_PROVIDER_SIGN_IN_TYPE, SERVICE_PROVIDER_SIGN_UP_SUBJECT, SERVICE_PROVIDER_SIGN_UP_TYPE, SOFTWARE_VERSION_ENDPOINT, ServiceProviderInviteAction, ServiceProviderInviteDecision, ServiceProviderInviteFacts, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionBillingMode, 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, TCameraHealthClaim, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TCustomerSitePropertyField, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoGatewayJob, THidAmicoIdentity, THidAmicoPhysicalCard, THidAmicoReader, THidPermissionAssignment, THidPermissionCategory, THidPhysicalCardInput, THidPhysicalCardType$1 as THidPhysicalCardType, THidSipAccount, THidSitePermissions, 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, TNotification, TNotificationPreference, TNotificationPreferenceOff, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPlatformTerms, TPost, TPostFavorite, TPrice, TPriceType, TPromoCode, TPromoCurrencyInput, TPromoTier, TRANSPORT_DEVICE_HTTP, TRANSPORT_RELAY_PLAYER, TRANSPORT_RTSP_FRAME, 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, TSubscriptionPlan, TSubscriptionPlanApplication, TUnitBilling, TUnits, TUpdateFormEntry, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationEvent, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VERIFICATION_OPEN_STATUSES, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, allowedPlanApplications, attendanceSchema, attendanceSettingsSchema, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthClaim, cameraHealthSummary, cameraManagePermissions, cameraProbeCacheKey, cameraTransports, canRevokeRefreshTokenFamily, categoriesForPermissions, categorySupportsChannel, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, createManpowerRemarksDaily, customerSchema, customerSitePropertyFields, decideServiceProviderInvite, decodeHidPacsCard, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, emitNotificationCreated, encodeHidPacsCard, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, formatCapabilityTrace, formatDahuaDate, getIO, getSessionIdFromRequest, grabWithSubStreamFallback, guests_namespace_collection, hasAnyCapability, hasAnyPermission, incidentReport, incidentReportLog, incidents_namespace_collection, isCameraEntitled, isDuplicateVersionError, isPatrolCctvCamera, isPromoCodeExpired, isRelayPlayerUrl, isSuperAdmin, isTermsCurrent, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, normalizeAcceptedTerms, normalizeHidCardValue, notificationCategory, notificationCategoryLabel, notificationEvents, notificationRoom, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parsePromoExpiry, parseSoftwareVersion, pickCustomerSiteProperties, platform_terms_namespace_collection, promoCodeRefusal, promoCodeSchema, promoCodeStatusSchema, promoCodeUpdate, promoCodeUpdateSchema, ptzEndpoint, publicCameraFields, refuseServiceProviderInviteAction, registerCameraTransport, relayForRecorder, remarksSchema, resetCameraTransports, residentAppModuleKeys, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, resolveHidPhysicalCardValue, resolveInviteActor, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCreateNotification, schemaCustomerSite, schemaDiscoverHidAmicoReader, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoAssignUserCard, schemaHidAmicoConfiguration, schemaHidAmicoEnrollUserCard, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSiteIdParams, schemaHidAmicoSync, schemaHidAmicoUserCardIdParams, schemaHidAmicoUserCardParams, schemaHidAmicoUserImageParams, schemaHidAmicoUserImageUploadQuery, schemaHidAmicoUserPin, schemaHidAmicoUserPinParams, schemaHidAmicoVisitorImageParams, schemaHidAmicoVisitorImageUploadQuery, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaHidPermissionScopeQuery, schemaHidSipAccountRequest, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, schemaNotificationPreference, schemaNotificationPreferenceOff, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPlatformTerms, 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, schemaUpdateHidSitePermissions, schemaUpdateIncidentReport, schemaUpdateNotification, schemaUpdateNotificationPreference, 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, serviceProviderInviteLabel, sessionSchema, setIO, shiftSchema, siteSchema, site_people_namespace_collection, snapshotEndpoint, snapshotRefusalReason, subscriptionPlanSchema, 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, useCameraViewController, useCameraViewService, 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, useNotificationController, useNotificationPreferenceController, useNotificationPreferenceRepo, useNotificationPreferenceService, useNotificationRepo, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolLogService, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePlatformTermsController, usePlatformTermsRepo, usePlatformTermsService, 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, useServiceProviderInviteController, useServiceProviderInviteService, 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, useSubscriptionPlanController, useSubscriptionPlanRepo, 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, wallConfig, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|
|
11195
|
+
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, CAMERA_ANPR_PERMISSIONS, CAMERA_CAPABILITIES, CAMERA_CAPABILITY_REASONS, CAMERA_NOT_PATROL_OR_CCTV, CAMERA_NO_SUB_STREAM_TTL_SECONDS, CAMERA_PTZ_PERMISSIONS, CAMERA_REQUEST_TIMEOUT_MS, CAMERA_RTSP_TIMEOUT_MS, CAMERA_SETUP_PERMISSIONS, CAMERA_SNAPSHOT_CACHE_SECONDS, CAMERA_SNAPSHOT_MAX_BYTES, CAMERA_TEST_MIN_INTERVAL_SECONDS, CAMERA_TEST_ROUND_LIMIT, CAMERA_TEST_ROUND_SECONDS, CAMERA_TYPE_ANPR, CAMERA_TYPE_IP, CAMERA_VIEW_PERMISSIONS, CLOCK_DRIFT_WARN_SECONDS, CURRENT_TIME_ENDPOINT, Camera, CameraAddressInput, CameraCapability, CameraCapabilityContext, CameraCapabilityDescriptor, CameraCapabilityEntry, CameraCapabilityReason, CameraCapabilityState, CameraCapabilityTrace, CameraDevice, CameraFrame, CameraMembership, CameraStream, CameraTestStatus, CameraTransport, CameraType, DEVICE_STATUS, DOBStatus, DUPLICATE_TERMS_VERSION_MESSAGE, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, HID_CARD_VALUE_FACTOR, HID_PERMISSION_CATEGORIES, HID_UINT32_MAX, HID_UINT64_MAX, HidRawUint64, IAccessCard, IAccessCardTransaction, InviteActor, MAX_CAMERA_CHANNEL, 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, MHidSipAccount, MHidSitePermissions, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, MNotificationPreference, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPlatformTerms, MPost, MPostFavorite, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MSubscriptionPlan, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, NOTIFICATION_CATEGORIES, NOTIFICATION_CHANNELS, NOTIFICATION_CHANNEL_LABELS, NOTIFICATION_NAMESPACE, NotificationAppSlug, NotificationCategory, NotificationChannel, NotificationModule, NotificationPreferenceView, NotificationService, ORG_MARKETPLACE_VENDOR_FIELD, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PERSON_TYPES, PROPERTY_MANAGEMENT_MEMBER_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PlatformTermsStatus, PostOrder, PostSort, PostStatus, QrTagProps, REALTIME_MAX_FANOUT, ResidentAppModuleKey, SERVICE_PROVIDER_INVITE_LABELS, SERVICE_PROVIDER_INVITE_TRANSITIONS, SERVICE_PROVIDER_SIGN_IN_SUBJECT, SERVICE_PROVIDER_SIGN_IN_TYPE, SERVICE_PROVIDER_SIGN_UP_SUBJECT, SERVICE_PROVIDER_SIGN_UP_TYPE, SOFTWARE_VERSION_ENDPOINT, ServiceProviderInviteAction, ServiceProviderInviteDecision, ServiceProviderInviteFacts, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionBillingMode, 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, TCameraHealthClaim, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TCustomerSitePropertyField, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoGatewayJob, THidAmicoIdentity, THidAmicoPhysicalCard, THidAmicoReader, THidPermissionAssignment, THidPermissionCategory, THidPhysicalCardInput, THidPhysicalCardType$1 as THidPhysicalCardType, THidSipAccount, THidSitePermissions, 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, TNotification, TNotificationPreference, TNotificationPreferenceOff, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPlatformTerms, TPost, TPostFavorite, TPrice, TPriceType, TPromoCode, TPromoCurrencyInput, TPromoTier, TRANSPORT_DEVICE_HTTP, TRANSPORT_RELAY_PLAYER, TRANSPORT_RTSP_FRAME, 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, TSubscriptionPlan, TSubscriptionPlanApplication, TUnitBilling, TUnits, TUpdateFormEntry, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationEvent, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VERIFICATION_OPEN_STATUSES, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, allowedPlanApplications, attendanceSchema, attendanceSettingsSchema, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthClaim, cameraHealthSummary, cameraManagePermissions, cameraProbeCacheKey, cameraTransports, canRevokeRefreshTokenFamily, categoriesForPermissions, categorySupportsChannel, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, createManpowerRemarksDaily, customerSchema, customerSitePropertyFields, decideServiceProviderInvite, decodeHidPacsCard, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, emitNotificationCreated, encodeHidPacsCard, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, formatCapabilityTrace, formatDahuaDate, getIO, getSessionIdFromRequest, grabWithSubStreamFallback, guests_namespace_collection, hasAnyCapability, hasAnyPermission, hidRawUint64, incidentReport, incidentReportLog, incidents_namespace_collection, isCameraEntitled, isDuplicateVersionError, isPatrolCctvCamera, isPromoCodeExpired, isRelayPlayerUrl, isSuperAdmin, isTermsCurrent, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, normalizeAcceptedTerms, normalizeHidCardValue, notificationCategory, notificationCategoryLabel, notificationEvents, notificationRoom, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseHidJsonLossless, parsePromoExpiry, parseSoftwareVersion, pickCustomerSiteProperties, platform_terms_namespace_collection, promoCodeRefusal, promoCodeSchema, promoCodeStatusSchema, promoCodeUpdate, promoCodeUpdateSchema, ptzEndpoint, publicCameraFields, refuseServiceProviderInviteAction, registerCameraTransport, relayForRecorder, remarksSchema, resetCameraTransports, residentAppModuleKeys, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, resolveHidPhysicalCardValue, resolveInviteActor, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCreateNotification, schemaCustomerSite, schemaDiscoverHidAmicoReader, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoAccessLogQuery, schemaHidAmicoAssignUserCard, schemaHidAmicoConfiguration, schemaHidAmicoEnrollUserCard, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoMonitor, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoOperatingMode, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoReaderUserQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSiteIdParams, schemaHidAmicoSync, schemaHidAmicoUserCardIdParams, schemaHidAmicoUserCardParams, schemaHidAmicoUserImageParams, schemaHidAmicoUserImageUploadQuery, schemaHidAmicoUserPin, schemaHidAmicoUserPinParams, schemaHidAmicoVisitorImageParams, schemaHidAmicoVisitorImageUploadQuery, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaHidPermissionScopeQuery, schemaHidSipAccountRequest, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, schemaNotificationPreference, schemaNotificationPreferenceOff, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPlatformTerms, 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, schemaUpdateHidSitePermissions, schemaUpdateIncidentReport, schemaUpdateNotification, schemaUpdateNotificationPreference, 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, serviceProviderInviteLabel, sessionSchema, setIO, shiftSchema, siteSchema, site_people_namespace_collection, snapshotEndpoint, snapshotRefusalReason, stringifyHidJson, subscriptionPlanSchema, 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, useCameraViewController, useCameraViewService, 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, useNotificationController, useNotificationPreferenceController, useNotificationPreferenceRepo, useNotificationPreferenceService, useNotificationRepo, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolLogService, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePlatformTermsController, usePlatformTermsRepo, usePlatformTermsService, 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, useServiceProviderInviteController, useServiceProviderInviteService, 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, useSubscriptionPlanController, useSubscriptionPlanRepo, 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, wallConfig, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|