@7365admin1/core 3.32.2-staging.102 → 3.32.2-staging.105

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.
@@ -0,0 +1,46 @@
1
+ ---
2
+ "@7365admin1/core": minor
3
+ ---
4
+
5
+ CCTV reliability: cache the capability probe per channel, and stop reporting a
6
+ missing sub-stream as a dead camera.
7
+
8
+ Two defects in the camera proxy, both of which made one camera answer for
9
+ another.
10
+
11
+ **The capability probe was cached per recorder.** The key was `probe:<baseUrl>`,
12
+ so the first camera anyone opened decided `ptz` and `presets` for every channel
13
+ on that recorder until the TTL expired (default 900s). On this estate twelve
14
+ cameras are twelve channels on one device, and they are not all the same model.
15
+ The key is now `cameraProbeCacheKey(baseUrl, channel)` and every reader passes a
16
+ channel - `refreshProbe`, the health sweep, and the monitoring wall, whose own
17
+ de-duplication `Map` was keyed by recorder too and would have re-created the
18
+ same fault a layer above the cache. Cache lifetime and eviction are unchanged.
19
+
20
+ Only `ptz` and `presets` are channel-specific. `reachable`, `lockedOut`,
21
+ `softwareVersion` and `deviceType` are recorder facts that answer identically on
22
+ every channel, which is what `deviceInfo`, `playback` and `events` read, and a
23
+ test pins that so it stays true. The cost is at most one probe per channel per
24
+ TTL, and only on the deliberate single-camera status path - the wall and the
25
+ health sweep still never probe.
26
+
27
+ **A channel with no sub-stream failed exactly like a dead camera.** An
28
+ ONVIF-attached third-party camera frequently publishes no sub-stream, and the
29
+ recorder answers that channel with no picture, which surfaced as "The camera did
30
+ not return a picture." - indistinguishable from a camera that is off.
31
+ `getSnapshot` now goes through `grabWithSubStreamFallback`: the sub-stream
32
+ first, then exactly one main-stream attempt if and only if the failure is
33
+ `camera-no-picture`. The result carries `stream` and `fellBackToMain`, exposed
34
+ on the snapshot response as `X-Camera-Stream` and `X-Camera-Stream-Fallback`
35
+ alongside the existing `X-Camera-Snapshot-Cached`, so the fallback is explicit
36
+ rather than silent and a client can say "showing full resolution: this camera
37
+ has no low-bandwidth stream". A `nosub:<cameraId>` marker keeps the wasted
38
+ attempt to once per TTL, and a channel later given a sub-stream heals itself.
39
+
40
+ A refused credential, a timeout, a busy server, an oversized picture or a
41
+ missing ffmpeg never falls back - one attempt each, unchanged. Patrol evidence
42
+ (`hd: true`) already asks for the main stream and never enters the fallback.
43
+
44
+ Per-camera stream configuration is the better long-term answer but needs a
45
+ schema field, a form, an API surface and a migration for the existing cameras;
46
+ the automatic fallback needs no data change and is raised as a follow-up.
@@ -0,0 +1,104 @@
1
+ ---
2
+ "@7365admin1/core": minor
3
+ ---
4
+
5
+ Stop the dashboards reporting figures nothing measured, and stop a recorder
6
+ socket being reported as camera health.
7
+
8
+ Five values were being returned in a shape that made "we measured this" and "we
9
+ never measured this" indistinguishable. Each is now either computed from real
10
+ data or returned as an explicit `null` with a reason a client can show.
11
+
12
+ **Patrol Compliance showed 100% on a site with no patrol data.**
13
+ `complianceRate` fell back to `100` when the checkpoint total was 0, so a site
14
+ with no patrol logs drew the same tile a perfect week draws - and a failed
15
+ request drew 0%. `calculateComplianceRate` now returns `null` when no checkpoint
16
+ was due, alongside `patrolCompliance.checkpointsDue` and an
17
+ `unavailableReason`. The Virtual Patrol process itself is untouched; this is
18
+ reporting only.
19
+
20
+ **"0 high severity" was a hard-coded literal**, at `openIncidents.highSeverity`
21
+ in both the security and property dashboards, on every site, on every day. It
22
+ read as "we checked your incidents and none of them are serious". Incident
23
+ reports record no severity at all - `TIncidentReport` has no severity, priority
24
+ or criticality field, and the only `highPriority` flags in this package are on
25
+ work orders and feedbacks - so there is nothing to count. It now returns `null`
26
+ with `highSeverityUnavailableReason`. `highSeverityIncidentCount` counts rather
27
+ than hard-returning `null`, so the tile starts telling the truth on its own the
28
+ day the incident form records a severity. Nothing is guessed in the meantime.
29
+
30
+ **The trend percentage compared the wrong period, in the wrong timezone.** The
31
+ `+/-%` beside every KPI tile was always today-vs-yesterday even on the Week and
32
+ Month views, so a month's count sat next to a yesterday comparison, unlabelled.
33
+ And the day boundary came from `new Date()` + `setHours(0,0,0,0)` - the HOST's
34
+ midnight - while `formatEndDate` and the period range beside it force
35
+ Asia/Singapore. On a UTC container the two halves disagree by eight hours:
36
+ "today" silently loses SGT 00:00-08:00 while "yesterday" keeps its full 24, so
37
+ the comparison was biased before any data was counted.
38
+
39
+ `getPeriodRange` / `getPreviousPeriodRange` (new,
40
+ `src/utils/dashboard-metrics.util.ts`) state Asia/Singapore explicitly and take
41
+ an injectable clock. Week now compares against the previous ISO week and month
42
+ against the previous month, in all three dashboards plus the facility-booking
43
+ tile. The boundary is correct whatever the host is set to; the host's own `TZ`
44
+ still wants reading by someone with DigitalOcean access, but only to size the
45
+ damage already done.
46
+
47
+ **A missing prior period now yields no percentage.**
48
+ `calculatePercentageChange` returned `100` when the prior period was empty and
49
+ `0` when both were empty, so a first-ever record read as growth and a site where
50
+ nothing has ever happened read as measured stability. Both now return `null`.
51
+
52
+ **"Supply Alert" is not an alert.** The query is `sort by qty ascending, limit
53
+ 3` with no threshold, because `site.supplies` records no stock level to compare
54
+ against - no `minQty`, no `reorderLevel`, no `threshold`, on any model in this
55
+ package. 900 gloves appeared under a heading that said "alert". No threshold is
56
+ invented: the payload now carries `basis: "lowest-quantity"` and
57
+ `thresholdUnavailableReason` so no client can present the list as a low-stock
58
+ warning. The client already relabels the tile "Lowest Stock".
59
+
60
+ **Camera health was a socket on the recorder, presented as the camera's.**
61
+ `probeDevice` is a bare TCP connect to the recorder's RTSP port, cached per
62
+ recorder. That caching is deliberate and worth keeping - twelve channels on one
63
+ device is one connect, not twelve - but it means one dead camera among twelve
64
+ stayed invisible (the recorder still answers, so every channel returned
65
+ `reachable: true`, `health: "ok"`, `reason: null`), and a relay outage read as
66
+ twelve healthy tiles because the relay is never probed.
67
+
68
+ A true per-camera liveness check is not available on this path: it would mean an
69
+ authenticated per-channel RTSP frame grab for every tile on every sweep, which
70
+ is device contact this change is in no position to make or to test and is enough
71
+ of it to reach the recorder's own lockout. So none is faked. Every health answer
72
+ now carries `cameraHealthClaim` - `verified` (`"recorder-video-port"` or
73
+ `"nothing"`), a `verifiedDescription` sentence, and `cameraVerified` /
74
+ `relayVerified` as explicit `null`s - so the response states exactly what was
75
+ checked and cannot be read as a stronger claim. `health` and `reachable` keep
76
+ their existing values and meanings, so the web wall (which already labels this
77
+ "Recorder responding") and the mobile monitoring screen are unaffected. A camera
78
+ that resolves to no recorder reports `"nothing"` rather than a check that
79
+ failed, because no request left the server.
80
+
81
+ Nothing else in the health descriptor overstates itself: `firmwareVersion`,
82
+ `deviceTime` and `driftSeconds` already return `null` with
83
+ `detailUnavailableReason`, and capabilities already carry an explicit
84
+ `"unknown"` state with a reason.
85
+
86
+ **Response contract:** `patrolCompliance.count`, `openIncidents.highSeverity`
87
+ and every tile's `percentage` may now be `null`. Checked against the current
88
+ published client rather than assumed: `DashboardMain.vue` coerces through
89
+ `toNumber(value ?? 0)`, so nothing crashes and nothing prints "null". A `null`
90
+ percentage is coerced to 0, which `v-if="card.percentage"` treats as falsy, so
91
+ the trend pill correctly disappears - the intended behaviour, for free. But a
92
+ `null` compliance rate still draws "0%" and a `null` high-severity count still
93
+ draws "0 high severity" until the layer renders the not-available. So on a site
94
+ with no patrol data the tile moves from a fabricated 100% to a fabricated 0%
95
+ until that lands; both are wrong, and the API is now the half that is right.
96
+ The client-side half is `layer-common` #1229 (open).
97
+
98
+ Dead code removed as a consequence: the local `formatEndDate` and
99
+ `getSiteDayRange` in `new-dashboard.repo.ts` have no remaining callers.
100
+
101
+ Deliberately not changed: the duplicate current-period aggregations (the trend's
102
+ current-side query now matches the tile's own count query and could be dropped,
103
+ but that is an optimisation, not a correctness fix); the Dahua URL convention;
104
+ and the disabled device-control capabilities, which stay off.
package/dist/index.d.ts CHANGED
@@ -3091,6 +3091,75 @@ declare const CAMERA_REQUEST_TIMEOUT_MS = 8000;
3091
3091
  * watching one camera must cost ONE device request, not N.
3092
3092
  */
3093
3093
  declare const CAMERA_SNAPSHOT_CACHE_SECONDS = 2;
3094
+ /**
3095
+ * The cache key for one device capability probe.
3096
+ *
3097
+ * **The channel belongs in this key and must stay in it.** The probe's `ptz` and
3098
+ * `presets` answers come from a query issued against ONE channel (V3.37 §8.1.5
3099
+ * takes a channel number), so keying on the recorder alone lets the first camera
3100
+ * anybody opens decide whether every other camera on that recorder pans. On a
3101
+ * recorder whose channels are all the same model that is invisible; on a mixed
3102
+ * -brand NVR — a Dahua recorder normalising Bosch, Hikvision and unbranded
3103
+ * cameras into channels — it is wrong in both directions at once: pan controls
3104
+ * offered on a fixed bullet, and a real PTZ camera told it cannot move.
3105
+ *
3106
+ * The recorder-level facts in the same probe (`reachable`, `lockedOut`,
3107
+ * firmware) are identical on every channel, so per-channel keying costs at most
3108
+ * one probe per channel per TTL and changes none of those answers.
3109
+ */
3110
+ declare function cameraProbeCacheKey(baseUrl: string, channel: number): string;
3111
+ /** Which stream a still actually came off. */
3112
+ type CameraStream = "main" | "sub";
3113
+ type CameraFrame = {
3114
+ buffer: Buffer;
3115
+ stream: CameraStream;
3116
+ /** The sub-stream was asked for and only the main stream answered. */
3117
+ fellBackToMain: boolean;
3118
+ };
3119
+ /**
3120
+ * How long "this channel publishes no sub-stream" is remembered, in seconds.
3121
+ *
3122
+ * The first still off such a channel costs two ffmpeg runs — the sub-stream
3123
+ * attempt that finds nothing, then the main-stream fallback. Remembering the
3124
+ * answer keeps every later still down to one. It expires on its own, so a
3125
+ * channel that is later given a sub-stream on the recorder heals without anyone
3126
+ * clearing a cache.
3127
+ */
3128
+ declare const CAMERA_NO_SUB_STREAM_TTL_SECONDS = 900;
3129
+ /**
3130
+ * One still, off the sub-stream if the channel has one and off the main stream
3131
+ * if it does not.
3132
+ *
3133
+ * ## Why this exists
3134
+ *
3135
+ * A wall tile and the snapshot endpoint ask for `subtype=1`, the low-bitrate
3136
+ * sub-stream. A third-party camera attached to the recorder over ONVIF
3137
+ * frequently does not publish one, and the recorder answers that channel with no
3138
+ * video at all — which arrives here as `camera-no-picture`, **the same failure a
3139
+ * dead camera produces**. An operator could not tell a working camera with no
3140
+ * sub-stream from a broken one, and neither could anyone reading a log.
3141
+ *
3142
+ * So a missing sub-stream falls back to the main stream ONCE, and the caller is
3143
+ * told which stream it got. Two different facts, two different answers.
3144
+ *
3145
+ * **Only `camera-no-picture` falls back.** A refused credential, a timeout, a
3146
+ * missing ffmpeg or a busy server are answers in their own right, and retrying a
3147
+ * busy server on the main stream would spend the one grab slot that was already
3148
+ * refused.
3149
+ *
3150
+ * **The fallback is explicit, never silent** — `fellBackToMain` travels with the
3151
+ * picture — because a main-stream frame is a full-resolution one, and a wall of
3152
+ * tiles quietly promoting itself to full resolution is a bandwidth change nobody
3153
+ * asked for. `wanted: 0` (patrol evidence) never enters here.
3154
+ *
3155
+ * `grab` is injected, so this is testable without contacting any device.
3156
+ */
3157
+ declare function grabWithSubStreamFallback(params: {
3158
+ wanted: 0 | 1;
3159
+ grab: (subtype: 0 | 1) => Promise<Buffer>;
3160
+ /** Called when, and only when, the sub-stream was found to be absent. */
3161
+ onSubStreamMissing?: () => void;
3162
+ }): Promise<CameraFrame>;
3094
3163
  /**
3095
3164
  * Fields of a camera record that may cross the wire.
3096
3165
  *
@@ -3158,6 +3227,51 @@ declare function wallConfig(env?: Record<string, string | undefined>): {
3158
3227
  * bounded by `maxTiles` and this is the entire semantics needed.
3159
3228
  */
3160
3229
  declare function mapWithLimit<T, R>(items: Array<T>, limit: number, worker: (item: T) => Promise<R>): Promise<Array<R>>;
3230
+ /**
3231
+ * What the health check ACTUALLY verified — attached to every health answer so
3232
+ * the answer cannot be read as a stronger claim than the check that produced it.
3233
+ *
3234
+ * `probeDevice` is a bare TCP connect to the RECORDER's RTSP port, cached per
3235
+ * recorder. That is a deliberate and good property — twelve channels on one
3236
+ * device is one connect, not twelve — but it means the reachability half of a
3237
+ * camera's health has never been about the camera:
3238
+ *
3239
+ * 1. **One dead camera among twelve is invisible.** The recorder still answers,
3240
+ * so every channel on it comes back `reachable: true`, `health: "ok"`,
3241
+ * `reason: null`.
3242
+ * 2. **A relay outage reads as perfect health.** The picture reaches a browser
3243
+ * through the relay player, which this probe never touches. Recorder up plus
3244
+ * relay down is twelve green tiles showing nothing.
3245
+ *
3246
+ * A true per-camera liveness check is not available on this path. It would mean
3247
+ * an authenticated per-channel RTSP frame grab against the recorder for every
3248
+ * tile on every sweep — device contact this change is not in a position to make
3249
+ * or to test, and enough of it to reach the recorder's own lockout. So nothing is
3250
+ * faked: the claim is narrowed to exactly what the socket proved, and the two
3251
+ * things that were silently implied are returned as explicit not-availables.
3252
+ *
3253
+ * The web wall already labels this "Recorder responding" rather than "Camera
3254
+ * healthy" (`layer-common` `camera-wall.ts`), and `health` / `reachable` keep
3255
+ * their existing values and meanings so that wall and the mobile monitoring
3256
+ * screen are unaffected. What is added is the scope, in the response, so no
3257
+ * future client has to know the convention from documentation to get it right.
3258
+ */
3259
+ type TCameraHealthClaim = {
3260
+ /**
3261
+ * The only thing contacted. Never the camera, never the relay — and
3262
+ * `"nothing"` when the camera does not resolve to a recorder and no request
3263
+ * left this server at all, which is not the same as a check that failed.
3264
+ */
3265
+ verified: "recorder-video-port" | "nothing";
3266
+ /** Sent to a client verbatim. Present whether the probe passed, failed or never ran. */
3267
+ verifiedDescription: string;
3268
+ /** Not measured on this path — no per-camera signal exists here. */
3269
+ cameraVerified: null;
3270
+ /** Not measured on this path — the relay carries the picture and is not probed. */
3271
+ relayVerified: null;
3272
+ };
3273
+ /** `null` means the probe never ran, which is a different answer from `false`. */
3274
+ declare function cameraHealthClaim(reachable: boolean | null): TCameraHealthClaim;
3161
3275
 
3162
3276
  /**
3163
3277
  * What a camera can actually do RIGHT NOW, and which transport would do it.
@@ -3541,6 +3655,8 @@ declare function useCameraViewService(): {
3541
3655
  }) => Promise<{
3542
3656
  buffer: Buffer;
3543
3657
  cached: boolean;
3658
+ stream: "sub" | "main";
3659
+ fellBackToMain: boolean;
3544
3660
  }>;
3545
3661
  captureSnapshot: (params: {
3546
3662
  cameraId: string;
@@ -3553,9 +3669,13 @@ declare function useCameraViewService(): {
3553
3669
  cameraId: string;
3554
3670
  userId?: string;
3555
3671
  }) => Promise<{
3672
+ reason: string;
3673
+ verified: "recorder-video-port" | "nothing";
3674
+ verifiedDescription: string;
3675
+ cameraVerified: null;
3676
+ relayVerified: null;
3556
3677
  reachable: boolean;
3557
3678
  health: "unsupported";
3558
- reason: string;
3559
3679
  camera: Record<string, any>;
3560
3680
  snapshotSupported: boolean;
3561
3681
  capabilities: CameraCapabilityDescriptor;
@@ -3564,6 +3684,10 @@ declare function useCameraViewService(): {
3564
3684
  driftSeconds: null;
3565
3685
  detailUnavailableReason: string | null;
3566
3686
  } | {
3687
+ verified: "recorder-video-port" | "nothing";
3688
+ verifiedDescription: string;
3689
+ cameraVerified: null;
3690
+ relayVerified: null;
3567
3691
  reachable: boolean;
3568
3692
  health: "unreachable" | "ok" | "drifted";
3569
3693
  reason: string | null;
@@ -3601,9 +3725,13 @@ declare function useCameraViewService(): {
3601
3725
  cameraIds: Array<string>;
3602
3726
  }) => Promise<{
3603
3727
  cameras: ({
3728
+ reason: string;
3729
+ verified: "recorder-video-port" | "nothing";
3730
+ verifiedDescription: string;
3731
+ cameraVerified: null;
3732
+ relayVerified: null;
3604
3733
  reachable: boolean;
3605
3734
  health: "unsupported";
3606
- reason: string;
3607
3735
  capabilities: CameraCapabilityDescriptor;
3608
3736
  firmwareVersion: null;
3609
3737
  deviceTime: null;
@@ -3612,6 +3740,10 @@ declare function useCameraViewService(): {
3612
3740
  lastFrameAt: string | null;
3613
3741
  unavailableReason: string | null;
3614
3742
  } | {
3743
+ verified: "recorder-video-port" | "nothing";
3744
+ verifiedDescription: string;
3745
+ cameraVerified: null;
3746
+ relayVerified: null;
3615
3747
  reachable: boolean;
3616
3748
  health: "unreachable" | "ok" | "drifted";
3617
3749
  reason: string | null;
@@ -7321,23 +7453,26 @@ declare function useNewDashboardRepo(): {
7321
7453
  openWorkOrder: {
7322
7454
  count: any;
7323
7455
  inProgress: any;
7324
- percentage: number;
7456
+ percentage: number | null;
7325
7457
  };
7326
7458
  openIncidents: {
7327
7459
  count: any;
7328
- highSeverity: number;
7329
- percentage: number;
7460
+ highSeverity: number | null;
7461
+ highSeverityUnavailableReason: string;
7462
+ percentage: number | null;
7330
7463
  };
7331
7464
  visitors: {
7332
7465
  count: any;
7333
7466
  currentlyOnSite: number;
7334
- percentage: number;
7467
+ percentage: number | null;
7335
7468
  };
7336
7469
  patrolCompliance: {
7337
- count: number;
7470
+ count: number | null;
7471
+ checkpointsDue: any;
7472
+ unavailableReason: string | null;
7338
7473
  missedCheckpoints: any;
7339
7474
  missed: any;
7340
- percentage: number;
7475
+ percentage: number | null;
7341
7476
  };
7342
7477
  activePatrolItems: {
7343
7478
  id: string;
@@ -7352,17 +7487,18 @@ declare function useNewDashboardRepo(): {
7352
7487
  openWorkOrder: {
7353
7488
  count: any;
7354
7489
  inProgress: any;
7355
- percentage: number;
7490
+ percentage: number | null;
7356
7491
  };
7357
7492
  openIncidents: {
7358
7493
  count: any;
7359
- highSeverity: number;
7360
- percentage: number;
7494
+ highSeverity: number | null;
7495
+ highSeverityUnavailableReason: string;
7496
+ percentage: number | null;
7361
7497
  };
7362
7498
  visitors: {
7363
7499
  count: any;
7364
7500
  currentlyOnSite: number;
7365
- percentage: number;
7501
+ percentage: number | null;
7366
7502
  };
7367
7503
  facilityBooking: {
7368
7504
  count: any;
@@ -7379,7 +7515,7 @@ declare function useNewDashboardRepo(): {
7379
7515
  Rejected: number;
7380
7516
  Cancelled: number;
7381
7517
  };
7382
- percentage: number;
7518
+ percentage: number | null;
7383
7519
  };
7384
7520
  workOrderStatus: {
7385
7521
  pending: number;
@@ -7398,19 +7534,21 @@ declare function useNewDashboardRepo(): {
7398
7534
  openWorkOrder: {
7399
7535
  count: any;
7400
7536
  inProgress: any;
7401
- percentage: number;
7537
+ percentage: number | null;
7402
7538
  };
7403
7539
  supplyAlert: {
7404
7540
  items: {
7405
7541
  name: any;
7406
7542
  qty: any;
7407
7543
  }[];
7544
+ basis: "lowest-quantity";
7545
+ thresholdUnavailableReason: string;
7408
7546
  };
7409
7547
  taskCompleted: {
7410
7548
  completed: any;
7411
7549
  total: any;
7412
7550
  inProgress: any;
7413
- percentage: number;
7551
+ percentage: number | null;
7414
7552
  };
7415
7553
  }>;
7416
7554
  getServiceWeeklyActivity: ({ site, serviceType, period, }: {
@@ -9094,6 +9232,7 @@ declare function MFormEntry(value: TFormEntry): {
9094
9232
  deletedAt: Date | null;
9095
9233
  };
9096
9234
  interface residentFormEntry {
9235
+ formType?: string;
9097
9236
  typeOfForm: string;
9098
9237
  unitNumber: string;
9099
9238
  status: string;
@@ -10598,4 +10737,4 @@ declare function useNotificationPreferenceController(): {
10598
10737
  update: (req: Request, res: Response, next: NextFunction) => Promise<void>;
10599
10738
  };
10600
10739
 
10601
- 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, DUPLICATE_TERMS_VERSION_MESSAGE, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, HID_CARD_VALUE_FACTOR, HID_PERMISSION_CATEGORIES, IAccessCard, IAccessCardTransaction, InviteActor, MAX_CAMERA_CHANNEL, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, MHidSipAccount, MHidSitePermissions, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, MNotificationPreference, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPlatformTerms, MPost, MPostFavorite, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MSubscriptionPlan, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, NOTIFICATION_CATEGORIES, NOTIFICATION_CHANNELS, NOTIFICATION_CHANNEL_LABELS, NOTIFICATION_NAMESPACE, NotificationAppSlug, NotificationCategory, NotificationChannel, NotificationModule, NotificationPreferenceView, NotificationService, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PERSON_TYPES, PROPERTY_MANAGEMENT_MEMBER_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PlatformTermsStatus, PostOrder, PostSort, PostStatus, QrTagProps, REALTIME_MAX_FANOUT, ResidentAppModuleKey, SERVICE_PROVIDER_INVITE_LABELS, SERVICE_PROVIDER_INVITE_TRANSITIONS, SERVICE_PROVIDER_SIGN_IN_SUBJECT, SERVICE_PROVIDER_SIGN_IN_TYPE, SERVICE_PROVIDER_SIGN_UP_SUBJECT, SERVICE_PROVIDER_SIGN_UP_TYPE, SOFTWARE_VERSION_ENDPOINT, ServiceProviderInviteAction, ServiceProviderInviteDecision, ServiceProviderInviteFacts, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, 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, THidAmicoGatewayJob, THidAmicoIdentity, THidAmicoPhysicalCard, THidAmicoReader, THidPermissionAssignment, THidPermissionCategory, THidPhysicalCardInput, THidPhysicalCardType$1 as THidPhysicalCardType, THidSipAccount, THidSitePermissions, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMessagePreloved, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TNotification, TNotificationPreference, TNotificationPreferenceOff, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPlatformTerms, TPost, TPostFavorite, TPrice, TPriceType, TPromoCode, TPromoTier, TRANSPORT_DEVICE_HTTP, TRANSPORT_RELAY_PLAYER, TRANSPORT_RTSP_FRAME, TRecipientOfComplaint, TRemarks, TResident, TResidentAppModules, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TSubscriptionPlan, TSubscriptionPlanApplication, TUnitBilling, TUnits, TUpdateFormEntry, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationEvent, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VERIFICATION_OPEN_STATUSES, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, allowedPlanApplications, attendanceSchema, attendanceSettingsSchema, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthSummary, cameraManagePermissions, cameraTransports, categoriesForPermissions, categorySupportsChannel, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, createManpowerRemarksDaily, customerSchema, decideServiceProviderInvite, decodeHidPacsCard, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, emitNotificationCreated, encodeHidPacsCard, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, formatCapabilityTrace, formatDahuaDate, getIO, guests_namespace_collection, hasAnyCapability, hasAnyPermission, incidentReport, incidentReportLog, incidents_namespace_collection, isCameraEntitled, isDuplicateVersionError, isPatrolCctvCamera, isRelayPlayerUrl, isSuperAdmin, isTermsCurrent, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, normalizeAcceptedTerms, normalizeHidCardValue, notificationCategory, notificationCategoryLabel, notificationEvents, notificationRoom, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseSoftwareVersion, platform_terms_namespace_collection, promoCodeSchema, ptzEndpoint, publicCameraFields, refuseServiceProviderInviteAction, registerCameraTransport, relayForRecorder, remarksSchema, resetCameraTransports, residentAppModuleKeys, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, resolveHidPhysicalCardValue, resolveInviteActor, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCreateNotification, schemaCustomerSite, schemaDiscoverHidAmicoReader, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoAssignUserCard, schemaHidAmicoConfiguration, schemaHidAmicoEnrollUserCard, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSiteIdParams, schemaHidAmicoSync, schemaHidAmicoUserCardIdParams, schemaHidAmicoUserCardParams, schemaHidAmicoUserImageParams, schemaHidAmicoUserImageUploadQuery, schemaHidAmicoUserPin, schemaHidAmicoUserPinParams, schemaHidAmicoVisitorImageParams, schemaHidAmicoVisitorImageUploadQuery, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaHidPermissionScopeQuery, schemaHidSipAccountRequest, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, schemaNotificationPreference, schemaNotificationPreferenceOff, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPlatformTerms, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSignNfcPatrolLog, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBidPreloved, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFolderManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateHidAmicoIdentity, schemaUpdateHidAmicoReader, schemaUpdateHidSitePermissions, schemaUpdateIncidentReport, schemaUpdateNotification, schemaUpdateNotificationPreference, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, serviceProviderInviteLabel, sessionSchema, setIO, shiftSchema, siteSchema, site_people_namespace_collection, snapshotEndpoint, snapshotRefusalReason, subscriptionPlanSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBidPrelovedController, useBidPrelovedRepo, useBidPrelovedService, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCameraViewController, useCameraViewService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, useChatPrelovedService, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useFormEntryController, useFormEntryRepo, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useHidAmicoController, useHidAmicoRepo, useHidAmicoService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useMemberService, useNewDashboardController, useNewDashboardRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useNotificationController, useNotificationPreferenceController, useNotificationPreferenceRepo, useNotificationPreferenceService, useNotificationRepo, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolLogService, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePlatformTermsController, usePlatformTermsRepo, usePlatformTermsService, usePostFavoriteController, usePostFavoriteRepo, usePostFavoriteService, usePostPrelovedController, usePostPrelovedRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRedDotPaymentController, useRedDotPaymentRepo, useRedDotPaymentSvc, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleControllerV2, useRoleRepo, useRoleRepoV2, useRoleServiceV2, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderInviteController, useServiceProviderInviteService, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubcategoryPrelovedController, useSubcategoryPrelovedRepo, useSubscriptionController, useSubscriptionPlanController, useSubscriptionPlanRepo, useSubscriptionRepo, useSubscriptionService, useUserController, useUserControllerV2, useUserRepo, useUserRepoV2, useUserService, useUserServiceV2, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationControllerV2, useVerificationRepo, useVerificationRepoV2, useVerificationService, useVerificationServiceV2, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitorPersonRepo, visitorPersonService, visitorType, visitors_namespace_collection, wallConfig, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
10740
+ export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, CAMERA_ANPR_PERMISSIONS, CAMERA_CAPABILITIES, CAMERA_CAPABILITY_REASONS, CAMERA_NOT_PATROL_OR_CCTV, CAMERA_NO_SUB_STREAM_TTL_SECONDS, CAMERA_PTZ_PERMISSIONS, CAMERA_REQUEST_TIMEOUT_MS, CAMERA_RTSP_TIMEOUT_MS, CAMERA_SETUP_PERMISSIONS, CAMERA_SNAPSHOT_CACHE_SECONDS, CAMERA_SNAPSHOT_MAX_BYTES, CAMERA_TEST_MIN_INTERVAL_SECONDS, CAMERA_TEST_ROUND_LIMIT, CAMERA_TEST_ROUND_SECONDS, CAMERA_TYPE_ANPR, CAMERA_TYPE_IP, CAMERA_VIEW_PERMISSIONS, CLOCK_DRIFT_WARN_SECONDS, CURRENT_TIME_ENDPOINT, Camera, CameraAddressInput, CameraCapability, CameraCapabilityContext, CameraCapabilityDescriptor, CameraCapabilityEntry, CameraCapabilityReason, CameraCapabilityState, CameraCapabilityTrace, CameraDevice, CameraFrame, CameraMembership, CameraStream, CameraTestStatus, CameraTransport, CameraType, DEVICE_STATUS, DOBStatus, DUPLICATE_TERMS_VERSION_MESSAGE, DayOfWeek, DeviceHttpTarget, DeviceProbeResult, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, HID_CARD_VALUE_FACTOR, HID_PERMISSION_CATEGORIES, IAccessCard, IAccessCardTransaction, InviteActor, MAX_CAMERA_CHANNEL, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, MHidSipAccount, MHidSitePermissions, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MNotification, MNotificationPreference, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPlatformTerms, MPost, MPostFavorite, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MSubscriptionPlan, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, NOTIFICATION_CATEGORIES, NOTIFICATION_CHANNELS, NOTIFICATION_CHANNEL_LABELS, NOTIFICATION_NAMESPACE, NotificationAppSlug, NotificationCategory, NotificationChannel, NotificationModule, NotificationPreferenceView, NotificationService, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PATROL_CCTV_CAMERA_FILTER, PERSON_TYPES, PROPERTY_MANAGEMENT_MEMBER_TYPES, PStatus, PTZ_ALLOWED_ACTIONS, PTZ_ALLOWED_CODES, Period, PersonStatus, PersonType, PersonTypes, PlatformTermsStatus, PostOrder, PostSort, PostStatus, QrTagProps, REALTIME_MAX_FANOUT, ResidentAppModuleKey, SERVICE_PROVIDER_INVITE_LABELS, SERVICE_PROVIDER_INVITE_TRANSITIONS, SERVICE_PROVIDER_SIGN_IN_SUBJECT, SERVICE_PROVIDER_SIGN_IN_TYPE, SERVICE_PROVIDER_SIGN_UP_SUBJECT, SERVICE_PROVIDER_SIGN_UP_TYPE, SOFTWARE_VERSION_ENDPOINT, ServiceProviderInviteAction, ServiceProviderInviteDecision, ServiceProviderInviteFacts, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAppServiceType, TApprovedBy, TApprover, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBidPreloved, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCameraHealthClaim, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoGatewayJob, THidAmicoIdentity, THidAmicoPhysicalCard, THidAmicoReader, THidPermissionAssignment, THidPermissionCategory, THidPhysicalCardInput, THidPhysicalCardType$1 as THidPhysicalCardType, THidSipAccount, THidSitePermissions, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMessagePreloved, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TNotification, TNotificationPreference, TNotificationPreferenceOff, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPlatformTerms, TPost, TPostFavorite, TPrice, TPriceType, TPromoCode, TPromoTier, TRANSPORT_DEVICE_HTTP, TRANSPORT_RELAY_PLAYER, TRANSPORT_RTSP_FRAME, TRecipientOfComplaint, TRemarks, TResident, TResidentAppModules, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TSubscriptionPlan, TSubscriptionPlanApplication, TUnitBilling, TUnits, TUpdateFormEntry, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationEvent, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VERIFICATION_OPEN_STATUSES, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, allowedPlanApplications, attendanceSchema, attendanceSettingsSchema, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, cameraBaseUrl, cameraCapabilitiesFor, cameraDevices, cameraGrant, cameraHealthClaim, cameraHealthSummary, cameraManagePermissions, cameraProbeCacheKey, cameraTransports, categoriesForPermissions, categorySupportsChannel, chatPrelovedEvents, chatSchema, clampPtzSpeed, clockDriftSeconds, createManpowerRemarksDaily, customerSchema, decideServiceProviderInvite, decodeHidPacsCard, deriveCameraHost, describeCameraCapabilities, designationsSchema, deviceControlEnabled, deviceHttpEnabled, deviceHttpTargets, deviceHttpTimeoutMs, deviceProbeTtlSeconds, emitNotificationCreated, encodeHidPacsCard, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, ffmpegFrameArgs, ffmpegPath, formatCapabilityTrace, formatDahuaDate, getIO, grabWithSubStreamFallback, guests_namespace_collection, hasAnyCapability, hasAnyPermission, incidentReport, incidentReportLog, incidents_namespace_collection, isCameraEntitled, isDuplicateVersionError, isPatrolCctvCamera, isRelayPlayerUrl, isSuperAdmin, isTermsCurrent, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, mapWithLimit, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, normalizeAcceptedTerms, normalizeHidCardValue, notificationCategory, notificationCategoryLabel, notificationEvents, notificationRoom, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseCameraChannel, parseCameraHost, parseDahuaFind, parseDeviceTime, parseSoftwareVersion, platform_terms_namespace_collection, promoCodeSchema, ptzEndpoint, publicCameraFields, refuseServiceProviderInviteAction, registerCameraTransport, relayForRecorder, remarksSchema, resetCameraTransports, residentAppModuleKeys, residentFormEntry, resolutionRefusalReason, resolveCamera, resolveDeviceHttp, resolveHidPhysicalCardValue, resolveInviteActor, robotSchema, rtspUrl, schema, schemaAppSlugNotification, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCreateNotification, schemaCustomerSite, schemaDiscoverHidAmicoReader, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoAssignUserCard, schemaHidAmicoConfiguration, schemaHidAmicoEnrollUserCard, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSiteIdParams, schemaHidAmicoSync, schemaHidAmicoUserCardIdParams, schemaHidAmicoUserCardParams, schemaHidAmicoUserImageParams, schemaHidAmicoUserImageUploadQuery, schemaHidAmicoUserPin, schemaHidAmicoUserPinParams, schemaHidAmicoVisitorImageParams, schemaHidAmicoVisitorImageUploadQuery, schemaHidAmicoVisitorQr, schemaHidPermissionCandidateQuery, schemaHidPermissionScopeQuery, schemaHidSipAccountRequest, schemaIncidentReport, schemaListNotification, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaNotification, schemaNotificationPreference, schemaNotificationPreferenceOff, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPlatformTerms, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSignNfcPatrolLog, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBidPreloved, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFolderManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateHidAmicoIdentity, schemaUpdateHidAmicoReader, schemaUpdateHidSitePermissions, schemaUpdateIncidentReport, schemaUpdateNotification, schemaUpdateNotificationPreference, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, serviceProviderInviteLabel, sessionSchema, setIO, shiftSchema, siteSchema, site_people_namespace_collection, snapshotEndpoint, snapshotRefusalReason, subscriptionPlanSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBidPrelovedController, useBidPrelovedRepo, useBidPrelovedService, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCameraViewController, useCameraViewService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, useChatPrelovedService, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useFormEntryController, useFormEntryRepo, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useHidAmicoController, useHidAmicoRepo, useHidAmicoService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useMemberService, useNewDashboardController, useNewDashboardRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useNotificationController, useNotificationPreferenceController, useNotificationPreferenceRepo, useNotificationPreferenceService, useNotificationRepo, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolLogService, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePlatformTermsController, usePlatformTermsRepo, usePlatformTermsService, usePostFavoriteController, usePostFavoriteRepo, usePostFavoriteService, usePostPrelovedController, usePostPrelovedRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRedDotPaymentController, useRedDotPaymentRepo, useRedDotPaymentSvc, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleControllerV2, useRoleRepo, useRoleRepoV2, useRoleServiceV2, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderInviteController, useServiceProviderInviteService, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubcategoryPrelovedController, useSubcategoryPrelovedRepo, useSubscriptionController, useSubscriptionPlanController, useSubscriptionPlanRepo, useSubscriptionRepo, useSubscriptionService, useUserController, useUserControllerV2, useUserRepo, useUserRepoV2, useUserService, useUserServiceV2, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationControllerV2, useVerificationRepo, useVerificationRepoV2, useVerificationService, useVerificationServiceV2, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitorPersonRepo, visitorPersonService, visitorType, visitors_namespace_collection, wallConfig, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };