@7365admin1/core 3.64.5-staging.300 → 3.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +63 -0
- package/dist/index.d.ts +7 -219
- package/dist/index.js +974 -3020
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1120 -3166
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/test/console-permission.test.mjs +2 -3
- package/test/dahua-protocol.util.test.mjs +0 -137
- package/test/guard-invite-wiring.test.mjs +0 -48
- package/test/resident-ownership-scope.test.mjs +4 -8
- package/test/site-modules.test.mjs +0 -22
- package/.changeset/customer-sites-one-row-per-site.md +0 -19
- package/.changeset/hid-duplicate-enrollment.md +0 -22
- package/.changeset/hid-facial-error-wording.md +0 -20
- package/.changeset/hid-identity-user-link.md +0 -26
- package/.changeset/hid-objectid-across-driver-copies.md +0 -26
- package/.changeset/hid-profile-qr-backend.md +0 -31
- package/.changeset/hid-reader-user-search.md +0 -22
- package/.changeset/member-direct-role-org.md +0 -5
- package/.changeset/member-direct-self-enrol-role.md +0 -5
- package/.changeset/member-lookup-follows-site.md +0 -16
- package/.changeset/members-by-user-reach.md +0 -5
- package/.changeset/module-ceiling-site-owner.md +0 -5
- package/.changeset/module-gate-foundation.md +0 -20
- package/.changeset/module-gate-server.md +0 -35
- package/.changeset/org-read-reach.md +0 -5
- package/.changeset/org-update-diagnosable-error.md +0 -14
- package/.changeset/patrol-email-scope-restore.md +0 -16
- package/.changeset/people-occupied-structure.md +0 -5
- package/.changeset/resident-app-module-ceiling.md +0 -18
- package/.changeset/role-module-ceiling.md +0 -16
- package/.changeset/role-read-self-arm.md +0 -5
- package/.changeset/role-v2-platform-grant.md +0 -14
- package/.changeset/site-module-allowlist.md +0 -5
- package/.changeset/site-save-resident-ceiling.md +0 -7
- package/.changeset/user-email-allowlist-subscription-authz.md +0 -21
- package/.changeset/user-field-self-allowlist.md +0 -5
- package/test/anpr-plate.test.mjs +0 -272
- package/test/e2e/member-by-user-reach.e2e.test.mjs +0 -135
- package/test/occupancy-tree.test.mjs +0 -128
- package/test/resident-login-account.test.mjs +0 -126
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,68 @@
|
|
|
1
1
|
# @iservice365/core
|
|
2
2
|
|
|
3
|
+
## 3.65.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c4dc50b: Module gate, server step: the deny-list endpoint, the impact preview, and
|
|
8
|
+
acknowledge-before-save. Everything ships inert and fails open.
|
|
9
|
+
|
|
10
|
+
- `useMemberController().getModulesByUserIdType` (for
|
|
11
|
+
`GET /api/members/user/:id/app/:type/modules?org=&site=`) answers
|
|
12
|
+
`{ denied: string[] }` for the membership `getByUserIdType` answers with. It
|
|
13
|
+
is the same self-or-staff guard. It answers `[]` for no list, an empty list,
|
|
14
|
+
a resident, Seven365 staff, a site of another organisation, any lookup
|
|
15
|
+
error, and `MODULE_LIST_GATE=off`. `ALWAYS_ALLOWED` is never denied.
|
|
16
|
+
- A saved list is enforced only once it has been saved through the
|
|
17
|
+
acknowledged preview. The marker is the save's own append-only console-audit
|
|
18
|
+
row (`gateListHash`). A list saved earlier, or changed any other way, behaves
|
|
19
|
+
as absent. No field is added to any organisation or site.
|
|
20
|
+
- `useOrgController().previewOrgModules` and
|
|
21
|
+
`useSiteController().previewSiteModules` (for
|
|
22
|
+
`POST /api/organizations/:id/modules/preview` and
|
|
23
|
+
`POST /api/sites/:id/modules/preview`) return who would lose what. They are
|
|
24
|
+
read-only and never go through `GET /api/roles`.
|
|
25
|
+
- `updateModules` and `updateSiteModules` accept `acknowledgeImpact`. A save
|
|
26
|
+
that takes a module away from somebody is refused with 409 until it is
|
|
27
|
+
acknowledged. An empty list restores everything and never needs it. Site
|
|
28
|
+
saves are now recorded in the console audit (`site.modules-changed`).
|
|
29
|
+
- `filterByAccess` (Q7) runs at the top of the notification `send()`. It is
|
|
30
|
+
`NOTIFY_ACCESS_FILTER=log` by default: it logs who would be filtered and
|
|
31
|
+
still sends to everyone. It is exported so API-core's own sender can call it.
|
|
32
|
+
- `moduleDeniedForCaller` (Q3) is the server-refusal primitive. It is
|
|
33
|
+
`MODULE_GATE_MODE=log` by default and never refuses. `enforce` refuses only
|
|
34
|
+
the keys in `MODULE_GATE_ENFORCE_KEYS`. Work stamped (`at`) before the
|
|
35
|
+
acknowledged save is accepted.
|
|
36
|
+
- `MODULE_LIST_GATE` (code default `on`) switches all of the above off at
|
|
37
|
+
once.
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- c993ee4: POST /api/members/direct refuses (400) a role that belongs to a different organisation, unless the caller already holds that role in the organisation being joined.
|
|
42
|
+
- 74f228f: POST /api/members/direct: adding yourself now needs a role you may give yourself - Seven365 staff, the organisation's owner, a role you already hold there, or the role your own invitation offers. Enrolling somebody else is unchanged.
|
|
43
|
+
- ae42c1c: GET /api/organizations/id/:id returns the whole organisation record only to a caller with a relationship to it (member, invitee, owner, Seven365 staff, an active resident of one of its sites, or an engaged service provider). Everyone else gets the name-only record the anonymous lookup already returns. It never answers 401/403.
|
|
44
|
+
- 7363b8d: Site Settings saves are no longer refused because the client has one resident-app
|
|
45
|
+
switch turned off. A save is refused only when it would turn ON a resident-app
|
|
46
|
+
switch that the site has stored as off and the client has switched off.
|
|
47
|
+
- 9d1a0f0: PATCH /api/users/field/:id (and v2): on your own account you may change only name, contact, nric, dateOfBirth, profile and gender, and defaultOrg to an organisation you reach. status, email and plateNumber are staff-only.
|
|
48
|
+
|
|
49
|
+
## 3.64.5
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- 49e1aef: A person's role now follows the site they are on.
|
|
54
|
+
|
|
55
|
+
`GET /api/members/user/:id/app/:type` accepts an optional `?site=` (a 24-hex
|
|
56
|
+
site id, like `?org=`). When it is sent, the answer is the person's live
|
|
57
|
+
membership of that app type pinned to that site (inside `?org=` when it is also
|
|
58
|
+
sent); failing that, their organisation-wide membership in `?org=`; failing
|
|
59
|
+
that, any live membership in `?org=`. When none of these exists the route
|
|
60
|
+
answers exactly as before. A removed membership never wins, and a site never
|
|
61
|
+
turns a found membership into "not found". Callers that do not send `site`
|
|
62
|
+
see no change. Login, auth-v2 and verification are unchanged.
|
|
63
|
+
|
|
64
|
+
The rule is the pure `pickSiteMembership` in `utils/member-lookup.util.ts`.
|
|
65
|
+
|
|
3
66
|
## 3.64.4
|
|
4
67
|
|
|
5
68
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as bson from 'bson';
|
|
|
6
6
|
import * as qs from 'qs';
|
|
7
7
|
import * as express_serve_static_core from 'express-serve-static-core';
|
|
8
8
|
import { z } from 'zod';
|
|
9
|
+
import * as urllib from 'urllib';
|
|
9
10
|
import { Server } from 'socket.io';
|
|
10
11
|
|
|
11
12
|
interface IBaseModel {
|
|
@@ -3487,11 +3488,6 @@ declare function useDahuaService(): {
|
|
|
3487
3488
|
end?: string;
|
|
3488
3489
|
owner?: string;
|
|
3489
3490
|
isOpenGate?: boolean;
|
|
3490
|
-
/**
|
|
3491
|
-
* The site's zone - the camera's clock. `start` / `end` given as instants
|
|
3492
|
-
* (ISO with a zone) are written in it; see `dahuaWallClock`.
|
|
3493
|
-
*/
|
|
3494
|
-
timezone?: string;
|
|
3495
3491
|
}) => Promise<any>;
|
|
3496
3492
|
removePlateNumber: (value: {
|
|
3497
3493
|
host: string;
|
|
@@ -3500,24 +3496,6 @@ declare function useDahuaService(): {
|
|
|
3500
3496
|
mode: string;
|
|
3501
3497
|
recno: string;
|
|
3502
3498
|
}) => Promise<AnprRevokeOutcome>;
|
|
3503
|
-
clearPlateList: (value: {
|
|
3504
|
-
host: string;
|
|
3505
|
-
username: string;
|
|
3506
|
-
password: string;
|
|
3507
|
-
mode: string;
|
|
3508
|
-
}) => Promise<AnprRevokeOutcome>;
|
|
3509
|
-
setPlateWindow: (value: {
|
|
3510
|
-
host: string;
|
|
3511
|
-
username: string;
|
|
3512
|
-
password: string;
|
|
3513
|
-
mode: string;
|
|
3514
|
-
recno: string;
|
|
3515
|
-
plateNumber: string;
|
|
3516
|
-
owner?: string;
|
|
3517
|
-
start?: string;
|
|
3518
|
-
end?: string;
|
|
3519
|
-
timezone?: string;
|
|
3520
|
-
}) => Promise<any>;
|
|
3521
3499
|
updatePlateNumber: (value: {
|
|
3522
3500
|
host: string;
|
|
3523
3501
|
username: string;
|
|
@@ -3529,9 +3507,7 @@ declare function useDahuaService(): {
|
|
|
3529
3507
|
end?: string;
|
|
3530
3508
|
owner?: string;
|
|
3531
3509
|
isOpenGate?: Boolean;
|
|
3532
|
-
|
|
3533
|
-
timezone?: string;
|
|
3534
|
-
}) => Promise<any>;
|
|
3510
|
+
}) => Promise<urllib.HttpClientResponse<any>>;
|
|
3535
3511
|
getPlateNumber: (value: {
|
|
3536
3512
|
host: string;
|
|
3537
3513
|
username: string;
|
|
@@ -3563,9 +3539,7 @@ declare function useDahuaService(): {
|
|
|
3563
3539
|
isOpenGate?: boolean;
|
|
3564
3540
|
vehicleType?: string;
|
|
3565
3541
|
vehicleColor?: string;
|
|
3566
|
-
|
|
3567
|
-
timezone?: string;
|
|
3568
|
-
}) => Promise<any>;
|
|
3542
|
+
}) => Promise<urllib.HttpClientResponse<any>>;
|
|
3569
3543
|
openBarrier: (value: {
|
|
3570
3544
|
host: string;
|
|
3571
3545
|
username: string;
|
|
@@ -3579,7 +3553,7 @@ declare function useDahuaService(): {
|
|
|
3579
3553
|
}>;
|
|
3580
3554
|
};
|
|
3581
3555
|
|
|
3582
|
-
type TVehicleUpdate = Partial<Pick<TVehicle, "name" | "phoneNumber" | "block" | "level" | "unit" | "plateNumber" | "recNo" | "type"
|
|
3556
|
+
type TVehicleUpdate = Partial<Pick<TVehicle, "name" | "phoneNumber" | "block" | "level" | "unit" | "plateNumber" | "recNo" | "type">>;
|
|
3583
3557
|
declare enum VehicleType {
|
|
3584
3558
|
WHITELIST = "whitelist",
|
|
3585
3559
|
BLOCKLIST = "blocklist"
|
|
@@ -3644,15 +3618,6 @@ type TVehicle = {
|
|
|
3644
3618
|
updatedAt?: Date | string;
|
|
3645
3619
|
deletedAt?: Date | string;
|
|
3646
3620
|
expiredAt?: Date | string;
|
|
3647
|
-
/**
|
|
3648
|
-
* The type a vehicle had before it was blocked ("whitelist"), or empty.
|
|
3649
|
-
*
|
|
3650
|
-
* Blocking a whitelist vehicle keeps its allowed entries on the cameras - the
|
|
3651
|
-
* block takes precedence at the barrier - so unblocking can put it straight
|
|
3652
|
-
* back to what it was instead of deleting it. A vehicle that was ADDED as a
|
|
3653
|
-
* blocklist vehicle has nothing here and is still deleted when unblocked.
|
|
3654
|
-
*/
|
|
3655
|
-
blockedFrom?: string;
|
|
3656
3621
|
};
|
|
3657
3622
|
declare const vehicleSchema: Joi.ObjectSchema<any>;
|
|
3658
3623
|
declare function MVehicle(value: TVehicle): {
|
|
@@ -3786,11 +3751,6 @@ declare function useVehicleRepo(): {
|
|
|
3786
3751
|
pageRange: string;
|
|
3787
3752
|
}>;
|
|
3788
3753
|
deleteExpiredVehicles: (ids: Array<string | ObjectId>, session?: ClientSession) => Promise<number>;
|
|
3789
|
-
getLivePlatesBySite: (site: string | ObjectId) => Promise<(Pick<TVehicle, "_id" | "type" | "name" | "start" | "end" | "plateNumber" | "blockedFrom" | "seasonPassType"> & {
|
|
3790
|
-
blockName?: string | undefined;
|
|
3791
|
-
levelName?: string | undefined;
|
|
3792
|
-
unitName?: string | undefined;
|
|
3793
|
-
})[]>;
|
|
3794
3754
|
getAllVehiclesByUnitId: ({ unitId, page, limit, sort, }: {
|
|
3795
3755
|
unitId: string | ObjectId;
|
|
3796
3756
|
page?: number | undefined;
|
|
@@ -3882,49 +3842,7 @@ declare function useVehicleService(): {
|
|
|
3882
3842
|
};
|
|
3883
3843
|
}>;
|
|
3884
3844
|
blocklistVehicles: (_id: string, value: TVehicle) => Promise<void>;
|
|
3885
|
-
removeFromBlocklist: (_id: string, value: TVehicle) => Promise<
|
|
3886
|
-
fillCameraLists: (site: unknown, camera: {
|
|
3887
|
-
id?: string;
|
|
3888
|
-
host?: string;
|
|
3889
|
-
username?: string;
|
|
3890
|
-
password?: string;
|
|
3891
|
-
name?: string;
|
|
3892
|
-
direction?: string;
|
|
3893
|
-
}, lists: {
|
|
3894
|
-
allow: boolean;
|
|
3895
|
-
block: boolean;
|
|
3896
|
-
}) => Promise<{
|
|
3897
|
-
allowed: number;
|
|
3898
|
-
blocked: number;
|
|
3899
|
-
}>;
|
|
3900
|
-
newCameraPlateRows: (site: unknown, direction: unknown) => Promise<{
|
|
3901
|
-
/** Unique per row: the same vehicle can be on both lists. */
|
|
3902
|
-
id: string;
|
|
3903
|
-
vehicle: string;
|
|
3904
|
-
list: "allowed" | "blocked";
|
|
3905
|
-
plateNumber: string;
|
|
3906
|
-
name: string;
|
|
3907
|
-
block: string;
|
|
3908
|
-
level: string;
|
|
3909
|
-
unit: string;
|
|
3910
|
-
/** "Whitelist", "Season pass" or "Blocked", for the person reading. */
|
|
3911
|
-
kind: string;
|
|
3912
|
-
}[]>;
|
|
3913
|
-
writeVehicleToNewCamera: (site: unknown, device: {
|
|
3914
|
-
host: string;
|
|
3915
|
-
username: string;
|
|
3916
|
-
password: string;
|
|
3917
|
-
name?: string;
|
|
3918
|
-
direction?: string;
|
|
3919
|
-
}, vehicleId: string, list: "allowed" | "blocked", options?: {
|
|
3920
|
-
onlyIfMissing?: boolean;
|
|
3921
|
-
}) => Promise<{
|
|
3922
|
-
ok: true;
|
|
3923
|
-
} | {
|
|
3924
|
-
ok: false;
|
|
3925
|
-
reason: string;
|
|
3926
|
-
kind: string;
|
|
3927
|
-
}>;
|
|
3845
|
+
removeFromBlocklist: (_id: string, value: TVehicle) => Promise<void>;
|
|
3928
3846
|
};
|
|
3929
3847
|
|
|
3930
3848
|
declare function useVehicleController(): {
|
|
@@ -4000,39 +3918,14 @@ declare function useSiteCameraService(): {
|
|
|
4000
3918
|
add: (value: TSiteCamera) => Promise<"CCTV(s) added successfully." | "ANPR(s) added successfully.">;
|
|
4001
3919
|
listenToCapturedPlateNumber: (onDetected?: ((data: any) => void) | undefined) => Promise<void>;
|
|
4002
3920
|
updateById: (id: string, value: Partial<TSiteCamera>) => Promise<string>;
|
|
4003
|
-
clearPlateLists: (site: unknown, camera: string | {
|
|
4004
|
-
host: string;
|
|
4005
|
-
username: string;
|
|
4006
|
-
password: string;
|
|
4007
|
-
name?: string;
|
|
4008
|
-
direction?: string;
|
|
4009
|
-
}, lists: {
|
|
4010
|
-
allow: boolean;
|
|
4011
|
-
block: boolean;
|
|
4012
|
-
}, action?: "type-change" | "add" | "sync") => Promise<Array<"allowed" | "blocked">>;
|
|
4013
3921
|
};
|
|
4014
3922
|
|
|
4015
|
-
/**
|
|
4016
|
-
* Refusal for a camera type change that empties the camera's plate lists,
|
|
4017
|
-
* sent without the caller confirming it. The Settings form asks before it
|
|
4018
|
-
* sends; this is for any caller that did not.
|
|
4019
|
-
*/
|
|
4020
|
-
declare function cameraListClearConfirmation(lists: {
|
|
4021
|
-
allow: boolean;
|
|
4022
|
-
block: boolean;
|
|
4023
|
-
}): string;
|
|
4024
3923
|
declare function useSiteCameraController(): {
|
|
4025
3924
|
add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4026
3925
|
addBulk: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4027
3926
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4028
3927
|
updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4029
3928
|
deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4030
|
-
newCameraPlates: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4031
|
-
clearNewCamera: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4032
|
-
addNewCameraPlate: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4033
|
-
cameraPlates: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4034
|
-
clearCamera: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4035
|
-
addCameraPlate: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4036
3929
|
};
|
|
4037
3930
|
|
|
4038
3931
|
/**
|
|
@@ -5744,6 +5637,7 @@ declare function MPerson(value: TPerson): {
|
|
|
5744
5637
|
end: string | Date | undefined;
|
|
5745
5638
|
type: "resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant" | undefined;
|
|
5746
5639
|
email: string | undefined;
|
|
5640
|
+
password: string;
|
|
5747
5641
|
status: string;
|
|
5748
5642
|
nric: string | undefined;
|
|
5749
5643
|
remarks: string | undefined;
|
|
@@ -6137,25 +6031,6 @@ declare function useGuestManagementController(): {
|
|
|
6137
6031
|
deleteVisitorGuest: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6138
6032
|
};
|
|
6139
6033
|
|
|
6140
|
-
type OccupiedUnit = {
|
|
6141
|
-
_id: unknown;
|
|
6142
|
-
name: string;
|
|
6143
|
-
people: number;
|
|
6144
|
-
};
|
|
6145
|
-
type OccupiedLevel = {
|
|
6146
|
-
_id: unknown;
|
|
6147
|
-
name: string;
|
|
6148
|
-
people: number;
|
|
6149
|
-
units: OccupiedUnit[];
|
|
6150
|
-
};
|
|
6151
|
-
type OccupiedBlock = {
|
|
6152
|
-
_id: unknown;
|
|
6153
|
-
name: string;
|
|
6154
|
-
block: number | null;
|
|
6155
|
-
people: number;
|
|
6156
|
-
levels: OccupiedLevel[];
|
|
6157
|
-
};
|
|
6158
|
-
|
|
6159
6034
|
declare const site_people_namespace_collection = "site.people";
|
|
6160
6035
|
declare function usePersonRepo(): {
|
|
6161
6036
|
add: (value: TPerson, session?: ClientSession) => Promise<ObjectId>;
|
|
@@ -6201,16 +6076,6 @@ declare function usePersonRepo(): {
|
|
|
6201
6076
|
type?: ("resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant")[] | undefined;
|
|
6202
6077
|
unit?: string | undefined;
|
|
6203
6078
|
}, session?: ClientSession) => Promise<TPerson[]>;
|
|
6204
|
-
getOccupiedStructure: ({ site, type, status, block, level, }: {
|
|
6205
|
-
site: string | ObjectId;
|
|
6206
|
-
type?: ("resident" | "walk-in" | "drop-off" | "contractor" | "delivery" | "pick-up" | "guest" | "tenant")[] | undefined;
|
|
6207
|
-
status?: string | undefined;
|
|
6208
|
-
block?: string | undefined;
|
|
6209
|
-
level?: string | undefined;
|
|
6210
|
-
}) => Promise<{
|
|
6211
|
-
blocks: OccupiedBlock[];
|
|
6212
|
-
unplaced: any;
|
|
6213
|
-
}>;
|
|
6214
6079
|
getCompany: (search?: string, orgs?: string[]) => Promise<any[]>;
|
|
6215
6080
|
getPeopleByPlateNumber: (plateNumber: string) => Promise<TPerson[]>;
|
|
6216
6081
|
getPeopleByNRIC: ({ page, limit, nric, sort, site, }: {
|
|
@@ -6251,7 +6116,6 @@ declare function usePersonController(): {
|
|
|
6251
6116
|
getByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6252
6117
|
getPersonByPhoneNumber: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6253
6118
|
getPeopleByUnit: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6254
|
-
getOccupiedStructure: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6255
6119
|
getCompany: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6256
6120
|
getPeopleByPlateNumber: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6257
6121
|
getPeopleByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -12658,8 +12522,6 @@ declare const schemaDiscoverHidAmicoReader: Joi.ObjectSchema<any>;
|
|
|
12658
12522
|
declare const schemaHidAmicoVisitorImageParams: Joi.ObjectSchema<any>;
|
|
12659
12523
|
declare const schemaHidAmicoUserPinParams: Joi.ObjectSchema<any>;
|
|
12660
12524
|
declare const schemaHidAmicoUserPin: Joi.ObjectSchema<any>;
|
|
12661
|
-
declare const schemaHidAmicoUserPasswordParams: Joi.ObjectSchema<any>;
|
|
12662
|
-
declare const schemaHidAmicoUserPassword: Joi.ObjectSchema<any>;
|
|
12663
12525
|
declare const schemaHidAmicoUserCardParams: Joi.ObjectSchema<any>;
|
|
12664
12526
|
declare const schemaHidAmicoUserCardIdParams: Joi.ObjectSchema<any>;
|
|
12665
12527
|
declare const schemaHidAmicoAssignUserCard: Joi.ObjectSchema<any>;
|
|
@@ -12894,7 +12756,6 @@ declare function useHidAmicoRepo(): {
|
|
|
12894
12756
|
type?: string;
|
|
12895
12757
|
status?: string;
|
|
12896
12758
|
search?: string;
|
|
12897
|
-
subjectIds?: Array<string | ObjectId>;
|
|
12898
12759
|
}) => Promise<{
|
|
12899
12760
|
items: any[];
|
|
12900
12761
|
pages: number;
|
|
@@ -12915,14 +12776,6 @@ declare function useHidAmicoRepo(): {
|
|
|
12915
12776
|
registration?: string;
|
|
12916
12777
|
cardNo?: string;
|
|
12917
12778
|
}) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
12918
|
-
findIdentityBySubject: (value: {
|
|
12919
|
-
reader: string | ObjectId;
|
|
12920
|
-
person?: string | ObjectId;
|
|
12921
|
-
member?: string | ObjectId;
|
|
12922
|
-
serviceProvider?: string | ObjectId;
|
|
12923
|
-
user?: string | ObjectId;
|
|
12924
|
-
excludeIdentity?: string | ObjectId;
|
|
12925
|
-
}) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
12926
12779
|
findProfileIdentity: (reader: string | ObjectId, user: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
12927
12780
|
listActiveIdentities: (reader: string | ObjectId) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
12928
12781
|
findIdentitiesByHidUserIds: (reader: string | ObjectId, hidUserIds: Array<string | number>) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
@@ -13247,7 +13100,6 @@ declare function useHidAmicoService(): {
|
|
|
13247
13100
|
type?: string;
|
|
13248
13101
|
status?: string;
|
|
13249
13102
|
search?: string;
|
|
13250
|
-
subject?: string;
|
|
13251
13103
|
}) => Promise<{
|
|
13252
13104
|
items: any[];
|
|
13253
13105
|
pages: number;
|
|
@@ -13263,7 +13115,6 @@ declare function useHidAmicoService(): {
|
|
|
13263
13115
|
name: string;
|
|
13264
13116
|
hidUserTypeId: unknown;
|
|
13265
13117
|
facialEnrolled: boolean;
|
|
13266
|
-
passwordSet: boolean;
|
|
13267
13118
|
};
|
|
13268
13119
|
isAdministrator: boolean;
|
|
13269
13120
|
}[];
|
|
@@ -13372,48 +13223,6 @@ declare function useHidAmicoService(): {
|
|
|
13372
13223
|
facialEnrolled: boolean;
|
|
13373
13224
|
facialEnrolledAt: string;
|
|
13374
13225
|
}>;
|
|
13375
|
-
getProfileQr: (readerId: string, userId: string) => Promise<{
|
|
13376
|
-
readerId: string;
|
|
13377
|
-
userId: string;
|
|
13378
|
-
memberId: string;
|
|
13379
|
-
hidUserId: string;
|
|
13380
|
-
registration: string;
|
|
13381
|
-
readerName: string;
|
|
13382
|
-
portalName: string;
|
|
13383
|
-
qrEnabled: boolean;
|
|
13384
|
-
issued: boolean;
|
|
13385
|
-
qrValue: string;
|
|
13386
|
-
issuedAt: string;
|
|
13387
|
-
assigned: boolean | null;
|
|
13388
|
-
}>;
|
|
13389
|
-
issueProfileQr: (readerId: string, userId: string) => Promise<{
|
|
13390
|
-
readerId: string;
|
|
13391
|
-
userId: string;
|
|
13392
|
-
memberId: string;
|
|
13393
|
-
hidUserId: string;
|
|
13394
|
-
registration: string;
|
|
13395
|
-
readerName: string;
|
|
13396
|
-
portalName: string;
|
|
13397
|
-
qrEnabled: boolean;
|
|
13398
|
-
issued: boolean;
|
|
13399
|
-
qrValue: string;
|
|
13400
|
-
issuedAt: string;
|
|
13401
|
-
assigned: boolean | null;
|
|
13402
|
-
}>;
|
|
13403
|
-
deleteProfileQr: (readerId: string, userId: string) => Promise<{
|
|
13404
|
-
readerId: string;
|
|
13405
|
-
userId: string;
|
|
13406
|
-
memberId: string;
|
|
13407
|
-
hidUserId: string;
|
|
13408
|
-
registration: string;
|
|
13409
|
-
readerName: string;
|
|
13410
|
-
portalName: string;
|
|
13411
|
-
qrEnabled: boolean;
|
|
13412
|
-
issued: boolean;
|
|
13413
|
-
qrValue: string;
|
|
13414
|
-
issuedAt: string;
|
|
13415
|
-
assigned: boolean | null;
|
|
13416
|
-
}>;
|
|
13417
13226
|
setProfileFacial: (readerId: string, userId: string, image: Buffer, options?: {
|
|
13418
13227
|
timestamp?: number;
|
|
13419
13228
|
match?: boolean;
|
|
@@ -13512,21 +13321,6 @@ declare function useHidAmicoService(): {
|
|
|
13512
13321
|
hidUserId: number;
|
|
13513
13322
|
pinEnrolled: boolean;
|
|
13514
13323
|
}>;
|
|
13515
|
-
getUserPasswordStatus: (readerId: string, hidUserIdValue: string | number) => Promise<{
|
|
13516
|
-
readerId: string;
|
|
13517
|
-
hidUserId: number;
|
|
13518
|
-
passwordSet: boolean;
|
|
13519
|
-
}>;
|
|
13520
|
-
setUserPassword: (readerId: string, hidUserIdValue: string | number, password: string) => Promise<{
|
|
13521
|
-
readerId: string;
|
|
13522
|
-
hidUserId: number;
|
|
13523
|
-
passwordSet: boolean;
|
|
13524
|
-
}>;
|
|
13525
|
-
deleteUserPassword: (readerId: string, hidUserIdValue: string | number) => Promise<{
|
|
13526
|
-
readerId: string;
|
|
13527
|
-
hidUserId: number;
|
|
13528
|
-
passwordSet: boolean;
|
|
13529
|
-
}>;
|
|
13530
13324
|
setUserImage: (readerId: string, hidUserId: string | number, image: Buffer, options?: {
|
|
13531
13325
|
timestamp?: number;
|
|
13532
13326
|
match?: boolean;
|
|
@@ -13650,9 +13444,6 @@ declare function useHidAmicoController(): {
|
|
|
13650
13444
|
getUserPinStatus: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13651
13445
|
setUserPin: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13652
13446
|
deleteUserPin: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13653
|
-
getUserPasswordStatus: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13654
|
-
setUserPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13655
|
-
deleteUserPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13656
13447
|
getDoorState: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13657
13448
|
executeActions: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13658
13449
|
getConfiguration: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -13663,9 +13454,6 @@ declare function useHidAmicoController(): {
|
|
|
13663
13454
|
revokeVisitorQr: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13664
13455
|
getProfileFacial: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13665
13456
|
setProfileFacial: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13666
|
-
getProfileQr: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13667
|
-
issueProfileQr: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13668
|
-
deleteProfileQr: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13669
13457
|
setVisitorImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13670
13458
|
deleteVisitorImage: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
13671
13459
|
getIntercomStatus: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -14824,4 +14612,4 @@ declare function usePersonalEmergencyChainController(): {
|
|
|
14824
14612
|
update: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
14825
14613
|
};
|
|
14826
14614
|
|
|
14827
|
-
export { ANPRMode, APP_BASE_URLS, AUDIT_VALUE_MAX_LENGTH, AccessTypeProps, AppKey, AppServiceType, AssignCardConfig, BULK_CAMERA_COLUMNS, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCameraAccepted, BulkCameraOutcome, BulkCameraPlan, BulkCameraResult, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, CAMERA_ANPR_PERMISSIONS, CAMERA_CAPABILITIES, CAMERA_CAPABILITY_REASONS, CAMERA_MANAGE_ANY_PERMISSIONS, 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, CLIENT_ACTIONS, CLOCK_DRIFT_WARN_SECONDS, CONSOLE_AUDIT_LABELS, CONSOLE_PERMISSIONS, CONTRACTOR_TYPE_LABELS, CROSS_CLIENT_GRANT, CURRENT_TIME_ENDPOINT, Camera, CameraAddressInput, CameraCapability, CameraCapabilityContext, CameraCapabilityDescriptor, CameraCapabilityEntry, CameraCapabilityReason, CameraCapabilityState, CameraCapabilityTrace, CameraDevice, CameraFrame, CameraMembership, CameraStream, CameraTestStatus, CameraTransport, CameraType, ConsoleAuditAction, ConsoleAuditTarget, ConsoleGrant, DEFAULT_RING_SECONDS, DEFAULT_SITE_TIMEZONE, DEVICE_STATUS, DOBStatus, DUPLICATE_TERMS_VERSION_MESSAGE, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, E164, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GOVERNED_MODULES, GuestSort, GuestStatus, HID_CARD_VALUE_FACTOR, HID_PERMISSION_CATEGORIES, HID_UINT32_MAX, HID_UINT64_MAX, HidRawUint64, IAccessCard, IAccessCardTransaction, InviteActor, LIVE_ROLE, MAX_BULK_CAMERA_ROWS, MAX_CAMERA_CHANNEL, MAX_CAMERA_NAME_LENGTH, MAX_PERSONAL_EMERGENCY_CONTACTS, MAX_RING_SECONDS, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MConsoleAudit, MCustomer, MCustomerSite, MDocumentManagement, MEMBER_TYPES, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, MHidSipAccount, MHidSitePermissions, MIN_RING_SECONDS, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, MNotificationPreference, MODULE_GATE_MODE_DEFAULT, MODULE_LIST_GATE_DEFAULT, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolEmail, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPersonalEmergencyChain, 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, NOTIFY_ACCESS_FILTER_DEFAULT, NotificationAppSlug, NotificationCategory, NotificationChannel, NotificationModule, NotificationPreferenceView, NotificationService, ORG_MARKETPLACE_VENDOR_FIELD, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PATROL_EMAIL_MAX_LOGS, PATROL_EMAIL_MAX_PER_HOUR, PATROL_EMAIL_MAX_RECIPIENTS, PERSON_TYPES, PLATFORM_STAFF_MEMBER_TYPE, PLATFORM_STAFF_ROLE_TYPE, PROPERTY_MANAGEMENT_MEMBER_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PlatformTermsStatus, PostOrder, PostSort, PostStatus, QrTagProps, REALTIME_MAX_FANOUT, ResidentAppModuleKey, SELF_SERVICE_RESEND_COOLDOWN_MS, SELF_SIGNUP_PLATFORM, SELF_SIGNUP_STATUS, SELF_SIGNUP_TYPES, 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, TConsoleAudit, TConsoleAuditQuery, 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, THidPermissionUserBinding, THidPhysicalCardInput, THidPhysicalCardType$1 as THidPhysicalCardType, THidSipAccount, THidSitePermissions, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberModulesDeps, TMemberUpdateStatus, TMessagePreloved, TMiniRole, TModuleAccess, TModuleGateMode, TModuleImpact, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TNotification, TNotificationPreference, TNotificationPreferenceOff, TNotifyAccessContext, TNotifyAccessMode, TNotifyAccessReport, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOrgModulesDeps, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolEmail, TPatrolEmailCreatedBy, TPatrolEmailLogRef, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPersonalEmergencyChain, TPersonalEmergencyContact, 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, TRolePermissionHistoryEntry, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TSelfServiceEmailOccasion, TSelfServiceEmailRecord, TSelfServiceResendDecision, TSelfServiceResendFacts, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, TSite, TSiteCamera, TSiteDayBounds, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteModulesDeps, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TSubscriptionPlan, TSubscriptionPlanApplication, TUnitBilling, TUnits, TUpdateFormEntry, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationCode, TVerificationEvent, TVerificationMetadata, TVerificationMetadataV2, TVerificationOnboarding, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UNSTORED_COLUMNS, UseAccessManagementRepo, UserStatus, VERIFICATION_OPEN_STATUSES, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, allowedPlanApplications, attendanceSchema, attendanceSettingsSchema, buildSelfServiceEmailContext, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, callerAccountApproved, callerId, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthClaim, cameraHealthSummary, cameraListClearConfirmation, cameraManagePermissions, cameraProbeCacheKey, cameraTransports, canRevokeRefreshTokenFamily, categoriesForPermissions, categorySupportsChannel, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, consoleRoleAllows, consoleRoleAllowsAll, consoleSpellings, console_audit_namespace_collection, createManpowerRemarksDaily, customerSchema, customerSitePropertyFields, decideSelfServiceResend, decideServiceProviderInvite, decodeHidPacsCard, deniedModules, deriveBulletinStatus, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, emitNotificationCreated, emptyPersonalEmergencyChain, encodeHidPacsCard, entitledSiteScope, events_namespace_collection, expandModules, expiredBulletinSweepFilter, expiredVehicleSweepFilter, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, filterByAccess, formatCapabilityTrace, formatDahuaDate, getIO, getSessionIdFromRequest, grabWithSubStreamFallback, guests_namespace_collection, hasAnyCapability, hasAnyPermission, hasOrgInvitation, hasOrgOwnership, hasOrgSiteReach, hidRawUint64, holdsRole, incidentReport, incidentReportLog, incidents_namespace_collection, invitationOffersRole, isCameraEntitled, isDuplicateVersionError, isLikelySelfServiceEmail, isPatrolCctvCamera, isPlatformOwner, isPromoCodeExpired, isRelayPlayerUrl, isSafeRelativePath, isSuperAdmin, isTermsCurrent, isValidTimezone, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, maskNric, memberModulesHandlers, moduleDeniedForCaller, moduleGateEnforceKeys, moduleGateMode, moduleImpact, moduleListGateOn, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, normalizeAcceptedTerms, normalizeHidCardValue, notificationAccessReport, notificationCategory, notificationCategoryLabel, notificationEvents, notificationRoom, notifyAccessMode, occasionForStatus, occurrence_book_namespace_collection, online_forms_namespace_collection, orgLevelRoles, orgModulesHandlers, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseHidJsonLossless, parsePromoExpiry, parseSoftwareVersion, pickAuditFields, pickCustomerSiteProperties, planBulkCameraImport, platform_terms_namespace_collection, promoCodeRefusal, promoCodeSchema, promoCodeStatusSchema, promoCodeUpdate, promoCodeUpdateSchema, ptzEndpoint, publicCameraFields, readsAsApprovedAccount, recordConsoleAction, refuseServiceProviderInviteAction, registerCameraTransport, relayForRecorder, remarksSchema, renderPagePdf, requireConsolePermission, requirePlatformStaff, resetCameraTransports, residentAppModuleKeys, residentAppModulesSchema, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, resolveHidPhysicalCardValue, resolveInviteActor, resolveSiteTimezone, resolveStaffRole, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaConsoleAudit, 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, schemaHidAmicoUserPassword, schemaHidAmicoUserPasswordParams, schemaHidAmicoUserPin, schemaHidAmicoUserPinParams, schemaHidAmicoVisitorImageParams, schemaHidAmicoVisitorImageUploadQuery, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaHidPermissionScopeQuery, schemaHidSipAccountRequest, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, schemaNotificationPreference, schemaNotificationPreferenceOff, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolEmail, schemaPatrolEmailCreatedBy, schemaPatrolEmailLogRef, schemaPatrolEmailQuery, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPersonalEmergencyContact, schemaPlate, schemaPlatformTerms, schemaPost, schemaPostFavorite, schemaResendPatrolEmail, schemaResidentSelfSignUp, schemaSelfServiceVisitor, schemaSendPatrolEmail, 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, schemaUpdatePersonalEmergencyChain, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, selectHealthTargets, selfServiceEmailSubject, serviceProviderInviteLabel, sessionSchema, setIO, shiftSchema, siteDayBounds, siteModulesHandlers, siteSchema, site_people_namespace_collection, snapshotEndpoint, snapshotRefusalReason, staffMayBypass, stringifyHidJson, stripFacialImageMetadata, subscriptionPlanSchema, summariseBulkCameraPlan, 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, useConsoleAuditController, useConsoleAuditRepo, 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, usePatrolEmailController, usePatrolEmailRepo, usePatrolEmailService, usePatrolLogController, usePatrolLogRepo, usePatrolLogService, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePersonalEmergencyChainController, usePersonalEmergencyChainRepo, usePersonalEmergencyChainService, 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 };
|
|
14615
|
+
export { ANPRMode, APP_BASE_URLS, AUDIT_VALUE_MAX_LENGTH, AccessTypeProps, AppKey, AppServiceType, AssignCardConfig, BULK_CAMERA_COLUMNS, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCameraAccepted, BulkCameraOutcome, BulkCameraPlan, BulkCameraResult, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, CAMERA_ANPR_PERMISSIONS, CAMERA_CAPABILITIES, CAMERA_CAPABILITY_REASONS, CAMERA_MANAGE_ANY_PERMISSIONS, 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, CLIENT_ACTIONS, CLOCK_DRIFT_WARN_SECONDS, CONSOLE_AUDIT_LABELS, CONSOLE_PERMISSIONS, CONTRACTOR_TYPE_LABELS, CROSS_CLIENT_GRANT, CURRENT_TIME_ENDPOINT, Camera, CameraAddressInput, CameraCapability, CameraCapabilityContext, CameraCapabilityDescriptor, CameraCapabilityEntry, CameraCapabilityReason, CameraCapabilityState, CameraCapabilityTrace, CameraDevice, CameraFrame, CameraMembership, CameraStream, CameraTestStatus, CameraTransport, CameraType, ConsoleAuditAction, ConsoleAuditTarget, ConsoleGrant, DEFAULT_RING_SECONDS, DEFAULT_SITE_TIMEZONE, DEVICE_STATUS, DOBStatus, DUPLICATE_TERMS_VERSION_MESSAGE, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, E164, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GOVERNED_MODULES, GuestSort, GuestStatus, HID_CARD_VALUE_FACTOR, HID_PERMISSION_CATEGORIES, HID_UINT32_MAX, HID_UINT64_MAX, HidRawUint64, IAccessCard, IAccessCardTransaction, InviteActor, LIVE_ROLE, MAX_BULK_CAMERA_ROWS, MAX_CAMERA_CHANNEL, MAX_CAMERA_NAME_LENGTH, MAX_PERSONAL_EMERGENCY_CONTACTS, MAX_RING_SECONDS, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MConsoleAudit, MCustomer, MCustomerSite, MDocumentManagement, MEMBER_TYPES, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, MHidSipAccount, MHidSitePermissions, MIN_RING_SECONDS, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, MNotificationPreference, MODULE_GATE_MODE_DEFAULT, MODULE_LIST_GATE_DEFAULT, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolEmail, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPersonalEmergencyChain, 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, NOTIFY_ACCESS_FILTER_DEFAULT, NotificationAppSlug, NotificationCategory, NotificationChannel, NotificationModule, NotificationPreferenceView, NotificationService, ORG_MARKETPLACE_VENDOR_FIELD, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PATROL_EMAIL_MAX_LOGS, PATROL_EMAIL_MAX_PER_HOUR, PATROL_EMAIL_MAX_RECIPIENTS, PERSON_TYPES, PLATFORM_STAFF_MEMBER_TYPE, PLATFORM_STAFF_ROLE_TYPE, PROPERTY_MANAGEMENT_MEMBER_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PlatformTermsStatus, PostOrder, PostSort, PostStatus, QrTagProps, REALTIME_MAX_FANOUT, ResidentAppModuleKey, SELF_SERVICE_RESEND_COOLDOWN_MS, SELF_SIGNUP_PLATFORM, SELF_SIGNUP_STATUS, SELF_SIGNUP_TYPES, 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, TConsoleAudit, TConsoleAuditQuery, 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, THidPermissionUserBinding, THidPhysicalCardInput, THidPhysicalCardType$1 as THidPhysicalCardType, THidSipAccount, THidSitePermissions, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberModulesDeps, TMemberUpdateStatus, TMessagePreloved, TMiniRole, TModuleAccess, TModuleGateMode, TModuleImpact, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TNotification, TNotificationPreference, TNotificationPreferenceOff, TNotifyAccessContext, TNotifyAccessMode, TNotifyAccessReport, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOrgModulesDeps, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolEmail, TPatrolEmailCreatedBy, TPatrolEmailLogRef, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPersonalEmergencyChain, TPersonalEmergencyContact, 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, TRolePermissionHistoryEntry, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TSelfServiceEmailOccasion, TSelfServiceEmailRecord, TSelfServiceResendDecision, TSelfServiceResendFacts, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, TSite, TSiteCamera, TSiteDayBounds, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteModulesDeps, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TSubscriptionPlan, TSubscriptionPlanApplication, TUnitBilling, TUnits, TUpdateFormEntry, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationCode, TVerificationEvent, TVerificationMetadata, TVerificationMetadataV2, TVerificationOnboarding, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UNSTORED_COLUMNS, UseAccessManagementRepo, UserStatus, VERIFICATION_OPEN_STATUSES, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, allowedPlanApplications, attendanceSchema, attendanceSettingsSchema, buildSelfServiceEmailContext, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, callerAccountApproved, callerId, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthClaim, cameraHealthSummary, cameraManagePermissions, cameraProbeCacheKey, cameraTransports, canRevokeRefreshTokenFamily, categoriesForPermissions, categorySupportsChannel, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, consoleRoleAllows, consoleRoleAllowsAll, consoleSpellings, console_audit_namespace_collection, createManpowerRemarksDaily, customerSchema, customerSitePropertyFields, decideSelfServiceResend, decideServiceProviderInvite, decodeHidPacsCard, deniedModules, deriveBulletinStatus, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, emitNotificationCreated, emptyPersonalEmergencyChain, encodeHidPacsCard, entitledSiteScope, events_namespace_collection, expandModules, expiredBulletinSweepFilter, expiredVehicleSweepFilter, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, filterByAccess, formatCapabilityTrace, formatDahuaDate, getIO, getSessionIdFromRequest, grabWithSubStreamFallback, guests_namespace_collection, hasAnyCapability, hasAnyPermission, hasOrgInvitation, hasOrgOwnership, hasOrgSiteReach, hidRawUint64, holdsRole, incidentReport, incidentReportLog, incidents_namespace_collection, invitationOffersRole, isCameraEntitled, isDuplicateVersionError, isLikelySelfServiceEmail, isPatrolCctvCamera, isPlatformOwner, isPromoCodeExpired, isRelayPlayerUrl, isSafeRelativePath, isSuperAdmin, isTermsCurrent, isValidTimezone, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, maskNric, memberModulesHandlers, moduleDeniedForCaller, moduleGateEnforceKeys, moduleGateMode, moduleImpact, moduleListGateOn, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, normalizeAcceptedTerms, normalizeHidCardValue, notificationAccessReport, notificationCategory, notificationCategoryLabel, notificationEvents, notificationRoom, notifyAccessMode, occasionForStatus, occurrence_book_namespace_collection, online_forms_namespace_collection, orgLevelRoles, orgModulesHandlers, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseHidJsonLossless, parsePromoExpiry, parseSoftwareVersion, pickAuditFields, pickCustomerSiteProperties, planBulkCameraImport, platform_terms_namespace_collection, promoCodeRefusal, promoCodeSchema, promoCodeStatusSchema, promoCodeUpdate, promoCodeUpdateSchema, ptzEndpoint, publicCameraFields, readsAsApprovedAccount, recordConsoleAction, refuseServiceProviderInviteAction, registerCameraTransport, relayForRecorder, remarksSchema, renderPagePdf, requireConsolePermission, requirePlatformStaff, resetCameraTransports, residentAppModuleKeys, residentAppModulesSchema, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, resolveHidPhysicalCardValue, resolveInviteActor, resolveSiteTimezone, resolveStaffRole, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaConsoleAudit, 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, schemaPatrolEmail, schemaPatrolEmailCreatedBy, schemaPatrolEmailLogRef, schemaPatrolEmailQuery, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPersonalEmergencyContact, schemaPlate, schemaPlatformTerms, schemaPost, schemaPostFavorite, schemaResendPatrolEmail, schemaResidentSelfSignUp, schemaSelfServiceVisitor, schemaSendPatrolEmail, 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, schemaUpdatePersonalEmergencyChain, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, selectHealthTargets, selfServiceEmailSubject, serviceProviderInviteLabel, sessionSchema, setIO, shiftSchema, siteDayBounds, siteModulesHandlers, siteSchema, site_people_namespace_collection, snapshotEndpoint, snapshotRefusalReason, staffMayBypass, stringifyHidJson, stripFacialImageMetadata, subscriptionPlanSchema, summariseBulkCameraPlan, 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, useConsoleAuditController, useConsoleAuditRepo, 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, usePatrolEmailController, usePatrolEmailRepo, usePatrolEmailService, usePatrolLogController, usePatrolLogRepo, usePatrolLogService, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePersonalEmergencyChainController, usePersonalEmergencyChainRepo, usePersonalEmergencyChainService, 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 };
|