@7365admin1/core 3.32.2-staging.69 → 3.32.2-staging.70
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/dist/index.d.ts +148 -26
- package/dist/index.js +928 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +922 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/scripts/hid-sip-provisioner.mjs +170 -0
package/dist/index.d.ts
CHANGED
|
@@ -8937,14 +8937,32 @@ type THidPermissionAssignment = {
|
|
|
8937
8937
|
name: string;
|
|
8938
8938
|
subtitle?: string;
|
|
8939
8939
|
intercom?: boolean;
|
|
8940
|
+
readerId?: ObjectId | string;
|
|
8941
|
+
location?: string;
|
|
8942
|
+
locationKey?: string;
|
|
8940
8943
|
};
|
|
8941
8944
|
type THidSitePermissions = {
|
|
8942
8945
|
_id?: ObjectId | string;
|
|
8946
|
+
orgId: ObjectId | string;
|
|
8943
8947
|
site: ObjectId | string;
|
|
8944
8948
|
assignments: THidPermissionAssignment[];
|
|
8945
8949
|
createdAt?: Date | string;
|
|
8946
8950
|
updatedAt?: Date | string;
|
|
8947
8951
|
};
|
|
8952
|
+
type THidSipAccount = {
|
|
8953
|
+
_id?: ObjectId | string;
|
|
8954
|
+
orgId: ObjectId | string;
|
|
8955
|
+
site: ObjectId | string;
|
|
8956
|
+
user: ObjectId | string;
|
|
8957
|
+
extension: string;
|
|
8958
|
+
username: string;
|
|
8959
|
+
password: string;
|
|
8960
|
+
status?: "provisioning" | "active" | "failed" | "disabled";
|
|
8961
|
+
provisionedAt?: Date | string;
|
|
8962
|
+
lastProvisionError?: string;
|
|
8963
|
+
createdAt?: Date | string;
|
|
8964
|
+
updatedAt?: Date | string;
|
|
8965
|
+
};
|
|
8948
8966
|
declare const schemaHidAmicoReader: Joi.ObjectSchema<any>;
|
|
8949
8967
|
declare const schemaUpdateHidAmicoReader: Joi.ObjectSchema<any>;
|
|
8950
8968
|
declare const schemaHidAmicoEvent: Joi.ObjectSchema<any>;
|
|
@@ -8953,14 +8971,19 @@ declare const schemaCreateHidAmicoIdentity: Joi.ObjectSchema<any>;
|
|
|
8953
8971
|
declare const schemaUpdateHidAmicoIdentity: Joi.ObjectSchema<any>;
|
|
8954
8972
|
declare const schemaHidAmicoReaderIdParams: Joi.ObjectSchema<any>;
|
|
8955
8973
|
declare const schemaHidAmicoUserImageParams: Joi.ObjectSchema<any>;
|
|
8974
|
+
declare const schemaHidAmicoUserImageUploadQuery: Joi.ObjectSchema<any>;
|
|
8956
8975
|
declare const schemaHidAmicoIdentityIdParams: Joi.ObjectSchema<any>;
|
|
8957
8976
|
declare const schemaHidAmicoSiteIdParams: Joi.ObjectSchema<any>;
|
|
8977
|
+
declare const schemaHidSipAccountRequest: Joi.ObjectSchema<any>;
|
|
8958
8978
|
declare const schemaHidAmicoReaderListQuery: Joi.ObjectSchema<any>;
|
|
8959
8979
|
declare const schemaHidAmicoLogQuery: Joi.ObjectSchema<any>;
|
|
8960
8980
|
declare const schemaHidAmicoIdentityQuery: Joi.ObjectSchema<any>;
|
|
8961
8981
|
declare const schemaHidAmicoSync: Joi.ObjectSchema<any>;
|
|
8962
8982
|
declare const schemaHidAmicoVisitorQr: Joi.ObjectSchema<any>;
|
|
8983
|
+
declare const schemaHidAmicoVisitorImageParams: Joi.ObjectSchema<any>;
|
|
8984
|
+
declare const schemaHidAmicoVisitorImageUploadQuery: Joi.ObjectSchema<any>;
|
|
8963
8985
|
declare const schemaHidPermissionCandidateQuery: Joi.ObjectSchema<any>;
|
|
8986
|
+
declare const schemaHidPermissionScopeQuery: Joi.ObjectSchema<any>;
|
|
8964
8987
|
declare const schemaUpdateHidSitePermissions: Joi.ObjectSchema<any>;
|
|
8965
8988
|
declare const schemaHidAmicoExecuteActions: Joi.ObjectSchema<any>;
|
|
8966
8989
|
declare const schemaHidAmicoIntercomCall: Joi.ObjectSchema<any>;
|
|
@@ -9017,8 +9040,12 @@ declare function MHidAmicoIdentity(value: THidAmicoIdentity): {
|
|
|
9017
9040
|
};
|
|
9018
9041
|
declare function MHidSitePermissions(value: THidSitePermissions): {
|
|
9019
9042
|
_id: ObjectId;
|
|
9043
|
+
orgId: ObjectId;
|
|
9020
9044
|
site: ObjectId;
|
|
9021
9045
|
assignments: {
|
|
9046
|
+
location: string;
|
|
9047
|
+
locationKey: string;
|
|
9048
|
+
readerId?: ObjectId | undefined;
|
|
9022
9049
|
subjectId: ObjectId;
|
|
9023
9050
|
category: "resident" | "property_management" | "service_provider";
|
|
9024
9051
|
name: string;
|
|
@@ -9028,6 +9055,20 @@ declare function MHidSitePermissions(value: THidSitePermissions): {
|
|
|
9028
9055
|
createdAt: string | Date;
|
|
9029
9056
|
updatedAt: string | Date;
|
|
9030
9057
|
};
|
|
9058
|
+
declare function MHidSipAccount(value: THidSipAccount): {
|
|
9059
|
+
_id: ObjectId;
|
|
9060
|
+
orgId: ObjectId;
|
|
9061
|
+
site: ObjectId;
|
|
9062
|
+
user: ObjectId;
|
|
9063
|
+
extension: string;
|
|
9064
|
+
username: string;
|
|
9065
|
+
password: string;
|
|
9066
|
+
status: "active" | "failed" | "disabled" | "provisioning";
|
|
9067
|
+
provisionedAt: string | Date;
|
|
9068
|
+
lastProvisionError: string;
|
|
9069
|
+
createdAt: string | Date;
|
|
9070
|
+
updatedAt: string | Date;
|
|
9071
|
+
};
|
|
9031
9072
|
|
|
9032
9073
|
declare function useHidAmicoRepo(): {
|
|
9033
9074
|
createIndexes: () => Promise<string>;
|
|
@@ -9109,14 +9150,29 @@ declare function useHidAmicoRepo(): {
|
|
|
9109
9150
|
registration?: string;
|
|
9110
9151
|
cardNo?: string;
|
|
9111
9152
|
}) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
9112
|
-
|
|
9153
|
+
findProfileIdentity: (reader: string | ObjectId, user: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
9154
|
+
assertOrganizationSiteAccess: (site: string | ObjectId, org: string | ObjectId) => Promise<{
|
|
9155
|
+
siteId: ObjectId;
|
|
9156
|
+
orgId: ObjectId;
|
|
9157
|
+
}>;
|
|
9158
|
+
getSitePermissions: (orgIdValue: string | ObjectId, site: string | ObjectId) => Promise<{
|
|
9159
|
+
orgId: ObjectId;
|
|
9160
|
+
_id: ObjectId;
|
|
9161
|
+
site?: undefined;
|
|
9162
|
+
assignments?: undefined;
|
|
9163
|
+
} | {
|
|
9164
|
+
orgId: ObjectId;
|
|
9113
9165
|
site: ObjectId;
|
|
9114
9166
|
assignments: never[];
|
|
9115
9167
|
}>;
|
|
9116
|
-
saveSitePermissions: (site: string | ObjectId, assignments: THidPermissionAssignment[]) => Promise<{
|
|
9168
|
+
saveSitePermissions: (orgIdValue: string | ObjectId, site: string | ObjectId, assignments: THidPermissionAssignment[]) => Promise<{
|
|
9117
9169
|
_id: ObjectId;
|
|
9170
|
+
orgId: ObjectId;
|
|
9118
9171
|
site: ObjectId;
|
|
9119
9172
|
assignments: {
|
|
9173
|
+
location: string;
|
|
9174
|
+
locationKey: string;
|
|
9175
|
+
readerId?: ObjectId | undefined;
|
|
9120
9176
|
subjectId: ObjectId;
|
|
9121
9177
|
category: "resident" | "property_management" | "service_provider";
|
|
9122
9178
|
name: string;
|
|
@@ -9128,7 +9184,9 @@ declare function useHidAmicoRepo(): {
|
|
|
9128
9184
|
}>;
|
|
9129
9185
|
resolvePermissionAssignments: (site: string | ObjectId, assignments: Array<Pick<THidPermissionAssignment, "subjectId" | "category" | "intercom">>) => Promise<THidPermissionAssignment[]>;
|
|
9130
9186
|
listPermissionCandidates: (value: {
|
|
9187
|
+
orgId: string;
|
|
9131
9188
|
site: string;
|
|
9189
|
+
locationKey: string;
|
|
9132
9190
|
category: THidPermissionCategory | "intercom";
|
|
9133
9191
|
search?: string;
|
|
9134
9192
|
page?: number;
|
|
@@ -9138,12 +9196,16 @@ declare function useHidAmicoRepo(): {
|
|
|
9138
9196
|
pages: number;
|
|
9139
9197
|
pageRange: string;
|
|
9140
9198
|
}>;
|
|
9199
|
+
getSipAccount: (orgIdValue: string | ObjectId, siteValue: string | ObjectId, userValue: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
9200
|
+
nextSipExtension: () => Promise<string>;
|
|
9201
|
+
reserveSipAccount: (value: THidSipAccount) => Promise<mongodb.WithId<bson.Document>>;
|
|
9202
|
+
updateSipAccount: (id: string | ObjectId, value: Pick<THidSipAccount, "status" | "provisionedAt" | "lastProvisionError">) => Promise<mongodb.WithId<bson.Document>>;
|
|
9141
9203
|
};
|
|
9142
9204
|
|
|
9143
9205
|
type UnknownRecord = Record<string, unknown>;
|
|
9144
9206
|
type HidObjectBatch = {
|
|
9145
9207
|
object: string;
|
|
9146
|
-
values:
|
|
9208
|
+
values: UnknownRecord[];
|
|
9147
9209
|
};
|
|
9148
9210
|
type HidObjectQuery = {
|
|
9149
9211
|
object: string;
|
|
@@ -9244,10 +9306,59 @@ declare function useHidAmicoService(): {
|
|
|
9244
9306
|
issuedAt: string;
|
|
9245
9307
|
expiresAt: string;
|
|
9246
9308
|
}>;
|
|
9309
|
+
getProfileFacial: (readerId: string, userId: string) => Promise<{
|
|
9310
|
+
readerId: string;
|
|
9311
|
+
userId: string;
|
|
9312
|
+
memberId: string;
|
|
9313
|
+
hidUserId: string;
|
|
9314
|
+
registration: string;
|
|
9315
|
+
facialEnrolled: boolean;
|
|
9316
|
+
facialEnrolledAt: string;
|
|
9317
|
+
}>;
|
|
9318
|
+
setProfileFacial: (readerId: string, userId: string, image: Buffer, options?: {
|
|
9319
|
+
timestamp?: number;
|
|
9320
|
+
match?: boolean;
|
|
9321
|
+
}) => Promise<{
|
|
9322
|
+
readerId: string;
|
|
9323
|
+
userId: string;
|
|
9324
|
+
memberId: string;
|
|
9325
|
+
hidUserId: string;
|
|
9326
|
+
registration: string;
|
|
9327
|
+
facialEnrolled: boolean;
|
|
9328
|
+
facialEnrolledAt: string;
|
|
9329
|
+
}>;
|
|
9330
|
+
setVisitorImage: (readerId: string, visitorId: string, image: Buffer, options?: {
|
|
9331
|
+
validityMinutes?: number;
|
|
9332
|
+
timestamp?: number;
|
|
9333
|
+
match?: boolean;
|
|
9334
|
+
}) => Promise<{
|
|
9335
|
+
visitorId: string;
|
|
9336
|
+
readerId: string;
|
|
9337
|
+
hidUserId: string;
|
|
9338
|
+
issuedAt: string;
|
|
9339
|
+
expiresAt: string;
|
|
9340
|
+
result: {
|
|
9341
|
+
userId?: undefined;
|
|
9342
|
+
success?: undefined;
|
|
9343
|
+
scores?: undefined;
|
|
9344
|
+
errors?: undefined;
|
|
9345
|
+
} | {
|
|
9346
|
+
userId: unknown;
|
|
9347
|
+
success: unknown;
|
|
9348
|
+
scores: unknown;
|
|
9349
|
+
errors: unknown;
|
|
9350
|
+
};
|
|
9351
|
+
}>;
|
|
9352
|
+
deleteVisitorImage: (readerId: string, visitorId: string) => Promise<any>;
|
|
9247
9353
|
getUserImage: (readerId: string, hidUserId: string | number) => Promise<{
|
|
9248
9354
|
contentType: any;
|
|
9249
9355
|
base64: string;
|
|
9250
9356
|
}>;
|
|
9357
|
+
setUserImage: (readerId: string, hidUserId: string | number, image: Buffer, options?: {
|
|
9358
|
+
timestamp?: number;
|
|
9359
|
+
match?: boolean;
|
|
9360
|
+
}) => Promise<unknown>;
|
|
9361
|
+
deleteUserImage: (readerId: string, hidUserId: string | number) => Promise<any>;
|
|
9251
9362
|
getDoorState: (id: string) => Promise<any>;
|
|
9252
9363
|
executeActions: (id: string, actions: Array<Record<string, any>>) => Promise<any>;
|
|
9253
9364
|
getConfiguration: (id: string, payload: Record<string, string[]>) => Promise<any>;
|
|
@@ -9255,26 +9366,23 @@ declare function useHidAmicoService(): {
|
|
|
9255
9366
|
getIntercomStatus: (id: string) => Promise<any>;
|
|
9256
9367
|
makeIntercomCall: (id: string, target: string) => Promise<any>;
|
|
9257
9368
|
finalizeIntercomCall: (id: string) => Promise<any>;
|
|
9258
|
-
getSitePermissions: (siteId: string) => Promise<{
|
|
9259
|
-
|
|
9260
|
-
|
|
9261
|
-
|
|
9262
|
-
|
|
9263
|
-
|
|
9264
|
-
};
|
|
9265
|
-
_id: bson.ObjectId;
|
|
9266
|
-
} | {
|
|
9369
|
+
getSitePermissions: (orgId: string, siteId: string, readerId: string) => Promise<{
|
|
9370
|
+
orgId: bson.ObjectId;
|
|
9371
|
+
site: bson.ObjectId | undefined;
|
|
9372
|
+
readerId: string;
|
|
9373
|
+
location: string;
|
|
9374
|
+
assignments: THidPermissionAssignment[];
|
|
9267
9375
|
counts: {
|
|
9268
9376
|
resident: number;
|
|
9269
9377
|
propertyManagement: number;
|
|
9270
9378
|
serviceProvider: number;
|
|
9271
9379
|
intercom: number;
|
|
9272
9380
|
};
|
|
9273
|
-
site: bson.ObjectId;
|
|
9274
|
-
assignments: never[];
|
|
9275
9381
|
}>;
|
|
9276
9382
|
listPermissionCandidates: (value: {
|
|
9383
|
+
orgId: string;
|
|
9277
9384
|
site: string;
|
|
9385
|
+
readerId: string;
|
|
9278
9386
|
category: THidPermissionCategory | "intercom";
|
|
9279
9387
|
search?: string;
|
|
9280
9388
|
page?: number;
|
|
@@ -9284,23 +9392,30 @@ declare function useHidAmicoService(): {
|
|
|
9284
9392
|
pages: number;
|
|
9285
9393
|
pageRange: string;
|
|
9286
9394
|
}>;
|
|
9287
|
-
updateSitePermissions: (siteId: string, assignments: Array<Pick<THidPermissionAssignment, "subjectId" | "category" | "intercom">>) => Promise<{
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
};
|
|
9294
|
-
_id: bson.ObjectId;
|
|
9295
|
-
} | {
|
|
9395
|
+
updateSitePermissions: (orgId: string, siteId: string, readerId: string, assignments: Array<Pick<THidPermissionAssignment, "subjectId" | "category" | "intercom">>) => Promise<{
|
|
9396
|
+
orgId: bson.ObjectId;
|
|
9397
|
+
site: bson.ObjectId | undefined;
|
|
9398
|
+
readerId: string;
|
|
9399
|
+
location: string;
|
|
9400
|
+
assignments: THidPermissionAssignment[];
|
|
9296
9401
|
counts: {
|
|
9297
9402
|
resident: number;
|
|
9298
9403
|
propertyManagement: number;
|
|
9299
9404
|
serviceProvider: number;
|
|
9300
9405
|
intercom: number;
|
|
9301
9406
|
};
|
|
9302
|
-
|
|
9303
|
-
|
|
9407
|
+
}>;
|
|
9408
|
+
ensureSipAccount: (orgId: string, siteId: string, userId: string) => Promise<{
|
|
9409
|
+
orgId: string;
|
|
9410
|
+
site: string;
|
|
9411
|
+
userId: string;
|
|
9412
|
+
extension: string;
|
|
9413
|
+
username: string;
|
|
9414
|
+
password: string;
|
|
9415
|
+
sipAddress: string;
|
|
9416
|
+
websocketUrl: string;
|
|
9417
|
+
status: "active" | "failed" | "disabled" | "provisioning" | undefined;
|
|
9418
|
+
provisionedAt: string | Date;
|
|
9304
9419
|
}>;
|
|
9305
9420
|
};
|
|
9306
9421
|
|
|
@@ -9318,15 +9433,22 @@ declare function useHidAmicoController(): {
|
|
|
9318
9433
|
deleteIdentity: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9319
9434
|
receiveNotification: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9320
9435
|
getUserImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9436
|
+
setUserImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9437
|
+
deleteUserImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9321
9438
|
getDoorState: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9322
9439
|
executeActions: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9323
9440
|
getConfiguration: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9324
9441
|
setConfiguration: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9325
9442
|
runObjectOperation: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9326
9443
|
issueVisitorQr: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9444
|
+
getProfileFacial: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9445
|
+
setProfileFacial: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9446
|
+
setVisitorImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9447
|
+
deleteVisitorImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9327
9448
|
getIntercomStatus: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9328
9449
|
makeIntercomCall: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9329
9450
|
finalizeIntercomCall: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9451
|
+
ensureSipAccount: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9330
9452
|
getSitePermissions: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9331
9453
|
listPermissionCandidates: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9332
9454
|
updateSitePermissions: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -9404,4 +9526,4 @@ declare function useNotificationController(): {
|
|
|
9404
9526
|
add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
9405
9527
|
};
|
|
9406
9528
|
|
|
9407
|
-
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_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, CameraMembership, CameraTestStatus, CameraTransport, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, HID_PERMISSION_CATEGORIES, IAccessCard, IAccessCardTransaction, 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, MHidSitePermissions, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, 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, NotificationAppSlug, NotificationModule, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PERSON_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, QrTagProps, ResidentAppModuleKey, SOFTWARE_VERSION_ENDPOINT, 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, THidPermissionAssignment, THidPermissionCategory, 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, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPost, TPostFavorite, TPrice, TPriceType, TPromoCode, 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, 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, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthSummary, cameraManagePermissions, cameraTransports, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, createManpowerRemarksDaily, customerSchema, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, formatCapabilityTrace, formatDahuaDate, guests_namespace_collection, hasAnyCapability, hasAnyPermission, incidentReport, incidentReportLog, incidents_namespace_collection, isCameraEntitled, isPatrolCctvCamera, isRelayPlayerUrl, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseSoftwareVersion, promoCodeSchema, ptzEndpoint, publicCameraFields, registerCameraTransport, relayForRecorder, remarksSchema, resetCameraTransports, residentAppModuleKeys, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCreateNotification, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoConfiguration, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSiteIdParams, schemaHidAmicoSync, schemaHidAmicoUserImageParams, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, 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, schemaUpdateHidSitePermissions, schemaUpdateIncidentReport, schemaUpdateNotification, 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, snapshotEndpoint, snapshotRefusalReason, 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, useNotificationRepo, 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, wallConfig, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|
|
9529
|
+
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_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, CameraMembership, CameraTestStatus, CameraTransport, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, HID_PERMISSION_CATEGORIES, IAccessCard, IAccessCardTransaction, 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, 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, NotificationAppSlug, NotificationModule, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PERSON_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, QrTagProps, ResidentAppModuleKey, SOFTWARE_VERSION_ENDPOINT, 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, THidPermissionAssignment, THidPermissionCategory, 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, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPost, TPostFavorite, TPrice, TPriceType, TPromoCode, 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, 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, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthSummary, cameraManagePermissions, cameraTransports, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, createManpowerRemarksDaily, customerSchema, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, formatCapabilityTrace, formatDahuaDate, guests_namespace_collection, hasAnyCapability, hasAnyPermission, incidentReport, incidentReportLog, incidents_namespace_collection, isCameraEntitled, isPatrolCctvCamera, isRelayPlayerUrl, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseSoftwareVersion, promoCodeSchema, ptzEndpoint, publicCameraFields, registerCameraTransport, relayForRecorder, remarksSchema, resetCameraTransports, residentAppModuleKeys, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCreateNotification, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoConfiguration, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSiteIdParams, schemaHidAmicoSync, schemaHidAmicoUserImageParams, schemaHidAmicoUserImageUploadQuery, schemaHidAmicoVisitorImageParams, schemaHidAmicoVisitorImageUploadQuery, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaHidPermissionScopeQuery, schemaHidSipAccountRequest, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, 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, schemaUpdateHidSitePermissions, schemaUpdateIncidentReport, schemaUpdateNotification, 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, snapshotEndpoint, snapshotRefusalReason, 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, useNotificationRepo, 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, wallConfig, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|