@camstack/types 1.2.135 → 1.2.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/capabilities/device-manager.cap.d.ts +127 -0
- package/dist/capabilities/index.d.ts +1 -1
- package/dist/capabilities/notification-rules.cap.d.ts +16 -16
- package/dist/capabilities/osd-manager.cap.d.ts +6 -6
- package/dist/capabilities/pipeline-analytics.cap.d.ts +2 -0
- package/dist/capabilities/pipeline-orchestrator.cap.d.ts +5 -5
- package/dist/capabilities/recording.cap.d.ts +2 -0
- package/dist/generated/addon-api.d.ts +7 -0
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts +1 -1
- package/dist/index.js +62 -1
- package/dist/index.mjs +60 -2
- package/dist/interfaces/ops-log.d.ts +2 -0
- package/package.json +1 -1
|
@@ -245,6 +245,75 @@ export declare const DevicePersistConfigPayloadSchema: z.ZodObject<{
|
|
|
245
245
|
deviceId: z.ZodNumber;
|
|
246
246
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
247
247
|
}, z.core.$strip>;
|
|
248
|
+
/** What a migration actually did, per switch. `unreachable` is a first-class
|
|
249
|
+
* answer: a camera that could not be asked is not a camera that was silenced. */
|
|
250
|
+
export declare const MigrateSwitchOutcomeSchema: z.ZodEnum<{
|
|
251
|
+
off: "off";
|
|
252
|
+
unreachable: "unreachable";
|
|
253
|
+
on: "on";
|
|
254
|
+
"not-offered": "not-offered";
|
|
255
|
+
}>;
|
|
256
|
+
export declare const MigrateSwitchReportSchema: z.ZodObject<{
|
|
257
|
+
deviceId: z.ZodNumber;
|
|
258
|
+
switchId: z.ZodEnum<{
|
|
259
|
+
"privacy-mask": "privacy-mask";
|
|
260
|
+
"audio-analysis": "audio-analysis";
|
|
261
|
+
recording: "recording";
|
|
262
|
+
"stream-broker": "stream-broker";
|
|
263
|
+
notifications: "notifications";
|
|
264
|
+
"object-detection": "object-detection";
|
|
265
|
+
"device-audio": "device-audio";
|
|
266
|
+
"broker-audio": "broker-audio";
|
|
267
|
+
}>;
|
|
268
|
+
outcome: z.ZodEnum<{
|
|
269
|
+
off: "off";
|
|
270
|
+
unreachable: "unreachable";
|
|
271
|
+
on: "on";
|
|
272
|
+
"not-offered": "not-offered";
|
|
273
|
+
}>;
|
|
274
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
275
|
+
}, z.core.$strip>;
|
|
276
|
+
export declare const MigrateDeviceResultSchema: z.ZodObject<{
|
|
277
|
+
sourceId: z.ZodNumber;
|
|
278
|
+
targetId: z.ZodNumber;
|
|
279
|
+
switches: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
280
|
+
deviceId: z.ZodNumber;
|
|
281
|
+
switchId: z.ZodEnum<{
|
|
282
|
+
"privacy-mask": "privacy-mask";
|
|
283
|
+
"audio-analysis": "audio-analysis";
|
|
284
|
+
recording: "recording";
|
|
285
|
+
"stream-broker": "stream-broker";
|
|
286
|
+
notifications: "notifications";
|
|
287
|
+
"object-detection": "object-detection";
|
|
288
|
+
"device-audio": "device-audio";
|
|
289
|
+
"broker-audio": "broker-audio";
|
|
290
|
+
}>;
|
|
291
|
+
outcome: z.ZodEnum<{
|
|
292
|
+
off: "off";
|
|
293
|
+
unreachable: "unreachable";
|
|
294
|
+
on: "on";
|
|
295
|
+
"not-offered": "not-offered";
|
|
296
|
+
}>;
|
|
297
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
298
|
+
}, z.core.$strip>>>;
|
|
299
|
+
sourceStillLive: z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
300
|
+
"privacy-mask": "privacy-mask";
|
|
301
|
+
"audio-analysis": "audio-analysis";
|
|
302
|
+
recording: "recording";
|
|
303
|
+
"stream-broker": "stream-broker";
|
|
304
|
+
notifications: "notifications";
|
|
305
|
+
"object-detection": "object-detection";
|
|
306
|
+
"device-audio": "device-audio";
|
|
307
|
+
"broker-audio": "broker-audio";
|
|
308
|
+
}>>>;
|
|
309
|
+
swapped: z.ZodBoolean;
|
|
310
|
+
}, z.core.$strip>;
|
|
311
|
+
/** What happened to ONE switch on ONE device during a migration. */
|
|
312
|
+
export type MigrateSwitchOutcome = z.infer<typeof MigrateSwitchOutcomeSchema>;
|
|
313
|
+
export type MigrateSwitchReport = z.infer<typeof MigrateSwitchReportSchema>;
|
|
314
|
+
/** The wire shape a `deviceManager.migrateDevice` caller renders. Inferred
|
|
315
|
+
* rather than restated so a client cannot drift from the report it displays. */
|
|
316
|
+
export type MigrateDeviceResult = z.infer<typeof MigrateDeviceResultSchema>;
|
|
248
317
|
export declare const deviceManagerCapability: {
|
|
249
318
|
readonly name: "device-manager";
|
|
250
319
|
readonly scope: "system";
|
|
@@ -261,6 +330,64 @@ export declare const deviceManagerCapability: {
|
|
|
261
330
|
}, z.core.$strip>, z.ZodObject<{
|
|
262
331
|
id: z.ZodNumber;
|
|
263
332
|
}, z.core.$strip>, "mutation">;
|
|
333
|
+
/**
|
|
334
|
+
* Replace a camera: the new hardware inherits the number the system knows.
|
|
335
|
+
*
|
|
336
|
+
* Everything general about a camera is keyed on the numeric id and nothing
|
|
337
|
+
* else — the recording path on disk, the hour ledger, the media store, zone
|
|
338
|
+
* ownership, and all four ecosystem exports. So a replacement moves the
|
|
339
|
+
* NUMBER rather than the work, and the operator keeps their footage, their
|
|
340
|
+
* rules and their integrations.
|
|
341
|
+
*
|
|
342
|
+
* Both cameras are switched off first, then the identities are exchanged
|
|
343
|
+
* (children follow their parent), then the target — now answering on the
|
|
344
|
+
* inherited number — is switched back on.
|
|
345
|
+
*
|
|
346
|
+
* **A switch that could not be written is REPORTED, not swallowed.** The
|
|
347
|
+
* source is characteristically broken, and two of the eight switches write
|
|
348
|
+
* the camera itself, so on a dead one they cannot be written at all.
|
|
349
|
+
* `sourceStillLive` names what stayed live; empty is the only value that
|
|
350
|
+
* means the old hardware is quiet. The migration proceeds either way —
|
|
351
|
+
* refusing would refuse the case this exists for.
|
|
352
|
+
*/
|
|
353
|
+
readonly migrateDevice: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
|
|
354
|
+
sourceId: z.ZodNumber;
|
|
355
|
+
targetId: z.ZodNumber;
|
|
356
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
357
|
+
sourceId: z.ZodNumber;
|
|
358
|
+
targetId: z.ZodNumber;
|
|
359
|
+
switches: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
360
|
+
deviceId: z.ZodNumber;
|
|
361
|
+
switchId: z.ZodEnum<{
|
|
362
|
+
"privacy-mask": "privacy-mask";
|
|
363
|
+
"audio-analysis": "audio-analysis";
|
|
364
|
+
recording: "recording";
|
|
365
|
+
"stream-broker": "stream-broker";
|
|
366
|
+
notifications: "notifications";
|
|
367
|
+
"object-detection": "object-detection";
|
|
368
|
+
"device-audio": "device-audio";
|
|
369
|
+
"broker-audio": "broker-audio";
|
|
370
|
+
}>;
|
|
371
|
+
outcome: z.ZodEnum<{
|
|
372
|
+
off: "off";
|
|
373
|
+
unreachable: "unreachable";
|
|
374
|
+
on: "on";
|
|
375
|
+
"not-offered": "not-offered";
|
|
376
|
+
}>;
|
|
377
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
378
|
+
}, z.core.$strip>>>;
|
|
379
|
+
sourceStillLive: z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
380
|
+
"privacy-mask": "privacy-mask";
|
|
381
|
+
"audio-analysis": "audio-analysis";
|
|
382
|
+
recording: "recording";
|
|
383
|
+
"stream-broker": "stream-broker";
|
|
384
|
+
notifications: "notifications";
|
|
385
|
+
"object-detection": "object-detection";
|
|
386
|
+
"device-audio": "device-audio";
|
|
387
|
+
"broker-audio": "broker-audio";
|
|
388
|
+
}>>>;
|
|
389
|
+
swapped: z.ZodBoolean;
|
|
390
|
+
}, z.core.$strip>, "mutation">;
|
|
264
391
|
/** Register a device in the DB + in-memory registry. Called by DeviceManagerApi.register(). */
|
|
265
392
|
readonly registerDevice: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
|
|
266
393
|
addonId: z.ZodString;
|
|
@@ -50,7 +50,7 @@ export { AdoptInputSchema as AdoptionAdoptInputSchema, type AdoptionFilter, Adop
|
|
|
50
50
|
export type { IDeviceExportProvider } from './device-export.cap.js';
|
|
51
51
|
export { DeviceExportStatusSchema, deviceExportCapability, ExportSetupFieldSchema, ExportSetupSchema, ExposedDeviceSchema, ExposeInputSchema as DeviceExportExposeInputSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, } from './device-export.cap.js';
|
|
52
52
|
export type { DeviceInfo, DeviceManagerApplyInitialMetaInput } from './device-manager.cap.js';
|
|
53
|
-
export { ConfigEntrySchema, DEVICE_CHILDREN_BATCH_MAX, DeviceInfoSchema, deviceManagerCapability, type IDeviceManagerProvider, type LinkedDevice, LinkedDeviceSchema, type LinkedDevicesMode, LinkedDevicesModeSchema, } from './device-manager.cap.js';
|
|
53
|
+
export { ConfigEntrySchema, DEVICE_CHILDREN_BATCH_MAX, DeviceInfoSchema, deviceManagerCapability, type IDeviceManagerProvider, type LinkedDevice, LinkedDeviceSchema, type LinkedDevicesMode, LinkedDevicesModeSchema, type MigrateDeviceResult, MigrateDeviceResultSchema, type MigrateSwitchOutcome, MigrateSwitchOutcomeSchema, type MigrateSwitchReport, MigrateSwitchReportSchema, } from './device-manager.cap.js';
|
|
54
54
|
export { DiscoveredDeviceSchema, deviceProviderCapability, ProviderStatusSchema, } from './device-provider.cap.js';
|
|
55
55
|
export { deviceStateCapability } from './device-state.cap.js';
|
|
56
56
|
export type { IEmbeddingEncoderProvider } from './embedding-encoder.cap.js';
|
|
@@ -66,9 +66,9 @@ export type NcDelivery = z.infer<typeof NcDeliverySchema>;
|
|
|
66
66
|
* depend on a provider's raw event name or payload shape.
|
|
67
67
|
*/
|
|
68
68
|
export declare const NcSystemEventKindSchema: z.ZodEnum<{
|
|
69
|
+
"device-disabled": "device-disabled";
|
|
69
70
|
"device-online": "device-online";
|
|
70
71
|
"device-offline": "device-offline";
|
|
71
|
-
"device-disabled": "device-disabled";
|
|
72
72
|
"device-enabled": "device-enabled";
|
|
73
73
|
"device-battery-low": "device-battery-low";
|
|
74
74
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -121,9 +121,9 @@ export declare const NC_ALARM_SYSTEM_EVENT_KINDS: readonly NcSystemEventKind[];
|
|
|
121
121
|
*/
|
|
122
122
|
export declare const NcSystemEventConditionSchema: z.ZodObject<{
|
|
123
123
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
124
|
+
"device-disabled": "device-disabled";
|
|
124
125
|
"device-online": "device-online";
|
|
125
126
|
"device-offline": "device-offline";
|
|
126
|
-
"device-disabled": "device-disabled";
|
|
127
127
|
"device-enabled": "device-enabled";
|
|
128
128
|
"device-battery-low": "device-battery-low";
|
|
129
129
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -597,9 +597,9 @@ export declare const NcConditionsSchema: z.ZodObject<{
|
|
|
597
597
|
}>>;
|
|
598
598
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
599
599
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
600
|
+
"device-disabled": "device-disabled";
|
|
600
601
|
"device-online": "device-online";
|
|
601
602
|
"device-offline": "device-offline";
|
|
602
|
-
"device-disabled": "device-disabled";
|
|
603
603
|
"device-enabled": "device-enabled";
|
|
604
604
|
"device-battery-low": "device-battery-low";
|
|
605
605
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -883,9 +883,9 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
883
883
|
}>>;
|
|
884
884
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
885
885
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
886
|
+
"device-disabled": "device-disabled";
|
|
886
887
|
"device-online": "device-online";
|
|
887
888
|
"device-offline": "device-offline";
|
|
888
|
-
"device-disabled": "device-disabled";
|
|
889
889
|
"device-enabled": "device-enabled";
|
|
890
890
|
"device-battery-low": "device-battery-low";
|
|
891
891
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -1233,9 +1233,9 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
1233
1233
|
}>>;
|
|
1234
1234
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
1235
1235
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
1236
|
+
"device-disabled": "device-disabled";
|
|
1236
1237
|
"device-online": "device-online";
|
|
1237
1238
|
"device-offline": "device-offline";
|
|
1238
|
-
"device-disabled": "device-disabled";
|
|
1239
1239
|
"device-enabled": "device-enabled";
|
|
1240
1240
|
"device-battery-low": "device-battery-low";
|
|
1241
1241
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -1400,9 +1400,9 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
1400
1400
|
}>>;
|
|
1401
1401
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
1402
1402
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
1403
|
+
"device-disabled": "device-disabled";
|
|
1403
1404
|
"device-online": "device-online";
|
|
1404
1405
|
"device-offline": "device-offline";
|
|
1405
|
-
"device-disabled": "device-disabled";
|
|
1406
1406
|
"device-enabled": "device-enabled";
|
|
1407
1407
|
"device-battery-low": "device-battery-low";
|
|
1408
1408
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -1709,9 +1709,9 @@ export declare const NcHistorySubjectSchema: z.ZodObject<{
|
|
|
1709
1709
|
timestamp: z.ZodNumber;
|
|
1710
1710
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
1711
1711
|
kind: z.ZodEnum<{
|
|
1712
|
+
"device-disabled": "device-disabled";
|
|
1712
1713
|
"device-online": "device-online";
|
|
1713
1714
|
"device-offline": "device-offline";
|
|
1714
|
-
"device-disabled": "device-disabled";
|
|
1715
1715
|
"device-enabled": "device-enabled";
|
|
1716
1716
|
"device-battery-low": "device-battery-low";
|
|
1717
1717
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -1794,9 +1794,9 @@ export declare const NcHistoryEntrySchema: z.ZodObject<{
|
|
|
1794
1794
|
timestamp: z.ZodNumber;
|
|
1795
1795
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
1796
1796
|
kind: z.ZodEnum<{
|
|
1797
|
+
"device-disabled": "device-disabled";
|
|
1797
1798
|
"device-online": "device-online";
|
|
1798
1799
|
"device-offline": "device-offline";
|
|
1799
|
-
"device-disabled": "device-disabled";
|
|
1800
1800
|
"device-enabled": "device-enabled";
|
|
1801
1801
|
"device-battery-low": "device-battery-low";
|
|
1802
1802
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -2096,9 +2096,9 @@ export declare const notificationRulesCapability: {
|
|
|
2096
2096
|
}>>;
|
|
2097
2097
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
2098
2098
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
2099
|
+
"device-disabled": "device-disabled";
|
|
2099
2100
|
"device-online": "device-online";
|
|
2100
2101
|
"device-offline": "device-offline";
|
|
2101
|
-
"device-disabled": "device-disabled";
|
|
2102
2102
|
"device-enabled": "device-enabled";
|
|
2103
2103
|
"device-battery-low": "device-battery-low";
|
|
2104
2104
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -2357,9 +2357,9 @@ export declare const notificationRulesCapability: {
|
|
|
2357
2357
|
}>>;
|
|
2358
2358
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
2359
2359
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
2360
|
+
"device-disabled": "device-disabled";
|
|
2360
2361
|
"device-online": "device-online";
|
|
2361
2362
|
"device-offline": "device-offline";
|
|
2362
|
-
"device-disabled": "device-disabled";
|
|
2363
2363
|
"device-enabled": "device-enabled";
|
|
2364
2364
|
"device-battery-low": "device-battery-low";
|
|
2365
2365
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -2616,9 +2616,9 @@ export declare const notificationRulesCapability: {
|
|
|
2616
2616
|
}>>;
|
|
2617
2617
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
2618
2618
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
2619
|
+
"device-disabled": "device-disabled";
|
|
2619
2620
|
"device-online": "device-online";
|
|
2620
2621
|
"device-offline": "device-offline";
|
|
2621
|
-
"device-disabled": "device-disabled";
|
|
2622
2622
|
"device-enabled": "device-enabled";
|
|
2623
2623
|
"device-battery-low": "device-battery-low";
|
|
2624
2624
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -2869,9 +2869,9 @@ export declare const notificationRulesCapability: {
|
|
|
2869
2869
|
}>>;
|
|
2870
2870
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
2871
2871
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
2872
|
+
"device-disabled": "device-disabled";
|
|
2872
2873
|
"device-online": "device-online";
|
|
2873
2874
|
"device-offline": "device-offline";
|
|
2874
|
-
"device-disabled": "device-disabled";
|
|
2875
2875
|
"device-enabled": "device-enabled";
|
|
2876
2876
|
"device-battery-low": "device-battery-low";
|
|
2877
2877
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -3219,9 +3219,9 @@ export declare const notificationRulesCapability: {
|
|
|
3219
3219
|
}>>;
|
|
3220
3220
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
3221
3221
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
3222
|
+
"device-disabled": "device-disabled";
|
|
3222
3223
|
"device-online": "device-online";
|
|
3223
3224
|
"device-offline": "device-offline";
|
|
3224
|
-
"device-disabled": "device-disabled";
|
|
3225
3225
|
"device-enabled": "device-enabled";
|
|
3226
3226
|
"device-battery-low": "device-battery-low";
|
|
3227
3227
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -3385,9 +3385,9 @@ export declare const notificationRulesCapability: {
|
|
|
3385
3385
|
}>>;
|
|
3386
3386
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
3387
3387
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
3388
|
+
"device-disabled": "device-disabled";
|
|
3388
3389
|
"device-online": "device-online";
|
|
3389
3390
|
"device-offline": "device-offline";
|
|
3390
|
-
"device-disabled": "device-disabled";
|
|
3391
3391
|
"device-enabled": "device-enabled";
|
|
3392
3392
|
"device-battery-low": "device-battery-low";
|
|
3393
3393
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -3692,9 +3692,9 @@ export declare const notificationRulesCapability: {
|
|
|
3692
3692
|
}>>;
|
|
3693
3693
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
3694
3694
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
3695
|
+
"device-disabled": "device-disabled";
|
|
3695
3696
|
"device-online": "device-online";
|
|
3696
3697
|
"device-offline": "device-offline";
|
|
3697
|
-
"device-disabled": "device-disabled";
|
|
3698
3698
|
"device-enabled": "device-enabled";
|
|
3699
3699
|
"device-battery-low": "device-battery-low";
|
|
3700
3700
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -4046,9 +4046,9 @@ export declare const notificationRulesCapability: {
|
|
|
4046
4046
|
timestamp: z.ZodNumber;
|
|
4047
4047
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
4048
4048
|
kind: z.ZodEnum<{
|
|
4049
|
+
"device-disabled": "device-disabled";
|
|
4049
4050
|
"device-online": "device-online";
|
|
4050
4051
|
"device-offline": "device-offline";
|
|
4051
|
-
"device-disabled": "device-disabled";
|
|
4052
4052
|
"device-enabled": "device-enabled";
|
|
4053
4053
|
"device-battery-low": "device-battery-low";
|
|
4054
4054
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -145,9 +145,9 @@ export declare const OsdSlotBindingSchema: z.ZodObject<{
|
|
|
145
145
|
}>>;
|
|
146
146
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
147
147
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
148
|
+
"device-disabled": "device-disabled";
|
|
148
149
|
"device-online": "device-online";
|
|
149
150
|
"device-offline": "device-offline";
|
|
150
|
-
"device-disabled": "device-disabled";
|
|
151
151
|
"device-enabled": "device-enabled";
|
|
152
152
|
"device-battery-low": "device-battery-low";
|
|
153
153
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -312,9 +312,9 @@ export declare const OsdSlotViewSchema: z.ZodObject<{
|
|
|
312
312
|
}>>;
|
|
313
313
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
314
314
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
315
|
+
"device-disabled": "device-disabled";
|
|
315
316
|
"device-online": "device-online";
|
|
316
317
|
"device-offline": "device-offline";
|
|
317
|
-
"device-disabled": "device-disabled";
|
|
318
318
|
"device-enabled": "device-enabled";
|
|
319
319
|
"device-battery-low": "device-battery-low";
|
|
320
320
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -551,9 +551,9 @@ export declare const osdManagerCapability: {
|
|
|
551
551
|
}>>;
|
|
552
552
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
553
553
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
554
|
+
"device-disabled": "device-disabled";
|
|
554
555
|
"device-online": "device-online";
|
|
555
556
|
"device-offline": "device-offline";
|
|
556
|
-
"device-disabled": "device-disabled";
|
|
557
557
|
"device-enabled": "device-enabled";
|
|
558
558
|
"device-battery-low": "device-battery-low";
|
|
559
559
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -807,9 +807,9 @@ export declare const osdManagerCapability: {
|
|
|
807
807
|
}>>;
|
|
808
808
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
809
809
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
810
|
+
"device-disabled": "device-disabled";
|
|
810
811
|
"device-online": "device-online";
|
|
811
812
|
"device-offline": "device-offline";
|
|
812
|
-
"device-disabled": "device-disabled";
|
|
813
813
|
"device-enabled": "device-enabled";
|
|
814
814
|
"device-battery-low": "device-battery-low";
|
|
815
815
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -973,9 +973,9 @@ export declare const osdManagerCapability: {
|
|
|
973
973
|
}>>;
|
|
974
974
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
975
975
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
976
|
+
"device-disabled": "device-disabled";
|
|
976
977
|
"device-online": "device-online";
|
|
977
978
|
"device-offline": "device-offline";
|
|
978
|
-
"device-disabled": "device-disabled";
|
|
979
979
|
"device-enabled": "device-enabled";
|
|
980
980
|
"device-battery-low": "device-battery-low";
|
|
981
981
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -1171,9 +1171,9 @@ export declare const osdManagerCapability: {
|
|
|
1171
1171
|
}>>;
|
|
1172
1172
|
systemEvent: z.ZodOptional<z.ZodObject<{
|
|
1173
1173
|
kinds: z.ZodArray<z.ZodEnum<{
|
|
1174
|
+
"device-disabled": "device-disabled";
|
|
1174
1175
|
"device-online": "device-online";
|
|
1175
1176
|
"device-offline": "device-offline";
|
|
1176
|
-
"device-disabled": "device-disabled";
|
|
1177
1177
|
"device-enabled": "device-enabled";
|
|
1178
1178
|
"device-battery-low": "device-battery-low";
|
|
1179
1179
|
"device-battery-normal": "device-battery-normal";
|
|
@@ -2610,6 +2610,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
2610
2610
|
retention: "retention";
|
|
2611
2611
|
quota: "quota";
|
|
2612
2612
|
maintenance: "maintenance";
|
|
2613
|
+
"orphaned-device": "orphaned-device";
|
|
2613
2614
|
}>>;
|
|
2614
2615
|
}, z.core.$strip>, z.ZodObject<{
|
|
2615
2616
|
motion: z.ZodNumber;
|
|
@@ -2821,6 +2822,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
2821
2822
|
retention: "retention";
|
|
2822
2823
|
quota: "quota";
|
|
2823
2824
|
maintenance: "maintenance";
|
|
2825
|
+
"orphaned-device": "orphaned-device";
|
|
2824
2826
|
}>;
|
|
2825
2827
|
deviceId: z.ZodNullable<z.ZodNumber>;
|
|
2826
2828
|
nodeId: z.ZodString;
|
|
@@ -348,8 +348,8 @@ declare const CameraStatusStageSchema: z.ZodEnum<{
|
|
|
348
348
|
source: "source";
|
|
349
349
|
broker: "broker";
|
|
350
350
|
recording: "recording";
|
|
351
|
-
detection: "detection";
|
|
352
351
|
switches: "switches";
|
|
352
|
+
detection: "detection";
|
|
353
353
|
}>;
|
|
354
354
|
/**
|
|
355
355
|
* WHY a stage could not be trusted.
|
|
@@ -372,8 +372,8 @@ declare const CameraStatusDegradationSchema: z.ZodObject<{
|
|
|
372
372
|
source: "source";
|
|
373
373
|
broker: "broker";
|
|
374
374
|
recording: "recording";
|
|
375
|
-
detection: "detection";
|
|
376
375
|
switches: "switches";
|
|
376
|
+
detection: "detection";
|
|
377
377
|
}>;
|
|
378
378
|
reason: z.ZodEnum<{
|
|
379
379
|
error: "error";
|
|
@@ -520,8 +520,8 @@ declare const CameraStatusSchema: z.ZodObject<{
|
|
|
520
520
|
source: "source";
|
|
521
521
|
broker: "broker";
|
|
522
522
|
recording: "recording";
|
|
523
|
-
detection: "detection";
|
|
524
523
|
switches: "switches";
|
|
524
|
+
detection: "detection";
|
|
525
525
|
}>;
|
|
526
526
|
reason: z.ZodEnum<{
|
|
527
527
|
error: "error";
|
|
@@ -1470,8 +1470,8 @@ export declare const pipelineOrchestratorCapability: {
|
|
|
1470
1470
|
source: "source";
|
|
1471
1471
|
broker: "broker";
|
|
1472
1472
|
recording: "recording";
|
|
1473
|
-
detection: "detection";
|
|
1474
1473
|
switches: "switches";
|
|
1474
|
+
detection: "detection";
|
|
1475
1475
|
}>;
|
|
1476
1476
|
reason: z.ZodEnum<{
|
|
1477
1477
|
error: "error";
|
|
@@ -1605,8 +1605,8 @@ export declare const pipelineOrchestratorCapability: {
|
|
|
1605
1605
|
source: "source";
|
|
1606
1606
|
broker: "broker";
|
|
1607
1607
|
recording: "recording";
|
|
1608
|
-
detection: "detection";
|
|
1609
1608
|
switches: "switches";
|
|
1609
|
+
detection: "detection";
|
|
1610
1610
|
}>;
|
|
1611
1611
|
reason: z.ZodEnum<{
|
|
1612
1612
|
error: "error";
|
|
@@ -663,6 +663,7 @@ export declare const recordingCapability: {
|
|
|
663
663
|
retention: "retention";
|
|
664
664
|
quota: "quota";
|
|
665
665
|
maintenance: "maintenance";
|
|
666
|
+
"orphaned-device": "orphaned-device";
|
|
666
667
|
}>>;
|
|
667
668
|
}, z.core.$strip>, z.ZodObject<{
|
|
668
669
|
floorMs: z.ZodNullable<z.ZodNumber>;
|
|
@@ -709,6 +710,7 @@ export declare const recordingCapability: {
|
|
|
709
710
|
retention: "retention";
|
|
710
711
|
quota: "quota";
|
|
711
712
|
maintenance: "maintenance";
|
|
713
|
+
"orphaned-device": "orphaned-device";
|
|
712
714
|
}>;
|
|
713
715
|
deviceId: z.ZodNullable<z.ZodNumber>;
|
|
714
716
|
nodeId: z.ZodString;
|
|
@@ -2040,6 +2040,13 @@ export type AppRouter = TrpcCoreRouter<{
|
|
|
2040
2040
|
output: z.infer<typeof deviceManagerCapability.methods.allocateDeviceId.output>;
|
|
2041
2041
|
meta: object;
|
|
2042
2042
|
}>;
|
|
2043
|
+
migrateDevice: TRPCMutationProcedure<{
|
|
2044
|
+
input: {
|
|
2045
|
+
[x: string]: unknown;
|
|
2046
|
+
} & z.input<typeof deviceManagerCapability.methods.migrateDevice.input>;
|
|
2047
|
+
output: z.infer<typeof deviceManagerCapability.methods.migrateDevice.output>;
|
|
2048
|
+
meta: object;
|
|
2049
|
+
}>;
|
|
2043
2050
|
registerDevice: TRPCMutationProcedure<{
|
|
2044
2051
|
input: {
|
|
2045
2052
|
[x: string]: unknown;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* scope+access check inside `protectedProcedure` (see
|
|
7
7
|
* `server/backend/src/api/trpc/trpc.middleware.ts`).
|
|
8
8
|
*
|
|
9
|
-
* Coverage:
|
|
9
|
+
* Coverage: 1003 method paths across 126 capabilities.
|
|
10
10
|
*/
|
|
11
11
|
import type { CapabilityMethodAccess } from '../capabilities/capability-definition.js';
|
|
12
12
|
export interface MethodAccessRecord {
|
|
@@ -68,7 +68,7 @@ export interface SystemProxy {
|
|
|
68
68
|
readonly decoder: Pick<InferProvider<typeof decoderCapability>, 'supportsCodec' | 'getInfo' | 'createSession' | 'destroySession' | 'pushPacket' | 'openStream' | 'pullFrames' | 'pullHandles' | 'getFrame' | 'getShmStats' | 'updateConfig' | 'getStats' | 'listActiveSessions' | 'reprobeHwaccel'>;
|
|
69
69
|
readonly deviceAdoption: Pick<InferProvider<typeof deviceAdoptionCapability>, 'listCandidateFilters' | 'listCandidates' | 'getCandidate' | 'refresh' | 'adopt' | 'release' | 'resync'>;
|
|
70
70
|
readonly deviceExport: Pick<InferProvider<typeof deviceExportCapability>, 'getStatus' | 'listSupportedDeviceKinds' | 'listExposedDevices' | 'exposeDevice' | 'unexposeDevice'>;
|
|
71
|
-
readonly deviceManager: Pick<InferProvider<typeof deviceManagerCapability>, 'allocateDeviceId' | 'registerDevice' | 'removeDevice' | 'persistConfig' | 'getRoleDisplayDefaults' | 'setRoleDisplayDefaults' | 'listLocations' | 'addLocation' | 'removeLocation' | 'renameLocation' | 'listPersistedByAddon' | 'listAll' | 'getChildren' | 'getChildrenBatch' | 'getLinkedDevicesBatch' | 'removeByIntegration' | 'getBindingsBatch' | 'getAllBindings' | 'listWrappersForCap' | 'listBindableCapsForDeviceType' | 'discoverDevices' | 'adoptDevice' | 'getCreationSchema' | 'createDevice' | 'testCreationField' | 'adoptionListCandidateFilters' | 'adoptionListCandidates' | 'adoptionRefresh' | 'adoptionAdopt' | 'adoptionRelease' | 'adoptionStartJob' | 'adoptionListJobs' | 'adoptionCancelJob' | 'adoptionResync' | 'discoveryProviders' | 'discoverAllProviders' | 'discoverProvider' | 'providerCreationType' | 'providerDiscoveryParamsSchema' | 'getDeviceStatusAggregateBatch'>;
|
|
71
|
+
readonly deviceManager: Pick<InferProvider<typeof deviceManagerCapability>, 'allocateDeviceId' | 'migrateDevice' | 'registerDevice' | 'removeDevice' | 'persistConfig' | 'getRoleDisplayDefaults' | 'setRoleDisplayDefaults' | 'listLocations' | 'addLocation' | 'removeLocation' | 'renameLocation' | 'listPersistedByAddon' | 'listAll' | 'getChildren' | 'getChildrenBatch' | 'getLinkedDevicesBatch' | 'removeByIntegration' | 'getBindingsBatch' | 'getAllBindings' | 'listWrappersForCap' | 'listBindableCapsForDeviceType' | 'discoverDevices' | 'adoptDevice' | 'getCreationSchema' | 'createDevice' | 'testCreationField' | 'adoptionListCandidateFilters' | 'adoptionListCandidates' | 'adoptionRefresh' | 'adoptionAdopt' | 'adoptionRelease' | 'adoptionStartJob' | 'adoptionListJobs' | 'adoptionCancelJob' | 'adoptionResync' | 'discoveryProviders' | 'discoverAllProviders' | 'discoverProvider' | 'providerCreationType' | 'providerDiscoveryParamsSchema' | 'getDeviceStatusAggregateBatch'>;
|
|
72
72
|
readonly deviceProvider: Pick<InferProvider<typeof deviceProviderCapability>, 'start' | 'stop' | 'getStatus' | 'getDevices' | 'supportsDiscovery' | 'discoverDevices' | 'getDiscoveryParamsSchema' | 'getManualCreationType' | 'adoptDiscoveredDevice' | 'supportsManualCreation' | 'getChildCreationSchema' | 'createDevice' | 'testCreationField'>;
|
|
73
73
|
readonly deviceState: Pick<InferProvider<typeof deviceStateCapability>, 'getAllSnapshots'>;
|
|
74
74
|
readonly faceGallery: Pick<InferProvider<typeof faceGalleryCapability>, 'listIdentities' | 'createIdentity' | 'renameIdentity' | 'deleteIdentity' | 'listIdentitySamples' | 'removeSample' | 'getFaceMedia' | 'assignFace' | 'unassignFace' | 'deleteFace' | 'assignFaces' | 'unassignFaces' | 'suggestFaceClusters'>;
|
package/dist/index.js
CHANGED
|
@@ -1832,7 +1832,8 @@ var OpsLogReasonSchema = zod.z.enum([
|
|
|
1832
1832
|
"quota",
|
|
1833
1833
|
"manual",
|
|
1834
1834
|
"operator",
|
|
1835
|
-
"maintenance"
|
|
1835
|
+
"maintenance",
|
|
1836
|
+
"orphaned-device"
|
|
1836
1837
|
]);
|
|
1837
1838
|
/** One audit row, shared verbatim by both domains. */
|
|
1838
1839
|
var OpsLogEntrySchema = zod.z.object({
|
|
@@ -10311,6 +10312,29 @@ var DevicePersistConfigPayloadSchema = zod.z.object({
|
|
|
10311
10312
|
deviceId: zod.z.number(),
|
|
10312
10313
|
data: zod.z.record(zod.z.string(), zod.z.unknown())
|
|
10313
10314
|
});
|
|
10315
|
+
/** What a migration actually did, per switch. `unreachable` is a first-class
|
|
10316
|
+
* answer: a camera that could not be asked is not a camera that was silenced. */
|
|
10317
|
+
var MigrateSwitchOutcomeSchema = zod.z.enum([
|
|
10318
|
+
"off",
|
|
10319
|
+
"on",
|
|
10320
|
+
"not-offered",
|
|
10321
|
+
"unreachable"
|
|
10322
|
+
]);
|
|
10323
|
+
var MigrateSwitchReportSchema = zod.z.object({
|
|
10324
|
+
deviceId: zod.z.number(),
|
|
10325
|
+
switchId: CameraSwitchIdSchema,
|
|
10326
|
+
outcome: MigrateSwitchOutcomeSchema,
|
|
10327
|
+
detail: zod.z.string().optional()
|
|
10328
|
+
});
|
|
10329
|
+
var MigrateDeviceResultSchema = zod.z.object({
|
|
10330
|
+
sourceId: zod.z.number(),
|
|
10331
|
+
targetId: zod.z.number(),
|
|
10332
|
+
switches: zod.z.array(MigrateSwitchReportSchema).readonly(),
|
|
10333
|
+
/** Switches that could NOT be turned off on the source. Empty is the only
|
|
10334
|
+
* value meaning the replaced hardware is quiet. */
|
|
10335
|
+
sourceStillLive: zod.z.array(CameraSwitchIdSchema).readonly(),
|
|
10336
|
+
swapped: zod.z.boolean()
|
|
10337
|
+
});
|
|
10314
10338
|
var deviceManagerCapability = {
|
|
10315
10339
|
name: "device-manager",
|
|
10316
10340
|
scope: "system",
|
|
@@ -10325,6 +10349,33 @@ var deviceManagerCapability = {
|
|
|
10325
10349
|
addonId: zod.z.string(),
|
|
10326
10350
|
stableId: zod.z.string()
|
|
10327
10351
|
}), zod.z.object({ id: zod.z.number() }), { kind: "mutation" }),
|
|
10352
|
+
/**
|
|
10353
|
+
* Replace a camera: the new hardware inherits the number the system knows.
|
|
10354
|
+
*
|
|
10355
|
+
* Everything general about a camera is keyed on the numeric id and nothing
|
|
10356
|
+
* else — the recording path on disk, the hour ledger, the media store, zone
|
|
10357
|
+
* ownership, and all four ecosystem exports. So a replacement moves the
|
|
10358
|
+
* NUMBER rather than the work, and the operator keeps their footage, their
|
|
10359
|
+
* rules and their integrations.
|
|
10360
|
+
*
|
|
10361
|
+
* Both cameras are switched off first, then the identities are exchanged
|
|
10362
|
+
* (children follow their parent), then the target — now answering on the
|
|
10363
|
+
* inherited number — is switched back on.
|
|
10364
|
+
*
|
|
10365
|
+
* **A switch that could not be written is REPORTED, not swallowed.** The
|
|
10366
|
+
* source is characteristically broken, and two of the eight switches write
|
|
10367
|
+
* the camera itself, so on a dead one they cannot be written at all.
|
|
10368
|
+
* `sourceStillLive` names what stayed live; empty is the only value that
|
|
10369
|
+
* means the old hardware is quiet. The migration proceeds either way —
|
|
10370
|
+
* refusing would refuse the case this exists for.
|
|
10371
|
+
*/
|
|
10372
|
+
migrateDevice: require_sleep.method(zod.z.object({
|
|
10373
|
+
sourceId: zod.z.number(),
|
|
10374
|
+
targetId: zod.z.number()
|
|
10375
|
+
}), MigrateDeviceResultSchema, {
|
|
10376
|
+
kind: "mutation",
|
|
10377
|
+
auth: "admin"
|
|
10378
|
+
}),
|
|
10328
10379
|
/** Register a device in the DB + in-memory registry. Called by DeviceManagerApi.register(). */
|
|
10329
10380
|
registerDevice: require_sleep.method(DeviceRegisterPayloadSchema, zod.z.void(), { kind: "mutation" }),
|
|
10330
10381
|
/** Remove a device from the DB + in-memory registry. Called by DeviceManagerApi.remove(). */
|
|
@@ -40404,6 +40455,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
40404
40455
|
addonId: null,
|
|
40405
40456
|
access: "view"
|
|
40406
40457
|
},
|
|
40458
|
+
"deviceManager.migrateDevice": {
|
|
40459
|
+
capName: "device-manager",
|
|
40460
|
+
capScope: "system",
|
|
40461
|
+
addonId: null,
|
|
40462
|
+
access: "create"
|
|
40463
|
+
},
|
|
40407
40464
|
"deviceManager.persistConfig": {
|
|
40408
40465
|
capName: "device-manager",
|
|
40409
40466
|
capScope: "system",
|
|
@@ -47762,6 +47819,7 @@ function createSystemProxy(api) {
|
|
|
47762
47819
|
},
|
|
47763
47820
|
deviceManager: {
|
|
47764
47821
|
allocateDeviceId: (input) => dispatch("deviceManager", "allocateDeviceId", "mutation", input),
|
|
47822
|
+
migrateDevice: (input) => dispatch("deviceManager", "migrateDevice", "mutation", input),
|
|
47765
47823
|
registerDevice: (input) => dispatch("deviceManager", "registerDevice", "mutation", input),
|
|
47766
47824
|
removeDevice: (input) => dispatch("deviceManager", "removeDevice", "mutation", input),
|
|
47767
47825
|
persistConfig: (input) => dispatch("deviceManager", "persistConfig", "mutation", input),
|
|
@@ -52667,6 +52725,9 @@ exports.MediaRelocateModeSchema = MediaRelocateModeSchema;
|
|
|
52667
52725
|
exports.MeshPeerSchema = MeshPeerSchema;
|
|
52668
52726
|
exports.MeshStatusSchema = MeshStatusSchema;
|
|
52669
52727
|
exports.MethodAccessSchema = MethodAccessSchema;
|
|
52728
|
+
exports.MigrateDeviceResultSchema = MigrateDeviceResultSchema;
|
|
52729
|
+
exports.MigrateSwitchOutcomeSchema = MigrateSwitchOutcomeSchema;
|
|
52730
|
+
exports.MigrateSwitchReportSchema = MigrateSwitchReportSchema;
|
|
52670
52731
|
exports.ModelCatalogEntrySchema = ModelCatalogEntrySchema;
|
|
52671
52732
|
exports.ModelConvertInputSchema = ModelConvertInputSchema;
|
|
52672
52733
|
exports.ModelConvertMetadataSchema = ModelConvertMetadataSchema;
|
package/dist/index.mjs
CHANGED
|
@@ -1831,7 +1831,8 @@ var OpsLogReasonSchema = z.enum([
|
|
|
1831
1831
|
"quota",
|
|
1832
1832
|
"manual",
|
|
1833
1833
|
"operator",
|
|
1834
|
-
"maintenance"
|
|
1834
|
+
"maintenance",
|
|
1835
|
+
"orphaned-device"
|
|
1835
1836
|
]);
|
|
1836
1837
|
/** One audit row, shared verbatim by both domains. */
|
|
1837
1838
|
var OpsLogEntrySchema = z.object({
|
|
@@ -10310,6 +10311,29 @@ var DevicePersistConfigPayloadSchema = z.object({
|
|
|
10310
10311
|
deviceId: z.number(),
|
|
10311
10312
|
data: z.record(z.string(), z.unknown())
|
|
10312
10313
|
});
|
|
10314
|
+
/** What a migration actually did, per switch. `unreachable` is a first-class
|
|
10315
|
+
* answer: a camera that could not be asked is not a camera that was silenced. */
|
|
10316
|
+
var MigrateSwitchOutcomeSchema = z.enum([
|
|
10317
|
+
"off",
|
|
10318
|
+
"on",
|
|
10319
|
+
"not-offered",
|
|
10320
|
+
"unreachable"
|
|
10321
|
+
]);
|
|
10322
|
+
var MigrateSwitchReportSchema = z.object({
|
|
10323
|
+
deviceId: z.number(),
|
|
10324
|
+
switchId: CameraSwitchIdSchema,
|
|
10325
|
+
outcome: MigrateSwitchOutcomeSchema,
|
|
10326
|
+
detail: z.string().optional()
|
|
10327
|
+
});
|
|
10328
|
+
var MigrateDeviceResultSchema = z.object({
|
|
10329
|
+
sourceId: z.number(),
|
|
10330
|
+
targetId: z.number(),
|
|
10331
|
+
switches: z.array(MigrateSwitchReportSchema).readonly(),
|
|
10332
|
+
/** Switches that could NOT be turned off on the source. Empty is the only
|
|
10333
|
+
* value meaning the replaced hardware is quiet. */
|
|
10334
|
+
sourceStillLive: z.array(CameraSwitchIdSchema).readonly(),
|
|
10335
|
+
swapped: z.boolean()
|
|
10336
|
+
});
|
|
10313
10337
|
var deviceManagerCapability = {
|
|
10314
10338
|
name: "device-manager",
|
|
10315
10339
|
scope: "system",
|
|
@@ -10324,6 +10348,33 @@ var deviceManagerCapability = {
|
|
|
10324
10348
|
addonId: z.string(),
|
|
10325
10349
|
stableId: z.string()
|
|
10326
10350
|
}), z.object({ id: z.number() }), { kind: "mutation" }),
|
|
10351
|
+
/**
|
|
10352
|
+
* Replace a camera: the new hardware inherits the number the system knows.
|
|
10353
|
+
*
|
|
10354
|
+
* Everything general about a camera is keyed on the numeric id and nothing
|
|
10355
|
+
* else — the recording path on disk, the hour ledger, the media store, zone
|
|
10356
|
+
* ownership, and all four ecosystem exports. So a replacement moves the
|
|
10357
|
+
* NUMBER rather than the work, and the operator keeps their footage, their
|
|
10358
|
+
* rules and their integrations.
|
|
10359
|
+
*
|
|
10360
|
+
* Both cameras are switched off first, then the identities are exchanged
|
|
10361
|
+
* (children follow their parent), then the target — now answering on the
|
|
10362
|
+
* inherited number — is switched back on.
|
|
10363
|
+
*
|
|
10364
|
+
* **A switch that could not be written is REPORTED, not swallowed.** The
|
|
10365
|
+
* source is characteristically broken, and two of the eight switches write
|
|
10366
|
+
* the camera itself, so on a dead one they cannot be written at all.
|
|
10367
|
+
* `sourceStillLive` names what stayed live; empty is the only value that
|
|
10368
|
+
* means the old hardware is quiet. The migration proceeds either way —
|
|
10369
|
+
* refusing would refuse the case this exists for.
|
|
10370
|
+
*/
|
|
10371
|
+
migrateDevice: method(z.object({
|
|
10372
|
+
sourceId: z.number(),
|
|
10373
|
+
targetId: z.number()
|
|
10374
|
+
}), MigrateDeviceResultSchema, {
|
|
10375
|
+
kind: "mutation",
|
|
10376
|
+
auth: "admin"
|
|
10377
|
+
}),
|
|
10327
10378
|
/** Register a device in the DB + in-memory registry. Called by DeviceManagerApi.register(). */
|
|
10328
10379
|
registerDevice: method(DeviceRegisterPayloadSchema, z.void(), { kind: "mutation" }),
|
|
10329
10380
|
/** Remove a device from the DB + in-memory registry. Called by DeviceManagerApi.remove(). */
|
|
@@ -40396,6 +40447,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
40396
40447
|
addonId: null,
|
|
40397
40448
|
access: "view"
|
|
40398
40449
|
},
|
|
40450
|
+
"deviceManager.migrateDevice": {
|
|
40451
|
+
capName: "device-manager",
|
|
40452
|
+
capScope: "system",
|
|
40453
|
+
addonId: null,
|
|
40454
|
+
access: "create"
|
|
40455
|
+
},
|
|
40399
40456
|
"deviceManager.persistConfig": {
|
|
40400
40457
|
capName: "device-manager",
|
|
40401
40458
|
capScope: "system",
|
|
@@ -47754,6 +47811,7 @@ function createSystemProxy(api) {
|
|
|
47754
47811
|
},
|
|
47755
47812
|
deviceManager: {
|
|
47756
47813
|
allocateDeviceId: (input) => dispatch("deviceManager", "allocateDeviceId", "mutation", input),
|
|
47814
|
+
migrateDevice: (input) => dispatch("deviceManager", "migrateDevice", "mutation", input),
|
|
47757
47815
|
registerDevice: (input) => dispatch("deviceManager", "registerDevice", "mutation", input),
|
|
47758
47816
|
removeDevice: (input) => dispatch("deviceManager", "removeDevice", "mutation", input),
|
|
47759
47817
|
persistConfig: (input) => dispatch("deviceManager", "persistConfig", "mutation", input),
|
|
@@ -52166,4 +52224,4 @@ function enumerateInferenceDevices(hw) {
|
|
|
52166
52224
|
return out;
|
|
52167
52225
|
}
|
|
52168
52226
|
//#endregion
|
|
52169
|
-
export { ACCESSORY_LABEL, ACCESS_ROLES, ALEXA_EGRESS_PROFILE, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_ANALYSIS_CAP_NAME, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AUDIO_PRESETS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionCandidateResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, AdoptionJobSchema, AdoptionJobStateSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, AdoptionOutcomeSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationActionSchema, AutomationConditionOperatorSchema, AutomationConditionSchema, AutomationControlStatusSchema, AutomationRecipeSchema, AutomationTriggerSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BASE_LIVE_EGRESS_PROFILE, BATTERY_DEVICE_PROFILE, BATTERY_UNREACHABLE_AFTER_MS, BOOT_RECOVERY_BACKOFF_MS, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, BulkRecordSchema, CAMERA_SWITCH_CATALOG, CAMERA_SWITCH_ORDER, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, CLASS_MAP_MACRO_TARGETS, CLUSTER_MODEL_SCOPED_STEPS, CLUSTER_MODEL_SECTION_ID, CLUSTER_STEP_SETTING_FIELDS, COCO_80_LABELS, COCO_TO_MACRO, CONNECTION_TEST_TIMEOUT_MS, CORE_BLOCKS_ADDON_ID, CORE_BLOCK_ADDON_PREFIX, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraOccupancySnapshotForDeviceSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusDegradationReasonSchema, CameraStatusDegradationSchema, CameraStatusSchema, CameraStatusStageSchema, CameraStreamSchema, CameraSwitchAuthoritySchema, CameraSwitchGroupSchema, CameraSwitchIdSchema, CameraSwitchSchema, CameraSwitchUnavailableReasonSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectionTestDescriptorSchema, ConnectionTestInputSchema, ConnectionTestOutcomeSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoreBlockCompileResultSchema, CoreBlockInputSchema, CoreBlockPlacementSchema, CoreBlockSchema, CoreBlockStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DECLARED_DEVICE_SWEEP_LIMIT, DECLARED_INTEGRATION_FIXED_KEY, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_CLUSTER_STEP_MODELS, DEFAULT_CLUSTER_STEP_SETTINGS, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_DETAIL_CROP_CONVENTION, DEFAULT_EVENTS_BAND_BUFFER_SEC, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, DEFAULT_NATIVE_LEASE_SETTINGS, DEFAULT_POOL_MEMORY_POLICY, DEFAULT_RECORDING_PROFILES, DEFAULT_RETENTION, DEFAULT_RUNTIME_STATE_DURABILITY, DEFAULT_TIMELAPSE_PREVIEW_TEXT, DEFAULT_TOKEN_EXPIRY, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, DETECTION_MACRO_CLASSES, DETECTION_PIPELINE_CAP_NAME, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_CHILDREN_BATCH_MAX, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DeclaredDevices, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetailCropConventionSchema, DetectionCatalogClassMapSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceSelectorSchema, DeviceStatusSchema, DeviceType, DiagnosticIdSchema, DiagnosticWindowPatchSchema, DiagnosticWindowSchema, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DiskReconcileJobSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_DENSITY_BATCH_MAX, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPORT_DENSE_MAX_RANGES, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, EgressEncodeSchema, EgressRateControlSchema, EgressTranscodeRequestSchema, EgressTranscodeSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventDensityBucketSchema, EventDensityForDeviceSchema, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventKindsForDeviceSchema, EventMediaArtifactSchema, EventMediaCoverageSchema, EventMediaKindSchema, EventMediaProductionSchema, EventSourceType, ExportBytesSchema, ExportDenseRangeSchema, ExportDenseSchema, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionBindingSourceSchema, ExpressionEvalError, ExpressionFieldBindingSchema, ExpressionGlobalBindingSchema, ExpressionLiteralBindingSchema, ExpressionParseError, ExpressionSourceSchema, FIRST_LEVEL_MACRO_CLASSES, FULL_IMAGE_BBOX, FailureContributionSchema, FailureCounters, FailureReasonCountSchema, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, Fmp4BoxSplitter, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, FrameLazyCountersSchema, FrameLazyMetricsSchema, GasStatusSchema, GetLoggingSettingsInputSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HAP_AUDIO_BASE, HAP_AUDIO_BITRATE_KBPS, HAP_AUDIO_VBV_KBITS, HAP_KEYFRAME_INTERVAL_SEC, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HfModelResolutionSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, INFERENCE_DEVICE_EXCLUSION_REASONS, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, InferenceDeviceExclusionReasonSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOAD_CONTRIBUTION_ATTRIBUTIONS, LOAD_CONTRIBUTION_ROLES, LOG_CHANNEL_TICK_MS, LOG_LEVEL_RANK, LabelAttributionSchema, LabelDefinitionSchema, LabelTierSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LedgerWalkDeviceReportSchema, LedgerWalkInputSchema, LedgerWalkRefusalSchema, LedgerWalkReportSchema, LedgerWalkSkipCountsSchema, LedgerWalkSkipReasonSchema, LinkedDeviceSchema, LinkedDevicesModeSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmDownloadProgressSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRetryPolicySchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmTimeoutDefaults, LlmUsageRollupSchema, LlmUsageSchema, LoadContributionSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogChannelApplyResultSchema, LogChannelDescriptorSchema, LogChannelGate, LogChannelLevelSchema, LogChannelRegistry, LogChannelWindowPatchSchema, LogChannelWindowSchema, LogChannelWindowStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoggingEffectiveSchema, LoggingExplicitSchema, LoggingLevelLayerSchema, LoggingLevelSourceSchema, LoggingScopeKindSchema, LoggingSettingsPatchSchema, LoggingSettingsStateSchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_CLIP_EVENT_IDS, MAX_CLIP_LABELS, MAX_CONDITION_DEPTH, MAX_CONDITION_LEAVES, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, MAX_KEYS, MAX_REASONS_PER_KEY, MAX_SENSOR_TRIGGER_DEVICES, METHOD_ACCESS_MAP, METHOD_DEVICE_SELECTORS, MODEL_FORMATS, MODEL_PROVIDER_IDS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelExtraFileSchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileInfoSchema, MediaFileKindEnum, MediaFileRefSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MediaRelocateModeSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelProviderIdSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NATIVE_LEASE_ACTIVITY_FIELD, NATIVE_LEASE_ACTIVITY_KEY, NATIVE_LEASE_ADMISSION_FIELD, NATIVE_LEASE_ADMISSION_KEY, NATIVE_LEASE_BUDGET_FIELD, NATIVE_LEASE_BUDGET_KEY, NATIVE_LEASE_HOLD_FIELD, NATIVE_LEASE_HOLD_KEY, NATIVE_LEASE_SCENE_BUDGET_FIELD, NATIVE_LEASE_SCENE_BUDGET_KEY, NATIVE_LEASE_SECTION_ID, NATIVE_LEASE_TILE_BUDGET_FIELD, NATIVE_LEASE_TILE_BUDGET_KEY, NC_ALARM_SYSTEM_EVENT_KINDS, NC_AUDIO_CONFIRM_HITS_DEFAULT, NC_AUDIO_CONFIRM_HITS_MAX, NC_AUDIO_CONFIRM_HITS_MIN, NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, NC_AUDIO_DBFS_FLOOR, NC_AUDIO_DB_MAX, NC_AUDIO_DB_MIN, NC_AUDIO_DB_OFFERED, NC_AUDIO_DB_STEP, NC_AUDIO_DEFAULTS, NC_AUDIO_HIT_PERCENT_MAX, NC_AUDIO_HIT_PERCENT_MIN, NC_AUDIO_SAMPLING_MAX_SEC, NC_AUDIO_SAMPLING_MIN_SEC, NC_AUDIO_SEED, NC_AUTHORABLE_SYSTEM_EVENT_KINDS, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, NC_CONFIRM_DEFAULT_TIMEOUT_MS, NC_CONFIRM_MAX_TIMEOUT_MS, NC_CONFIRM_MIN_TIMEOUT_MS, NC_DEFAULT_SNOOZE_MINUTES, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_OCCUPANCY_DEFAULTS, NC_RULE_EDITOR_SECTION_ORDER, NC_RULE_KIND_SPECS, NC_RULE_SECTIONS, NC_SNOOZE_MAX_MINUTES, NC_SYSTEM_DELIVERY, NC_SYSTEM_EVENT_FILTER_KEYS, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeLeaseAdmissionSchema, NativeLeaseSettingsSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcAlarmConfigSchema, NcAlarmModeCoverageSchema, NcAlarmSettingsPatchSchema, NcAlarmSettingsSchema, NcAlarmSkipReasonSchema, NcAlarmSkippedDeviceSchema, NcAudioConditionSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcConfirmExpectSchema, NcConfirmSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRuleNotificationButtonSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcSceneConditionSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcSystemEventConditionSchema, NcSystemEventKindSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionIconSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPERATOR_WRITTEN_STALE_MS, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OVERFLOW_REASON, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdRenderOutcomeEnum, OsdRenderResultSchema, OsdSlotBindingSchema, OsdSlotViewSchema, OsdSourceOptionSchema, OsdSourceSchema, OsdSourceValueTypeEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PRIVACY_MASK_CAP_NAME, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PoolMemoryWatchdog, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RATE_CONTROL_RELAXED, RATE_CONTROL_TIGHT, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RECORDING_EXPORT_MAX_READ_BYTES, RECORDING_TIMELINE_BATCH_MAX, REDACTED_SECRET, RESERVED_BINDING_NAMES, RESTORED_CAP_NAMES, ROOT_BUCKET_KEY, RUNTIME_DEFAULTS, RUNTIME_STATE_POLICY, RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadGopBytesResultSchema, ReadSegmentBytesResultSchema, ReadWindowBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilityForDeviceSchema, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysForDeviceSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingObjectTriggerClassSchema, RecordingRangeSchema, RecordingRebalanceInputSchema, RecordingRebalanceMoveSchema, RecordingRebalancePlanSchema, RecordingRebalanceSkipReasonSchema, RecordingRebalanceSkipSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, RelocateFootageClassSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RelocateResidueInputSchema, RelocateResidueSchema, RenderedAsSchema, ReportMotionInputSchema, ReportedFailureContributionSchema, ReportedLoadContributionSchema, RequestCensusGroupSchema, RequestCensusProcedureSchema, RequestCensusSnapshotSchema, RequestCensusStatusSchema, RetrainAnnotationDraftSchema, RetrainAnnotationKindSchema, RetrainAnnotationSchema, RetrainAnnotationSourceSchema, RetrainAssistResultSchema, RetrainAssistSubjectSchema, RetrainCopyRefusalSchema, RetrainFrameCandidateSchema, RetrainFrameListSchema, RetrainFrameSchema, RetrainFrameSelectionSchema, RetrainMacroClassSchema, RetrainStatusSchema, RetrainTrackSchema, RetrainTransitionResultSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCENE_CONDITIONS, SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, SCENE_DEFAULT_ANCHOR_THRESHOLD, SCENE_DEFAULT_CHECK_INTERVAL_SEC, SCENE_DEFAULT_OBSERVATION_SPACING_SEC, SCENE_DEFAULT_QUIET_SECONDS, SCENE_DEFAULT_UNCOVERED_POLICY, SCENE_DIVERGED, SCENE_RESET_RECAPTURES, SCOPE_PRESETS, SENSOR_FEATURES, SENSOR_MAP, SOURCE_CAPS, SOURCE_CAP_ACTIVE_FIELD, SOURCE_CAP_CHANGED_AT_FIELD, SOURCE_DEVICE_TYPES, SOURCE_INFO_METADATA_KEY, STORAGE_ACCESS_FALLBACK, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SYSTEM_SCOPE_DEVICE_METHODS, SceneCheckSchema, SceneConditionSchema, SceneConfirmSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusForDeviceSchema, SceneMonitorStatusSchema, SceneReferenceSchema, SceneUnavailableSchema, SceneUncoveredPolicySchema, SceneVerdictSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SetLoggingSettingsInputSchema, SetSiteLocationInputSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SiteLocationSchema, SiteLocationSourceSchema, SiteLocationStatusSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, StorageAccessSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, StorageCleanupInputSchema, StorageCleanupJobSchema, StorageCleanupPhaseSchema, StorageCleanupStatusInputSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, StorageMigrationClassSchema, StorageMigrationDestinationsSchema, StorageMigrationDrainInputSchema, StorageMigrationFindingCodeSchema, StorageMigrationFindingSchema, StorageMigrationFootageMoveInputSchema, StorageMigrationInputSchema, StorageMigrationJobSchema, StorageMigrationLaneSchema, StorageMigrationLeaseInputSchema, StorageMigrationMediaMoveInputSchema, StorageMigrationModeSchema, StorageMigrationMoveProgressSchema, StorageMigrationMoveSchema, StorageMigrationMoverSchema, StorageMigrationParticipantSchema, StorageMigrationPhaseSchema, StorageMigrationPlanSchema, StorageMigrationResidueSchema, StorageMigrationSourcesSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMELAPSE_DENSE_FLOOR_SEC, TIMEZONES, TRANSCODE_DOWN_MAX_BITRATE_KBPS, TRANSCODE_DOWN_MAX_HEIGHT, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalInstanceInfoSchema, TerminalLegacyCameraSchema, TerminalOutputBatchSchema, TerminalOutputEventSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestConnectionStatusEnum, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackFlagsPatchSchema, TrackFlagsSchema, TrackProjectionSchema, TrackSchema, TrackSourceSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TrainingExportDeviceTotalsSchema, TrainingExportSummarySchema, TransportPlaneCountsSchema, TransportPlaneSchema, TurnServerSchema, UNATTRIBUTED_BUCKET_KEY, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UnstampedEventMediaCountSchema, UnstampedRowsSchema, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VISIT_MERGE_GAP_MS, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VectorDeclareIndexInputSchema, VectorDeleteByFilterInputSchema, VectorDeleteInputSchema, VectorDeleteResultSchema, VectorFilterSchema, VectorGetInputSchema, VectorGetResultSchema, VectorItemSchema, VectorMatchSchema, VectorMetadataSchema, VectorMetricSchema, VectorQueryInputSchema, VectorQueryResultSchema, VectorStatsInputSchema, VectorStatsResultSchema, VectorUpsertInputSchema, VectorUpsertResultSchema, VibrationStatusSchema, VideoEncodeSchema, WEBRTC_EGRESS_PROFILE, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, __resetLogChannelRegistryForTests, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, asBoolean, asJsonArray, asJsonObject, asNumber, asString, assertTimelapseCadences, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioIsFailClosed, audioKindId, audioLabelChoices, audioMetricsCapability, audioModeOf, audioOrDefaults, audioPlanFromEncodeProfile, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, bareAddonId, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildAudioArgs, buildEventKindDescriptor, buildFfmpegArgs, buildInputArgs, buildModelVariantGroups, buildNcTaxonomy, buildRoleScopes, buildStreamParamsConfigSchema, buildVideoArgs, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, canonicalEgressPlan, carbonMonoxideCapability, cellsToRects, classifyBearerPrincipal, classifyStream, classifyStreams, climateControlCapability, clusterModelSettingKey, clusterStepSettingFieldsFor, clusterStepSettingKey, collectHydratedFieldEntries, collectHydratedFieldValues, collectSecretConfigKeys, colorCapability, colorForKind, commitWatchdogRestart, compileExpression, compileExpressionSafe, composeSwitchedOff, conditionDepth, conditionExclusionReason, conditionVisibleForKind, connectionTestCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, coreBlockAddonId, coreBlockIdFromAddonId, coreBlocksCapability, cosineSimilarity, countConditionLeaves, coverCapability, createDeviceProxy, createDurableState, createEvent, createEventBusSliceSource, createExpressionScope, createHwAccelCache, createLazyTrpcSource, createLogChannelsProvider, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, declarationOwnerNodeId, declareLogChannel, decodeVectorBase64, decoderCapability, defaultDeliveryForSection, defaultDeviceFor, defineCustomActions, deriveBatteryPresence, deriveCameraSwitches, deriveDetailCropRect, deriveRecordingMode, describeModelVariant, detectAccessRole, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceSelectorMatches, deviceStateCapability, deviceStatusCapability, doorbellCapability, droppedConditionsForKind, egressTranscodeSharingKey, egressTransportFromRequest, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, encodeVectorBase64, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateExpressionSource, evaluatePoolMemory, evaluateSensorEdge, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, failureContributionCapability, failureRate, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, foldSnapshotByFunction, formatForBackend, formatForRuntime, gasCapability, generateAutomationBlock, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getLogChannelRegistry, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, inferModelProvider, initialPoolMemoryState, integrationsCapability, intercomCapability, invocationFromEncodeProfile, isAgentOnlyPlacement, isArrayOutputSchema, isAudioLabelSelected, isAudioRule, isBaseConditionKey, isBatteryPresenceFault, isClusterScopedStep, isCollectionArrayMethod, isDeployableToAgent, isDetectionMacroClass, isDeviceConfigCap, isDeviceScopedCap, isEvent, isFirstLevelMacroClass, isIsolatedBuiltin, isNode, isObjectInput, isOccupancyRule, isRestoredCap, isSameAddonId, isScheduleActive, isSecretConfigField, isSoftwareDecode, isSourceCap, isSystemDelivery, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, loadContributionCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logBannerArgs, logChannelsCapability, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, methodAccessForHttpMethod, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeAudioLabel, normalizeTokenScopes, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, osdManagerCapability, overlayClusterStepSettings, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProcStatus, parseProfileBrokerId, parseRuleSection, parseStreamParamsFormPatch, patchAudio, petFeederCapability, pickAccessoryControl, pickClusterStepModels, pickClusterStepSettings, pickDetailCropConvention, pickNativeLeaseOverride, pickPreferredRtspEntry, pickRestartCandidate, pickVideoEncoder, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, poolMemoryThreshold, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, principalMayReachAddon, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readClusterStepModels, readClusterStepSettings, readDetailCropConvention, readDeviceStateFrom, readNativeLeaseOverride, readNodePin, readTimelapseGeneratedAt, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, reducePoints, requiresPython, resetPoolBaseline, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveBucketMs, resolveCapMount, resolveClusterStepModelId, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveEgressDecodeHwAccel, resolveFormat, resolveHydratedFieldValue, resolveMethodAuth, resolveModelFormat, resolveMutate, resolvePoolMemoryPolicy, resolveRecordingProfiles, resolveRunnerId, resolveVariantModelId, resolveViewableDeviceIds, roleSpec, ruleEditorSectionsForKind, ruleKindOf, ruleKindSpec, ruleMatchesSection, ruleSection, ruleSectionOf, ruleSeedForSection, runInferenceStep, runtimeDevices, runtimeStatePolicyFor, sceneMonitorCapability, schemaDeclaresAnyField, scopeInherits, scopeKey, scopesAllowAddon, scopesAllowDeviceCap, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, sliceActiveValue, sliceChangedAt, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageMigrationCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, summarisePrivacyAudio, summarizeEffectiveScope, supportedRuntimes, switchCapability, switchedOffIds, synthesizeSourceInfo, systemCapability, systemEventFilterApplies, systemEventFilterAppliesToAnyKind, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toNodeId, toStreamSourceEntry, toastCapability, toggleAudioLabel, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, validateRecipeBounds, valveCapability, vectorDimFromBase64, vectorStoreCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
52227
|
+
export { ACCESSORY_LABEL, ACCESS_ROLES, ALEXA_EGRESS_PROFILE, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_ANALYSIS_CAP_NAME, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AUDIO_PRESETS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionCandidateResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, AdoptionJobSchema, AdoptionJobStateSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, AdoptionOutcomeSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationActionSchema, AutomationConditionOperatorSchema, AutomationConditionSchema, AutomationControlStatusSchema, AutomationRecipeSchema, AutomationTriggerSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BASE_LIVE_EGRESS_PROFILE, BATTERY_DEVICE_PROFILE, BATTERY_UNREACHABLE_AFTER_MS, BOOT_RECOVERY_BACKOFF_MS, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, BulkRecordSchema, CAMERA_SWITCH_CATALOG, CAMERA_SWITCH_ORDER, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, CLASS_MAP_MACRO_TARGETS, CLUSTER_MODEL_SCOPED_STEPS, CLUSTER_MODEL_SECTION_ID, CLUSTER_STEP_SETTING_FIELDS, COCO_80_LABELS, COCO_TO_MACRO, CONNECTION_TEST_TIMEOUT_MS, CORE_BLOCKS_ADDON_ID, CORE_BLOCK_ADDON_PREFIX, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraOccupancySnapshotForDeviceSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusDegradationReasonSchema, CameraStatusDegradationSchema, CameraStatusSchema, CameraStatusStageSchema, CameraStreamSchema, CameraSwitchAuthoritySchema, CameraSwitchGroupSchema, CameraSwitchIdSchema, CameraSwitchSchema, CameraSwitchUnavailableReasonSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectionTestDescriptorSchema, ConnectionTestInputSchema, ConnectionTestOutcomeSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoreBlockCompileResultSchema, CoreBlockInputSchema, CoreBlockPlacementSchema, CoreBlockSchema, CoreBlockStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DECLARED_DEVICE_SWEEP_LIMIT, DECLARED_INTEGRATION_FIXED_KEY, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_CLUSTER_STEP_MODELS, DEFAULT_CLUSTER_STEP_SETTINGS, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_DETAIL_CROP_CONVENTION, DEFAULT_EVENTS_BAND_BUFFER_SEC, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, DEFAULT_NATIVE_LEASE_SETTINGS, DEFAULT_POOL_MEMORY_POLICY, DEFAULT_RECORDING_PROFILES, DEFAULT_RETENTION, DEFAULT_RUNTIME_STATE_DURABILITY, DEFAULT_TIMELAPSE_PREVIEW_TEXT, DEFAULT_TOKEN_EXPIRY, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, DETECTION_MACRO_CLASSES, DETECTION_PIPELINE_CAP_NAME, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_CHILDREN_BATCH_MAX, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DeclaredDevices, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetailCropConventionSchema, DetectionCatalogClassMapSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceSelectorSchema, DeviceStatusSchema, DeviceType, DiagnosticIdSchema, DiagnosticWindowPatchSchema, DiagnosticWindowSchema, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DiskReconcileJobSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_DENSITY_BATCH_MAX, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPORT_DENSE_MAX_RANGES, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, EgressEncodeSchema, EgressRateControlSchema, EgressTranscodeRequestSchema, EgressTranscodeSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventDensityBucketSchema, EventDensityForDeviceSchema, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventKindsForDeviceSchema, EventMediaArtifactSchema, EventMediaCoverageSchema, EventMediaKindSchema, EventMediaProductionSchema, EventSourceType, ExportBytesSchema, ExportDenseRangeSchema, ExportDenseSchema, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionBindingSourceSchema, ExpressionEvalError, ExpressionFieldBindingSchema, ExpressionGlobalBindingSchema, ExpressionLiteralBindingSchema, ExpressionParseError, ExpressionSourceSchema, FIRST_LEVEL_MACRO_CLASSES, FULL_IMAGE_BBOX, FailureContributionSchema, FailureCounters, FailureReasonCountSchema, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, Fmp4BoxSplitter, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, FrameLazyCountersSchema, FrameLazyMetricsSchema, GasStatusSchema, GetLoggingSettingsInputSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HAP_AUDIO_BASE, HAP_AUDIO_BITRATE_KBPS, HAP_AUDIO_VBV_KBITS, HAP_KEYFRAME_INTERVAL_SEC, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HfModelResolutionSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, INFERENCE_DEVICE_EXCLUSION_REASONS, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, InferenceDeviceExclusionReasonSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOAD_CONTRIBUTION_ATTRIBUTIONS, LOAD_CONTRIBUTION_ROLES, LOG_CHANNEL_TICK_MS, LOG_LEVEL_RANK, LabelAttributionSchema, LabelDefinitionSchema, LabelTierSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LedgerWalkDeviceReportSchema, LedgerWalkInputSchema, LedgerWalkRefusalSchema, LedgerWalkReportSchema, LedgerWalkSkipCountsSchema, LedgerWalkSkipReasonSchema, LinkedDeviceSchema, LinkedDevicesModeSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmDownloadProgressSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRetryPolicySchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmTimeoutDefaults, LlmUsageRollupSchema, LlmUsageSchema, LoadContributionSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogChannelApplyResultSchema, LogChannelDescriptorSchema, LogChannelGate, LogChannelLevelSchema, LogChannelRegistry, LogChannelWindowPatchSchema, LogChannelWindowSchema, LogChannelWindowStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoggingEffectiveSchema, LoggingExplicitSchema, LoggingLevelLayerSchema, LoggingLevelSourceSchema, LoggingScopeKindSchema, LoggingSettingsPatchSchema, LoggingSettingsStateSchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_CLIP_EVENT_IDS, MAX_CLIP_LABELS, MAX_CONDITION_DEPTH, MAX_CONDITION_LEAVES, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, MAX_KEYS, MAX_REASONS_PER_KEY, MAX_SENSOR_TRIGGER_DEVICES, METHOD_ACCESS_MAP, METHOD_DEVICE_SELECTORS, MODEL_FORMATS, MODEL_PROVIDER_IDS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelExtraFileSchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileInfoSchema, MediaFileKindEnum, MediaFileRefSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MediaRelocateModeSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, MigrateDeviceResultSchema, MigrateSwitchOutcomeSchema, MigrateSwitchReportSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelProviderIdSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NATIVE_LEASE_ACTIVITY_FIELD, NATIVE_LEASE_ACTIVITY_KEY, NATIVE_LEASE_ADMISSION_FIELD, NATIVE_LEASE_ADMISSION_KEY, NATIVE_LEASE_BUDGET_FIELD, NATIVE_LEASE_BUDGET_KEY, NATIVE_LEASE_HOLD_FIELD, NATIVE_LEASE_HOLD_KEY, NATIVE_LEASE_SCENE_BUDGET_FIELD, NATIVE_LEASE_SCENE_BUDGET_KEY, NATIVE_LEASE_SECTION_ID, NATIVE_LEASE_TILE_BUDGET_FIELD, NATIVE_LEASE_TILE_BUDGET_KEY, NC_ALARM_SYSTEM_EVENT_KINDS, NC_AUDIO_CONFIRM_HITS_DEFAULT, NC_AUDIO_CONFIRM_HITS_MAX, NC_AUDIO_CONFIRM_HITS_MIN, NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, NC_AUDIO_DBFS_FLOOR, NC_AUDIO_DB_MAX, NC_AUDIO_DB_MIN, NC_AUDIO_DB_OFFERED, NC_AUDIO_DB_STEP, NC_AUDIO_DEFAULTS, NC_AUDIO_HIT_PERCENT_MAX, NC_AUDIO_HIT_PERCENT_MIN, NC_AUDIO_SAMPLING_MAX_SEC, NC_AUDIO_SAMPLING_MIN_SEC, NC_AUDIO_SEED, NC_AUTHORABLE_SYSTEM_EVENT_KINDS, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, NC_CONFIRM_DEFAULT_TIMEOUT_MS, NC_CONFIRM_MAX_TIMEOUT_MS, NC_CONFIRM_MIN_TIMEOUT_MS, NC_DEFAULT_SNOOZE_MINUTES, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_OCCUPANCY_DEFAULTS, NC_RULE_EDITOR_SECTION_ORDER, NC_RULE_KIND_SPECS, NC_RULE_SECTIONS, NC_SNOOZE_MAX_MINUTES, NC_SYSTEM_DELIVERY, NC_SYSTEM_EVENT_FILTER_KEYS, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeLeaseAdmissionSchema, NativeLeaseSettingsSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcAlarmConfigSchema, NcAlarmModeCoverageSchema, NcAlarmSettingsPatchSchema, NcAlarmSettingsSchema, NcAlarmSkipReasonSchema, NcAlarmSkippedDeviceSchema, NcAudioConditionSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcConfirmExpectSchema, NcConfirmSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRuleNotificationButtonSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcSceneConditionSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcSystemEventConditionSchema, NcSystemEventKindSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionIconSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPERATOR_WRITTEN_STALE_MS, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OVERFLOW_REASON, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdRenderOutcomeEnum, OsdRenderResultSchema, OsdSlotBindingSchema, OsdSlotViewSchema, OsdSourceOptionSchema, OsdSourceSchema, OsdSourceValueTypeEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PRIVACY_MASK_CAP_NAME, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PoolMemoryWatchdog, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RATE_CONTROL_RELAXED, RATE_CONTROL_TIGHT, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RECORDING_EXPORT_MAX_READ_BYTES, RECORDING_TIMELINE_BATCH_MAX, REDACTED_SECRET, RESERVED_BINDING_NAMES, RESTORED_CAP_NAMES, ROOT_BUCKET_KEY, RUNTIME_DEFAULTS, RUNTIME_STATE_POLICY, RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadGopBytesResultSchema, ReadSegmentBytesResultSchema, ReadWindowBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilityForDeviceSchema, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysForDeviceSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingObjectTriggerClassSchema, RecordingRangeSchema, RecordingRebalanceInputSchema, RecordingRebalanceMoveSchema, RecordingRebalancePlanSchema, RecordingRebalanceSkipReasonSchema, RecordingRebalanceSkipSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, RelocateFootageClassSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RelocateResidueInputSchema, RelocateResidueSchema, RenderedAsSchema, ReportMotionInputSchema, ReportedFailureContributionSchema, ReportedLoadContributionSchema, RequestCensusGroupSchema, RequestCensusProcedureSchema, RequestCensusSnapshotSchema, RequestCensusStatusSchema, RetrainAnnotationDraftSchema, RetrainAnnotationKindSchema, RetrainAnnotationSchema, RetrainAnnotationSourceSchema, RetrainAssistResultSchema, RetrainAssistSubjectSchema, RetrainCopyRefusalSchema, RetrainFrameCandidateSchema, RetrainFrameListSchema, RetrainFrameSchema, RetrainFrameSelectionSchema, RetrainMacroClassSchema, RetrainStatusSchema, RetrainTrackSchema, RetrainTransitionResultSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCENE_CONDITIONS, SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, SCENE_DEFAULT_ANCHOR_THRESHOLD, SCENE_DEFAULT_CHECK_INTERVAL_SEC, SCENE_DEFAULT_OBSERVATION_SPACING_SEC, SCENE_DEFAULT_QUIET_SECONDS, SCENE_DEFAULT_UNCOVERED_POLICY, SCENE_DIVERGED, SCENE_RESET_RECAPTURES, SCOPE_PRESETS, SENSOR_FEATURES, SENSOR_MAP, SOURCE_CAPS, SOURCE_CAP_ACTIVE_FIELD, SOURCE_CAP_CHANGED_AT_FIELD, SOURCE_DEVICE_TYPES, SOURCE_INFO_METADATA_KEY, STORAGE_ACCESS_FALLBACK, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SYSTEM_SCOPE_DEVICE_METHODS, SceneCheckSchema, SceneConditionSchema, SceneConfirmSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusForDeviceSchema, SceneMonitorStatusSchema, SceneReferenceSchema, SceneUnavailableSchema, SceneUncoveredPolicySchema, SceneVerdictSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SetLoggingSettingsInputSchema, SetSiteLocationInputSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SiteLocationSchema, SiteLocationSourceSchema, SiteLocationStatusSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, StorageAccessSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, StorageCleanupInputSchema, StorageCleanupJobSchema, StorageCleanupPhaseSchema, StorageCleanupStatusInputSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, StorageMigrationClassSchema, StorageMigrationDestinationsSchema, StorageMigrationDrainInputSchema, StorageMigrationFindingCodeSchema, StorageMigrationFindingSchema, StorageMigrationFootageMoveInputSchema, StorageMigrationInputSchema, StorageMigrationJobSchema, StorageMigrationLaneSchema, StorageMigrationLeaseInputSchema, StorageMigrationMediaMoveInputSchema, StorageMigrationModeSchema, StorageMigrationMoveProgressSchema, StorageMigrationMoveSchema, StorageMigrationMoverSchema, StorageMigrationParticipantSchema, StorageMigrationPhaseSchema, StorageMigrationPlanSchema, StorageMigrationResidueSchema, StorageMigrationSourcesSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMELAPSE_DENSE_FLOOR_SEC, TIMEZONES, TRANSCODE_DOWN_MAX_BITRATE_KBPS, TRANSCODE_DOWN_MAX_HEIGHT, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalInstanceInfoSchema, TerminalLegacyCameraSchema, TerminalOutputBatchSchema, TerminalOutputEventSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestConnectionStatusEnum, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackFlagsPatchSchema, TrackFlagsSchema, TrackProjectionSchema, TrackSchema, TrackSourceSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TrainingExportDeviceTotalsSchema, TrainingExportSummarySchema, TransportPlaneCountsSchema, TransportPlaneSchema, TurnServerSchema, UNATTRIBUTED_BUCKET_KEY, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UnstampedEventMediaCountSchema, UnstampedRowsSchema, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VISIT_MERGE_GAP_MS, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VectorDeclareIndexInputSchema, VectorDeleteByFilterInputSchema, VectorDeleteInputSchema, VectorDeleteResultSchema, VectorFilterSchema, VectorGetInputSchema, VectorGetResultSchema, VectorItemSchema, VectorMatchSchema, VectorMetadataSchema, VectorMetricSchema, VectorQueryInputSchema, VectorQueryResultSchema, VectorStatsInputSchema, VectorStatsResultSchema, VectorUpsertInputSchema, VectorUpsertResultSchema, VibrationStatusSchema, VideoEncodeSchema, WEBRTC_EGRESS_PROFILE, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, __resetLogChannelRegistryForTests, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, asBoolean, asJsonArray, asJsonObject, asNumber, asString, assertTimelapseCadences, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioIsFailClosed, audioKindId, audioLabelChoices, audioMetricsCapability, audioModeOf, audioOrDefaults, audioPlanFromEncodeProfile, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, bareAddonId, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildAudioArgs, buildEventKindDescriptor, buildFfmpegArgs, buildInputArgs, buildModelVariantGroups, buildNcTaxonomy, buildRoleScopes, buildStreamParamsConfigSchema, buildVideoArgs, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, canonicalEgressPlan, carbonMonoxideCapability, cellsToRects, classifyBearerPrincipal, classifyStream, classifyStreams, climateControlCapability, clusterModelSettingKey, clusterStepSettingFieldsFor, clusterStepSettingKey, collectHydratedFieldEntries, collectHydratedFieldValues, collectSecretConfigKeys, colorCapability, colorForKind, commitWatchdogRestart, compileExpression, compileExpressionSafe, composeSwitchedOff, conditionDepth, conditionExclusionReason, conditionVisibleForKind, connectionTestCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, coreBlockAddonId, coreBlockIdFromAddonId, coreBlocksCapability, cosineSimilarity, countConditionLeaves, coverCapability, createDeviceProxy, createDurableState, createEvent, createEventBusSliceSource, createExpressionScope, createHwAccelCache, createLazyTrpcSource, createLogChannelsProvider, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, declarationOwnerNodeId, declareLogChannel, decodeVectorBase64, decoderCapability, defaultDeliveryForSection, defaultDeviceFor, defineCustomActions, deriveBatteryPresence, deriveCameraSwitches, deriveDetailCropRect, deriveRecordingMode, describeModelVariant, detectAccessRole, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceSelectorMatches, deviceStateCapability, deviceStatusCapability, doorbellCapability, droppedConditionsForKind, egressTranscodeSharingKey, egressTransportFromRequest, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, encodeVectorBase64, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateExpressionSource, evaluatePoolMemory, evaluateSensorEdge, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, failureContributionCapability, failureRate, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, foldSnapshotByFunction, formatForBackend, formatForRuntime, gasCapability, generateAutomationBlock, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getLogChannelRegistry, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, inferModelProvider, initialPoolMemoryState, integrationsCapability, intercomCapability, invocationFromEncodeProfile, isAgentOnlyPlacement, isArrayOutputSchema, isAudioLabelSelected, isAudioRule, isBaseConditionKey, isBatteryPresenceFault, isClusterScopedStep, isCollectionArrayMethod, isDeployableToAgent, isDetectionMacroClass, isDeviceConfigCap, isDeviceScopedCap, isEvent, isFirstLevelMacroClass, isIsolatedBuiltin, isNode, isObjectInput, isOccupancyRule, isRestoredCap, isSameAddonId, isScheduleActive, isSecretConfigField, isSoftwareDecode, isSourceCap, isSystemDelivery, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, loadContributionCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logBannerArgs, logChannelsCapability, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, methodAccessForHttpMethod, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeAudioLabel, normalizeTokenScopes, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, osdManagerCapability, overlayClusterStepSettings, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProcStatus, parseProfileBrokerId, parseRuleSection, parseStreamParamsFormPatch, patchAudio, petFeederCapability, pickAccessoryControl, pickClusterStepModels, pickClusterStepSettings, pickDetailCropConvention, pickNativeLeaseOverride, pickPreferredRtspEntry, pickRestartCandidate, pickVideoEncoder, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, poolMemoryThreshold, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, principalMayReachAddon, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readClusterStepModels, readClusterStepSettings, readDetailCropConvention, readDeviceStateFrom, readNativeLeaseOverride, readNodePin, readTimelapseGeneratedAt, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, reducePoints, requiresPython, resetPoolBaseline, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveBucketMs, resolveCapMount, resolveClusterStepModelId, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveEgressDecodeHwAccel, resolveFormat, resolveHydratedFieldValue, resolveMethodAuth, resolveModelFormat, resolveMutate, resolvePoolMemoryPolicy, resolveRecordingProfiles, resolveRunnerId, resolveVariantModelId, resolveViewableDeviceIds, roleSpec, ruleEditorSectionsForKind, ruleKindOf, ruleKindSpec, ruleMatchesSection, ruleSection, ruleSectionOf, ruleSeedForSection, runInferenceStep, runtimeDevices, runtimeStatePolicyFor, sceneMonitorCapability, schemaDeclaresAnyField, scopeInherits, scopeKey, scopesAllowAddon, scopesAllowDeviceCap, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, sliceActiveValue, sliceChangedAt, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageMigrationCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, summarisePrivacyAudio, summarizeEffectiveScope, supportedRuntimes, switchCapability, switchedOffIds, synthesizeSourceInfo, systemCapability, systemEventFilterApplies, systemEventFilterAppliesToAnyKind, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toNodeId, toStreamSourceEntry, toastCapability, toggleAudioLabel, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, validateRecipeBounds, valveCapability, vectorDimFromBase64, vectorStoreCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
@@ -33,6 +33,7 @@ export declare const OpsLogReasonSchema: z.ZodEnum<{
|
|
|
33
33
|
retention: "retention";
|
|
34
34
|
quota: "quota";
|
|
35
35
|
maintenance: "maintenance";
|
|
36
|
+
"orphaned-device": "orphaned-device";
|
|
36
37
|
}>;
|
|
37
38
|
export type OpsLogReason = z.infer<typeof OpsLogReasonSchema>;
|
|
38
39
|
/** One audit row, shared verbatim by both domains. */
|
|
@@ -57,6 +58,7 @@ export declare const OpsLogEntrySchema: z.ZodObject<{
|
|
|
57
58
|
retention: "retention";
|
|
58
59
|
quota: "quota";
|
|
59
60
|
maintenance: "maintenance";
|
|
61
|
+
"orphaned-device": "orphaned-device";
|
|
60
62
|
}>;
|
|
61
63
|
deviceId: z.ZodNullable<z.ZodNumber>;
|
|
62
64
|
nodeId: z.ZodString;
|