@camstack/types 1.2.65 → 1.2.67
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/addon.js +2 -2
- package/dist/addon.mjs +2 -2
- package/dist/capabilities/air-quality-sensor.cap.d.ts +10 -0
- package/dist/capabilities/alarm-panel.cap.d.ts +10 -0
- package/dist/capabilities/ambient-light-sensor.cap.d.ts +10 -0
- package/dist/capabilities/audio-metrics.cap.d.ts +7 -0
- package/dist/capabilities/automation-control.cap.d.ts +7 -0
- package/dist/capabilities/battery.cap.d.ts +10 -0
- package/dist/capabilities/binary.cap.d.ts +10 -0
- package/dist/capabilities/brightness.cap.d.ts +7 -0
- package/dist/capabilities/camera-streams.cap.d.ts +7 -0
- package/dist/capabilities/capability-definition.d.ts +58 -0
- package/dist/capabilities/carbon-monoxide.cap.d.ts +10 -0
- package/dist/capabilities/climate-control.cap.d.ts +7 -0
- package/dist/capabilities/color.cap.d.ts +7 -0
- package/dist/capabilities/connectivity.cap.d.ts +10 -0
- package/dist/capabilities/consumables.cap.d.ts +7 -0
- package/dist/capabilities/contact.cap.d.ts +10 -0
- package/dist/capabilities/control.cap.d.ts +7 -0
- package/dist/capabilities/cover.cap.d.ts +10 -0
- package/dist/capabilities/day-night.cap.d.ts +10 -0
- package/dist/capabilities/device-discovery.cap.d.ts +7 -0
- package/dist/capabilities/device-status.cap.d.ts +10 -0
- package/dist/capabilities/doorbell.cap.d.ts +7 -0
- package/dist/capabilities/enum-sensor.cap.d.ts +10 -0
- package/dist/capabilities/event-emitter.cap.d.ts +7 -0
- package/dist/capabilities/fan-control.cap.d.ts +7 -0
- package/dist/capabilities/feature-probe.cap.d.ts +7 -0
- package/dist/capabilities/flood.cap.d.ts +10 -0
- package/dist/capabilities/gas.cap.d.ts +10 -0
- package/dist/capabilities/humidifier.cap.d.ts +7 -0
- package/dist/capabilities/humidity-sensor.cap.d.ts +10 -0
- package/dist/capabilities/image-settings.cap.d.ts +10 -0
- package/dist/capabilities/image.cap.d.ts +7 -0
- package/dist/capabilities/index.d.ts +3 -3
- package/dist/capabilities/lawn-mower-control.cap.d.ts +7 -0
- package/dist/capabilities/lock-control.cap.d.ts +10 -0
- package/dist/capabilities/media-player.cap.d.ts +7 -0
- package/dist/capabilities/motion-trigger.cap.d.ts +7 -0
- package/dist/capabilities/motion-zones.cap.d.ts +10 -0
- package/dist/capabilities/motion.cap.d.ts +7 -0
- package/dist/capabilities/native-object-detection.cap.d.ts +10 -0
- package/dist/capabilities/notification-output.cap.d.ts +62 -0
- package/dist/capabilities/notification-rules.cap.d.ts +134 -6
- package/dist/capabilities/notifier.cap.d.ts +7 -0
- package/dist/capabilities/numeric-sensor.cap.d.ts +10 -0
- package/dist/capabilities/osd-manager.cap.d.ts +14 -0
- package/dist/capabilities/pet-feeder.cap.d.ts +7 -0
- package/dist/capabilities/power-meter.cap.d.ts +10 -0
- package/dist/capabilities/presence.cap.d.ts +10 -0
- package/dist/capabilities/pressure-sensor.cap.d.ts +10 -0
- package/dist/capabilities/privacy-mask.cap.d.ts +10 -0
- package/dist/capabilities/ptz-autotrack.cap.d.ts +7 -0
- package/dist/capabilities/scene-monitor.cap.d.ts +7 -0
- package/dist/capabilities/script-runner.cap.d.ts +7 -0
- package/dist/capabilities/smoke.cap.d.ts +10 -0
- package/dist/capabilities/stream-params.cap.d.ts +10 -0
- package/dist/capabilities/switch.cap.d.ts +10 -0
- package/dist/capabilities/tamper.cap.d.ts +10 -0
- package/dist/capabilities/temperature-sensor.cap.d.ts +10 -0
- package/dist/capabilities/update.cap.d.ts +7 -0
- package/dist/capabilities/vacuum-control.cap.d.ts +7 -0
- package/dist/capabilities/valve.cap.d.ts +7 -0
- package/dist/capabilities/vibration.cap.d.ts +10 -0
- package/dist/capabilities/water-heater.cap.d.ts +7 -0
- package/dist/capabilities/weather.cap.d.ts +7 -0
- package/dist/capabilities/zone-analytics.cap.d.ts +7 -0
- package/dist/capabilities/zone-rules.cap.d.ts +7 -0
- package/dist/capabilities/zones.cap.d.ts +7 -0
- package/dist/catalogs/coco-classmap.d.ts +21 -0
- package/dist/device/system-mirror.d.ts +37 -0
- package/dist/generated/runtime-state-durability.d.ts +31 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1345 -91
- package/dist/index.mjs +1322 -92
- package/dist/notification/audio-condition.d.ts +118 -0
- package/dist/{sleep-BxjBLp3L.mjs → sleep-CSgK0rNX.mjs} +3 -1
- package/dist/{sleep-BszXLEvP.js → sleep-Dh1EJSqF.js} +8 -0
- package/package.json +1 -1
|
@@ -79,6 +79,8 @@ export declare const NcSystemEventKindSchema: z.ZodEnum<{
|
|
|
79
79
|
"alarm-triggered": "alarm-triggered";
|
|
80
80
|
"alarm-armed": "alarm-armed";
|
|
81
81
|
"alarm-disarmed": "alarm-disarmed";
|
|
82
|
+
"alarm-arming": "alarm-arming";
|
|
83
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
82
84
|
"camera-online": "camera-online";
|
|
83
85
|
"camera-offline": "camera-offline";
|
|
84
86
|
"camera-disabled": "camera-disabled";
|
|
@@ -92,12 +94,16 @@ export type NcSystemEventKind = z.infer<typeof NcSystemEventKindSchema>;
|
|
|
92
94
|
*/
|
|
93
95
|
export declare const NC_AUTHORABLE_SYSTEM_EVENT_KINDS: readonly NcSystemEventKind[];
|
|
94
96
|
/**
|
|
95
|
-
* The panel's
|
|
97
|
+
* The panel's transitions, as ONE list.
|
|
96
98
|
*
|
|
97
99
|
* Named here rather than spelled out at each of the four sites that need them
|
|
98
100
|
* (the emitter, the intake, the editor group, the combined-notification gate),
|
|
99
|
-
* because a
|
|
100
|
-
*
|
|
101
|
+
* because a transition added to the enum and forgotten at one of them is an
|
|
102
|
+
* alarm state nobody can be notified about. That is exactly what this list
|
|
103
|
+
* failed to prevent while it held three: `alarm-arming` was the fourth.
|
|
104
|
+
*
|
|
105
|
+
* In LIFECYCLE order, which is the order an editor lists them in and the order
|
|
106
|
+
* a person experiences them — not the order they were added.
|
|
101
107
|
*/
|
|
102
108
|
export declare const NC_ALARM_SYSTEM_EVENT_KINDS: readonly NcSystemEventKind[];
|
|
103
109
|
/**
|
|
@@ -120,6 +126,8 @@ export declare const NcSystemEventConditionSchema: z.ZodObject<{
|
|
|
120
126
|
"alarm-triggered": "alarm-triggered";
|
|
121
127
|
"alarm-armed": "alarm-armed";
|
|
122
128
|
"alarm-disarmed": "alarm-disarmed";
|
|
129
|
+
"alarm-arming": "alarm-arming";
|
|
130
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
123
131
|
"camera-online": "camera-online";
|
|
124
132
|
"camera-offline": "camera-offline";
|
|
125
133
|
"camera-disabled": "camera-disabled";
|
|
@@ -137,6 +145,22 @@ export type NcSystemEventCondition = z.infer<typeof NcSystemEventConditionSchema
|
|
|
137
145
|
* unique key `(ruleId, trackId, targetId)`. Not a rule field in P1.
|
|
138
146
|
*/
|
|
139
147
|
export declare const NC_MAX_PER_TRACK_IMMEDIATE = 1;
|
|
148
|
+
/** Hard ceiling on a window (24h). A snooze that could not expire would be an
|
|
149
|
+
* outage the operator asked for once and forgot. */
|
|
150
|
+
export declare const NC_SNOOZE_MAX_MINUTES = 1440;
|
|
151
|
+
/**
|
|
152
|
+
* The durations a notification offers when its rule does not say otherwise.
|
|
153
|
+
*
|
|
154
|
+
* MINUTES, and short ones: a snooze button is answered on a lock screen, and
|
|
155
|
+
* the three choices that fit there are "the next few minutes", "the next half
|
|
156
|
+
* hour" and "the next hour". Anything longer is a decision somebody sits down
|
|
157
|
+
* to make, which is what the app's own snooze surface is for.
|
|
158
|
+
*
|
|
159
|
+
* Resolved in CODE (`snoozeChoices`), never as a Zod default — see
|
|
160
|
+
* {@link NcRuleInputSchema.shape.snoozeOptions} for why the distinction is
|
|
161
|
+
* load-bearing.
|
|
162
|
+
*/
|
|
163
|
+
export declare const NC_DEFAULT_SNOOZE_MINUTES: readonly number[];
|
|
140
164
|
/** One weekly activation window. `startMinute > endMinute` crosses midnight. */
|
|
141
165
|
export declare const NcScheduleWindowSchema: z.ZodObject<{
|
|
142
166
|
days: z.ZodArray<z.ZodNumber>;
|
|
@@ -351,6 +375,7 @@ export declare const NcRuleNotificationButtonSchema: z.ZodObject<{
|
|
|
351
375
|
label: z.ZodString;
|
|
352
376
|
sequence: z.ZodString;
|
|
353
377
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
378
|
+
camera: "camera";
|
|
354
379
|
light: "light";
|
|
355
380
|
lock: "lock";
|
|
356
381
|
view: "view";
|
|
@@ -363,6 +388,10 @@ export declare const NcRuleNotificationButtonSchema: z.ZodObject<{
|
|
|
363
388
|
play: "play";
|
|
364
389
|
acknowledge: "acknowledge";
|
|
365
390
|
silence: "silence";
|
|
391
|
+
snooze: "snooze";
|
|
392
|
+
"arm-home": "arm-home";
|
|
393
|
+
"arm-away": "arm-away";
|
|
394
|
+
"arm-night": "arm-night";
|
|
366
395
|
alert: "alert";
|
|
367
396
|
}>>;
|
|
368
397
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -397,6 +426,7 @@ export declare const NcRuleActionsSchema: z.ZodObject<{
|
|
|
397
426
|
label: z.ZodString;
|
|
398
427
|
sequence: z.ZodString;
|
|
399
428
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
429
|
+
camera: "camera";
|
|
400
430
|
light: "light";
|
|
401
431
|
lock: "lock";
|
|
402
432
|
view: "view";
|
|
@@ -409,6 +439,10 @@ export declare const NcRuleActionsSchema: z.ZodObject<{
|
|
|
409
439
|
play: "play";
|
|
410
440
|
acknowledge: "acknowledge";
|
|
411
441
|
silence: "silence";
|
|
442
|
+
snooze: "snooze";
|
|
443
|
+
"arm-home": "arm-home";
|
|
444
|
+
"arm-away": "arm-away";
|
|
445
|
+
"arm-night": "arm-night";
|
|
412
446
|
alert: "alert";
|
|
413
447
|
}>>;
|
|
414
448
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -491,6 +525,8 @@ export declare const NcConditionsSchema: z.ZodObject<{
|
|
|
491
525
|
"alarm-triggered": "alarm-triggered";
|
|
492
526
|
"alarm-armed": "alarm-armed";
|
|
493
527
|
"alarm-disarmed": "alarm-disarmed";
|
|
528
|
+
"alarm-arming": "alarm-arming";
|
|
529
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
494
530
|
"camera-online": "camera-online";
|
|
495
531
|
"camera-offline": "camera-offline";
|
|
496
532
|
"camera-disabled": "camera-disabled";
|
|
@@ -756,6 +792,8 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
756
792
|
"alarm-triggered": "alarm-triggered";
|
|
757
793
|
"alarm-armed": "alarm-armed";
|
|
758
794
|
"alarm-disarmed": "alarm-disarmed";
|
|
795
|
+
"alarm-arming": "alarm-arming";
|
|
796
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
759
797
|
"camera-online": "camera-online";
|
|
760
798
|
"camera-offline": "camera-offline";
|
|
761
799
|
"camera-disabled": "camera-disabled";
|
|
@@ -848,6 +886,7 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
848
886
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
849
887
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
850
888
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
889
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
851
890
|
actions: z.ZodOptional<z.ZodObject<{
|
|
852
891
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
853
892
|
name: z.ZodString;
|
|
@@ -869,6 +908,7 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
869
908
|
label: z.ZodString;
|
|
870
909
|
sequence: z.ZodString;
|
|
871
910
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
911
|
+
camera: "camera";
|
|
872
912
|
light: "light";
|
|
873
913
|
lock: "lock";
|
|
874
914
|
view: "view";
|
|
@@ -881,6 +921,10 @@ export declare const NcRuleInputSchema: z.ZodObject<{
|
|
|
881
921
|
play: "play";
|
|
882
922
|
acknowledge: "acknowledge";
|
|
883
923
|
silence: "silence";
|
|
924
|
+
snooze: "snooze";
|
|
925
|
+
"arm-home": "arm-home";
|
|
926
|
+
"arm-away": "arm-away";
|
|
927
|
+
"arm-night": "arm-night";
|
|
884
928
|
alert: "alert";
|
|
885
929
|
}>>;
|
|
886
930
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -947,6 +991,7 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
947
991
|
}, z.core.$strip>>>;
|
|
948
992
|
ownerUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
949
993
|
snoozeAllowGlobal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
994
|
+
snoozeOptions: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber>>>;
|
|
950
995
|
actions: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
951
996
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
952
997
|
name: z.ZodString;
|
|
@@ -968,6 +1013,7 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
968
1013
|
label: z.ZodString;
|
|
969
1014
|
sequence: z.ZodString;
|
|
970
1015
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1016
|
+
camera: "camera";
|
|
971
1017
|
light: "light";
|
|
972
1018
|
lock: "lock";
|
|
973
1019
|
view: "view";
|
|
@@ -980,6 +1026,10 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
980
1026
|
play: "play";
|
|
981
1027
|
acknowledge: "acknowledge";
|
|
982
1028
|
silence: "silence";
|
|
1029
|
+
snooze: "snooze";
|
|
1030
|
+
"arm-home": "arm-home";
|
|
1031
|
+
"arm-away": "arm-away";
|
|
1032
|
+
"arm-night": "arm-night";
|
|
983
1033
|
alert: "alert";
|
|
984
1034
|
}>>;
|
|
985
1035
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1069,6 +1119,8 @@ export declare const NcRulePatchSchema: z.ZodObject<{
|
|
|
1069
1119
|
"alarm-triggered": "alarm-triggered";
|
|
1070
1120
|
"alarm-armed": "alarm-armed";
|
|
1071
1121
|
"alarm-disarmed": "alarm-disarmed";
|
|
1122
|
+
"alarm-arming": "alarm-arming";
|
|
1123
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
1072
1124
|
"camera-online": "camera-online";
|
|
1073
1125
|
"camera-offline": "camera-offline";
|
|
1074
1126
|
"camera-disabled": "camera-disabled";
|
|
@@ -1215,6 +1267,8 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
1215
1267
|
"alarm-triggered": "alarm-triggered";
|
|
1216
1268
|
"alarm-armed": "alarm-armed";
|
|
1217
1269
|
"alarm-disarmed": "alarm-disarmed";
|
|
1270
|
+
"alarm-arming": "alarm-arming";
|
|
1271
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
1218
1272
|
"camera-online": "camera-online";
|
|
1219
1273
|
"camera-offline": "camera-offline";
|
|
1220
1274
|
"camera-disabled": "camera-disabled";
|
|
@@ -1307,6 +1361,7 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
1307
1361
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
1308
1362
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
1309
1363
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
1364
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1310
1365
|
actions: z.ZodOptional<z.ZodObject<{
|
|
1311
1366
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1312
1367
|
name: z.ZodString;
|
|
@@ -1328,6 +1383,7 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
1328
1383
|
label: z.ZodString;
|
|
1329
1384
|
sequence: z.ZodString;
|
|
1330
1385
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1386
|
+
camera: "camera";
|
|
1331
1387
|
light: "light";
|
|
1332
1388
|
lock: "lock";
|
|
1333
1389
|
view: "view";
|
|
@@ -1340,6 +1396,10 @@ export declare const NcRuleSchema: z.ZodObject<{
|
|
|
1340
1396
|
play: "play";
|
|
1341
1397
|
acknowledge: "acknowledge";
|
|
1342
1398
|
silence: "silence";
|
|
1399
|
+
snooze: "snooze";
|
|
1400
|
+
"arm-home": "arm-home";
|
|
1401
|
+
"arm-away": "arm-away";
|
|
1402
|
+
"arm-night": "arm-night";
|
|
1343
1403
|
alert: "alert";
|
|
1344
1404
|
}>>;
|
|
1345
1405
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1393,6 +1453,7 @@ export type NcTestResult = z.infer<typeof NcTestResultSchema>;
|
|
|
1393
1453
|
export declare const NcConditionDescriptorSchema: z.ZodObject<{
|
|
1394
1454
|
id: z.ZodString;
|
|
1395
1455
|
group: z.ZodEnum<{
|
|
1456
|
+
audio: "audio";
|
|
1396
1457
|
system: "system";
|
|
1397
1458
|
device: "device";
|
|
1398
1459
|
label: "label";
|
|
@@ -1407,6 +1468,7 @@ export declare const NcConditionDescriptorSchema: z.ZodObject<{
|
|
|
1407
1468
|
label: z.ZodString;
|
|
1408
1469
|
valueType: z.ZodEnum<{
|
|
1409
1470
|
number: "number";
|
|
1471
|
+
audio: "audio";
|
|
1410
1472
|
deviceState: "deviceState";
|
|
1411
1473
|
schedule: "schedule";
|
|
1412
1474
|
packagePhase: "packagePhase";
|
|
@@ -1501,6 +1563,8 @@ export declare const NcHistorySubjectSchema: z.ZodObject<{
|
|
|
1501
1563
|
"alarm-triggered": "alarm-triggered";
|
|
1502
1564
|
"alarm-armed": "alarm-armed";
|
|
1503
1565
|
"alarm-disarmed": "alarm-disarmed";
|
|
1566
|
+
"alarm-arming": "alarm-arming";
|
|
1567
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
1504
1568
|
"camera-online": "camera-online";
|
|
1505
1569
|
"camera-offline": "camera-offline";
|
|
1506
1570
|
"camera-disabled": "camera-disabled";
|
|
@@ -1576,6 +1640,8 @@ export declare const NcHistoryEntrySchema: z.ZodObject<{
|
|
|
1576
1640
|
"alarm-triggered": "alarm-triggered";
|
|
1577
1641
|
"alarm-armed": "alarm-armed";
|
|
1578
1642
|
"alarm-disarmed": "alarm-disarmed";
|
|
1643
|
+
"alarm-arming": "alarm-arming";
|
|
1644
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
1579
1645
|
"camera-online": "camera-online";
|
|
1580
1646
|
"camera-offline": "camera-offline";
|
|
1581
1647
|
"camera-disabled": "camera-disabled";
|
|
@@ -1622,9 +1688,6 @@ export declare const NcSnoozeScopeSchema: z.ZodEnum<{
|
|
|
1622
1688
|
rule: "rule";
|
|
1623
1689
|
}>;
|
|
1624
1690
|
export type NcSnoozeScope = z.infer<typeof NcSnoozeScopeSchema>;
|
|
1625
|
-
/** Hard ceiling on a window (24h). A snooze that could not expire would be an
|
|
1626
|
-
* outage the operator asked for once and forgot. */
|
|
1627
|
-
export declare const NC_SNOOZE_MAX_MINUTES = 1440;
|
|
1628
1691
|
/**
|
|
1629
1692
|
* Client-authored snooze. The server stamps `userId`, `startedAt` and
|
|
1630
1693
|
* `expiresAt` — a DURATION is sent rather than an instant so a client with a
|
|
@@ -1638,6 +1701,7 @@ export declare const NcSnoozeInputSchema: z.ZodObject<{
|
|
|
1638
1701
|
}>;
|
|
1639
1702
|
ruleId: z.ZodOptional<z.ZodString>;
|
|
1640
1703
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
1704
|
+
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1641
1705
|
durationMinutes: z.ZodNumber;
|
|
1642
1706
|
global: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1707
|
summary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1654,6 +1718,7 @@ export declare const NcSnoozeSchema: z.ZodObject<{
|
|
|
1654
1718
|
}>;
|
|
1655
1719
|
ruleId: z.ZodOptional<z.ZodString>;
|
|
1656
1720
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
1721
|
+
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1657
1722
|
startedAt: z.ZodNumber;
|
|
1658
1723
|
expiresAt: z.ZodNumber;
|
|
1659
1724
|
global: z.ZodBoolean;
|
|
@@ -1859,6 +1924,8 @@ export declare const notificationRulesCapability: {
|
|
|
1859
1924
|
"alarm-triggered": "alarm-triggered";
|
|
1860
1925
|
"alarm-armed": "alarm-armed";
|
|
1861
1926
|
"alarm-disarmed": "alarm-disarmed";
|
|
1927
|
+
"alarm-arming": "alarm-arming";
|
|
1928
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
1862
1929
|
"camera-online": "camera-online";
|
|
1863
1930
|
"camera-offline": "camera-offline";
|
|
1864
1931
|
"camera-disabled": "camera-disabled";
|
|
@@ -1951,6 +2018,7 @@ export declare const notificationRulesCapability: {
|
|
|
1951
2018
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
1952
2019
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
1953
2020
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
2021
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1954
2022
|
actions: z.ZodOptional<z.ZodObject<{
|
|
1955
2023
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1956
2024
|
name: z.ZodString;
|
|
@@ -1972,6 +2040,7 @@ export declare const notificationRulesCapability: {
|
|
|
1972
2040
|
label: z.ZodString;
|
|
1973
2041
|
sequence: z.ZodString;
|
|
1974
2042
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
2043
|
+
camera: "camera";
|
|
1975
2044
|
light: "light";
|
|
1976
2045
|
lock: "lock";
|
|
1977
2046
|
view: "view";
|
|
@@ -1984,6 +2053,10 @@ export declare const notificationRulesCapability: {
|
|
|
1984
2053
|
play: "play";
|
|
1985
2054
|
acknowledge: "acknowledge";
|
|
1986
2055
|
silence: "silence";
|
|
2056
|
+
snooze: "snooze";
|
|
2057
|
+
"arm-home": "arm-home";
|
|
2058
|
+
"arm-away": "arm-away";
|
|
2059
|
+
"arm-night": "arm-night";
|
|
1987
2060
|
alert: "alert";
|
|
1988
2061
|
}>>;
|
|
1989
2062
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2091,6 +2164,8 @@ export declare const notificationRulesCapability: {
|
|
|
2091
2164
|
"alarm-triggered": "alarm-triggered";
|
|
2092
2165
|
"alarm-armed": "alarm-armed";
|
|
2093
2166
|
"alarm-disarmed": "alarm-disarmed";
|
|
2167
|
+
"alarm-arming": "alarm-arming";
|
|
2168
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
2094
2169
|
"camera-online": "camera-online";
|
|
2095
2170
|
"camera-offline": "camera-offline";
|
|
2096
2171
|
"camera-disabled": "camera-disabled";
|
|
@@ -2183,6 +2258,7 @@ export declare const notificationRulesCapability: {
|
|
|
2183
2258
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
2184
2259
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
2185
2260
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
2261
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2186
2262
|
actions: z.ZodOptional<z.ZodObject<{
|
|
2187
2263
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2188
2264
|
name: z.ZodString;
|
|
@@ -2204,6 +2280,7 @@ export declare const notificationRulesCapability: {
|
|
|
2204
2280
|
label: z.ZodString;
|
|
2205
2281
|
sequence: z.ZodString;
|
|
2206
2282
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
2283
|
+
camera: "camera";
|
|
2207
2284
|
light: "light";
|
|
2208
2285
|
lock: "lock";
|
|
2209
2286
|
view: "view";
|
|
@@ -2216,6 +2293,10 @@ export declare const notificationRulesCapability: {
|
|
|
2216
2293
|
play: "play";
|
|
2217
2294
|
acknowledge: "acknowledge";
|
|
2218
2295
|
silence: "silence";
|
|
2296
|
+
snooze: "snooze";
|
|
2297
|
+
"arm-home": "arm-home";
|
|
2298
|
+
"arm-away": "arm-away";
|
|
2299
|
+
"arm-night": "arm-night";
|
|
2219
2300
|
alert: "alert";
|
|
2220
2301
|
}>>;
|
|
2221
2302
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2321,6 +2402,8 @@ export declare const notificationRulesCapability: {
|
|
|
2321
2402
|
"alarm-triggered": "alarm-triggered";
|
|
2322
2403
|
"alarm-armed": "alarm-armed";
|
|
2323
2404
|
"alarm-disarmed": "alarm-disarmed";
|
|
2405
|
+
"alarm-arming": "alarm-arming";
|
|
2406
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
2324
2407
|
"camera-online": "camera-online";
|
|
2325
2408
|
"camera-offline": "camera-offline";
|
|
2326
2409
|
"camera-disabled": "camera-disabled";
|
|
@@ -2413,6 +2496,7 @@ export declare const notificationRulesCapability: {
|
|
|
2413
2496
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
2414
2497
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
2415
2498
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
2499
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2416
2500
|
actions: z.ZodOptional<z.ZodObject<{
|
|
2417
2501
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2418
2502
|
name: z.ZodString;
|
|
@@ -2434,6 +2518,7 @@ export declare const notificationRulesCapability: {
|
|
|
2434
2518
|
label: z.ZodString;
|
|
2435
2519
|
sequence: z.ZodString;
|
|
2436
2520
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
2521
|
+
camera: "camera";
|
|
2437
2522
|
light: "light";
|
|
2438
2523
|
lock: "lock";
|
|
2439
2524
|
view: "view";
|
|
@@ -2446,6 +2531,10 @@ export declare const notificationRulesCapability: {
|
|
|
2446
2531
|
play: "play";
|
|
2447
2532
|
acknowledge: "acknowledge";
|
|
2448
2533
|
silence: "silence";
|
|
2534
|
+
snooze: "snooze";
|
|
2535
|
+
"arm-home": "arm-home";
|
|
2536
|
+
"arm-away": "arm-away";
|
|
2537
|
+
"arm-night": "arm-night";
|
|
2449
2538
|
alert: "alert";
|
|
2450
2539
|
}>>;
|
|
2451
2540
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2545,6 +2634,8 @@ export declare const notificationRulesCapability: {
|
|
|
2545
2634
|
"alarm-triggered": "alarm-triggered";
|
|
2546
2635
|
"alarm-armed": "alarm-armed";
|
|
2547
2636
|
"alarm-disarmed": "alarm-disarmed";
|
|
2637
|
+
"alarm-arming": "alarm-arming";
|
|
2638
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
2548
2639
|
"camera-online": "camera-online";
|
|
2549
2640
|
"camera-offline": "camera-offline";
|
|
2550
2641
|
"camera-disabled": "camera-disabled";
|
|
@@ -2637,6 +2728,7 @@ export declare const notificationRulesCapability: {
|
|
|
2637
2728
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
2638
2729
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
2639
2730
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
2731
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2640
2732
|
actions: z.ZodOptional<z.ZodObject<{
|
|
2641
2733
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2642
2734
|
name: z.ZodString;
|
|
@@ -2658,6 +2750,7 @@ export declare const notificationRulesCapability: {
|
|
|
2658
2750
|
label: z.ZodString;
|
|
2659
2751
|
sequence: z.ZodString;
|
|
2660
2752
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
2753
|
+
camera: "camera";
|
|
2661
2754
|
light: "light";
|
|
2662
2755
|
lock: "lock";
|
|
2663
2756
|
view: "view";
|
|
@@ -2670,6 +2763,10 @@ export declare const notificationRulesCapability: {
|
|
|
2670
2763
|
play: "play";
|
|
2671
2764
|
acknowledge: "acknowledge";
|
|
2672
2765
|
silence: "silence";
|
|
2766
|
+
snooze: "snooze";
|
|
2767
|
+
"arm-home": "arm-home";
|
|
2768
|
+
"arm-away": "arm-away";
|
|
2769
|
+
"arm-night": "arm-night";
|
|
2673
2770
|
alert: "alert";
|
|
2674
2771
|
}>>;
|
|
2675
2772
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2736,6 +2833,7 @@ export declare const notificationRulesCapability: {
|
|
|
2736
2833
|
}, z.core.$strip>>>;
|
|
2737
2834
|
ownerUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2738
2835
|
snoozeAllowGlobal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2836
|
+
snoozeOptions: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber>>>;
|
|
2739
2837
|
actions: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2740
2838
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2741
2839
|
name: z.ZodString;
|
|
@@ -2757,6 +2855,7 @@ export declare const notificationRulesCapability: {
|
|
|
2757
2855
|
label: z.ZodString;
|
|
2758
2856
|
sequence: z.ZodString;
|
|
2759
2857
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
2858
|
+
camera: "camera";
|
|
2760
2859
|
light: "light";
|
|
2761
2860
|
lock: "lock";
|
|
2762
2861
|
view: "view";
|
|
@@ -2769,6 +2868,10 @@ export declare const notificationRulesCapability: {
|
|
|
2769
2868
|
play: "play";
|
|
2770
2869
|
acknowledge: "acknowledge";
|
|
2771
2870
|
silence: "silence";
|
|
2871
|
+
snooze: "snooze";
|
|
2872
|
+
"arm-home": "arm-home";
|
|
2873
|
+
"arm-away": "arm-away";
|
|
2874
|
+
"arm-night": "arm-night";
|
|
2772
2875
|
alert: "alert";
|
|
2773
2876
|
}>>;
|
|
2774
2877
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2858,6 +2961,8 @@ export declare const notificationRulesCapability: {
|
|
|
2858
2961
|
"alarm-triggered": "alarm-triggered";
|
|
2859
2962
|
"alarm-armed": "alarm-armed";
|
|
2860
2963
|
"alarm-disarmed": "alarm-disarmed";
|
|
2964
|
+
"alarm-arming": "alarm-arming";
|
|
2965
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
2861
2966
|
"camera-online": "camera-online";
|
|
2862
2967
|
"camera-offline": "camera-offline";
|
|
2863
2968
|
"camera-disabled": "camera-disabled";
|
|
@@ -3003,6 +3108,8 @@ export declare const notificationRulesCapability: {
|
|
|
3003
3108
|
"alarm-triggered": "alarm-triggered";
|
|
3004
3109
|
"alarm-armed": "alarm-armed";
|
|
3005
3110
|
"alarm-disarmed": "alarm-disarmed";
|
|
3111
|
+
"alarm-arming": "alarm-arming";
|
|
3112
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
3006
3113
|
"camera-online": "camera-online";
|
|
3007
3114
|
"camera-offline": "camera-offline";
|
|
3008
3115
|
"camera-disabled": "camera-disabled";
|
|
@@ -3095,6 +3202,7 @@ export declare const notificationRulesCapability: {
|
|
|
3095
3202
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
3096
3203
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
3097
3204
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
3205
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
3098
3206
|
actions: z.ZodOptional<z.ZodObject<{
|
|
3099
3207
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3100
3208
|
name: z.ZodString;
|
|
@@ -3116,6 +3224,7 @@ export declare const notificationRulesCapability: {
|
|
|
3116
3224
|
label: z.ZodString;
|
|
3117
3225
|
sequence: z.ZodString;
|
|
3118
3226
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3227
|
+
camera: "camera";
|
|
3119
3228
|
light: "light";
|
|
3120
3229
|
lock: "lock";
|
|
3121
3230
|
view: "view";
|
|
@@ -3128,6 +3237,10 @@ export declare const notificationRulesCapability: {
|
|
|
3128
3237
|
play: "play";
|
|
3129
3238
|
acknowledge: "acknowledge";
|
|
3130
3239
|
silence: "silence";
|
|
3240
|
+
snooze: "snooze";
|
|
3241
|
+
"arm-home": "arm-home";
|
|
3242
|
+
"arm-away": "arm-away";
|
|
3243
|
+
"arm-night": "arm-night";
|
|
3131
3244
|
alert: "alert";
|
|
3132
3245
|
}>>;
|
|
3133
3246
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3281,6 +3394,8 @@ export declare const notificationRulesCapability: {
|
|
|
3281
3394
|
"alarm-triggered": "alarm-triggered";
|
|
3282
3395
|
"alarm-armed": "alarm-armed";
|
|
3283
3396
|
"alarm-disarmed": "alarm-disarmed";
|
|
3397
|
+
"alarm-arming": "alarm-arming";
|
|
3398
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
3284
3399
|
"camera-online": "camera-online";
|
|
3285
3400
|
"camera-offline": "camera-offline";
|
|
3286
3401
|
"camera-disabled": "camera-disabled";
|
|
@@ -3373,6 +3488,7 @@ export declare const notificationRulesCapability: {
|
|
|
3373
3488
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
3374
3489
|
ownerUserId: z.ZodOptional<z.ZodString>;
|
|
3375
3490
|
snoozeAllowGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
3491
|
+
snoozeOptions: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
3376
3492
|
actions: z.ZodOptional<z.ZodObject<{
|
|
3377
3493
|
onTrigger: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3378
3494
|
name: z.ZodString;
|
|
@@ -3394,6 +3510,7 @@ export declare const notificationRulesCapability: {
|
|
|
3394
3510
|
label: z.ZodString;
|
|
3395
3511
|
sequence: z.ZodString;
|
|
3396
3512
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3513
|
+
camera: "camera";
|
|
3397
3514
|
light: "light";
|
|
3398
3515
|
lock: "lock";
|
|
3399
3516
|
view: "view";
|
|
@@ -3406,6 +3523,10 @@ export declare const notificationRulesCapability: {
|
|
|
3406
3523
|
play: "play";
|
|
3407
3524
|
acknowledge: "acknowledge";
|
|
3408
3525
|
silence: "silence";
|
|
3526
|
+
snooze: "snooze";
|
|
3527
|
+
"arm-home": "arm-home";
|
|
3528
|
+
"arm-away": "arm-away";
|
|
3529
|
+
"arm-night": "arm-night";
|
|
3409
3530
|
alert: "alert";
|
|
3410
3531
|
}>>;
|
|
3411
3532
|
destructive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3466,6 +3587,7 @@ export declare const notificationRulesCapability: {
|
|
|
3466
3587
|
catalog: z.ZodArray<z.ZodObject<{
|
|
3467
3588
|
id: z.ZodString;
|
|
3468
3589
|
group: z.ZodEnum<{
|
|
3590
|
+
audio: "audio";
|
|
3469
3591
|
system: "system";
|
|
3470
3592
|
device: "device";
|
|
3471
3593
|
label: "label";
|
|
@@ -3480,6 +3602,7 @@ export declare const notificationRulesCapability: {
|
|
|
3480
3602
|
label: z.ZodString;
|
|
3481
3603
|
valueType: z.ZodEnum<{
|
|
3482
3604
|
number: "number";
|
|
3605
|
+
audio: "audio";
|
|
3483
3606
|
deviceState: "deviceState";
|
|
3484
3607
|
schedule: "schedule";
|
|
3485
3608
|
packagePhase: "packagePhase";
|
|
@@ -3612,6 +3735,8 @@ export declare const notificationRulesCapability: {
|
|
|
3612
3735
|
"alarm-triggered": "alarm-triggered";
|
|
3613
3736
|
"alarm-armed": "alarm-armed";
|
|
3614
3737
|
"alarm-disarmed": "alarm-disarmed";
|
|
3738
|
+
"alarm-arming": "alarm-arming";
|
|
3739
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
3615
3740
|
"camera-online": "camera-online";
|
|
3616
3741
|
"camera-offline": "camera-offline";
|
|
3617
3742
|
"camera-disabled": "camera-disabled";
|
|
@@ -3643,6 +3768,7 @@ export declare const notificationRulesCapability: {
|
|
|
3643
3768
|
}>;
|
|
3644
3769
|
ruleId: z.ZodOptional<z.ZodString>;
|
|
3645
3770
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
3771
|
+
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3646
3772
|
startedAt: z.ZodNumber;
|
|
3647
3773
|
expiresAt: z.ZodNumber;
|
|
3648
3774
|
global: z.ZodBoolean;
|
|
@@ -3669,6 +3795,7 @@ export declare const notificationRulesCapability: {
|
|
|
3669
3795
|
}>;
|
|
3670
3796
|
ruleId: z.ZodOptional<z.ZodString>;
|
|
3671
3797
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
3798
|
+
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3672
3799
|
durationMinutes: z.ZodNumber;
|
|
3673
3800
|
global: z.ZodOptional<z.ZodBoolean>;
|
|
3674
3801
|
summary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3684,6 +3811,7 @@ export declare const notificationRulesCapability: {
|
|
|
3684
3811
|
}>;
|
|
3685
3812
|
ruleId: z.ZodOptional<z.ZodString>;
|
|
3686
3813
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
3814
|
+
classes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3687
3815
|
startedAt: z.ZodNumber;
|
|
3688
3816
|
expiresAt: z.ZodNumber;
|
|
3689
3817
|
global: z.ZodBoolean;
|
|
@@ -167,6 +167,13 @@ export declare const notifierCapability: {
|
|
|
167
167
|
recipients: z.ZodBoolean;
|
|
168
168
|
}, z.core.$strip>;
|
|
169
169
|
}, z.core.$strip>;
|
|
170
|
+
/**
|
|
171
|
+
* Runtime-state durability: **session** — live queue depth and last-send state; a restored queue depth describes a queue that no longer exists.
|
|
172
|
+
*
|
|
173
|
+
* See `RuntimeStateDurability`. Enforced by
|
|
174
|
+
* `scripts/check-runtime-state-durability.ts`.
|
|
175
|
+
*/
|
|
176
|
+
readonly durability: "session";
|
|
170
177
|
};
|
|
171
178
|
export type INotifierProvider = InferProvider<typeof notifierCapability>;
|
|
172
179
|
export {};
|
|
@@ -47,5 +47,15 @@ export declare const numericSensorCapability: {
|
|
|
47
47
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
48
48
|
lastFetchedAt: z.ZodNumber;
|
|
49
49
|
}, z.core.$strip>;
|
|
50
|
+
/**
|
|
51
|
+
* Runtime-state durability: **restored** — polled value, low churn once the clock is excluded (251 of 669 writes were the clock alone); restoring it removes the cold window before the first poll.
|
|
52
|
+
*
|
|
53
|
+
* See `RuntimeStateDurability`. Enforced by
|
|
54
|
+
* `scripts/check-runtime-state-durability.ts`.
|
|
55
|
+
*/
|
|
56
|
+
readonly durability: "restored";
|
|
57
|
+
/** Clock fields: written, but excluded from the compare that decides
|
|
58
|
+
* whether persisting is worth a SQLite commit. */
|
|
59
|
+
readonly volatileStateFields: readonly ["lastFetchedAt"];
|
|
50
60
|
};
|
|
51
61
|
export type INumericSensorProvider = InferProvider<typeof numericSensorCapability>;
|
|
@@ -149,6 +149,8 @@ export declare const OsdSlotBindingSchema: z.ZodObject<{
|
|
|
149
149
|
"alarm-triggered": "alarm-triggered";
|
|
150
150
|
"alarm-armed": "alarm-armed";
|
|
151
151
|
"alarm-disarmed": "alarm-disarmed";
|
|
152
|
+
"alarm-arming": "alarm-arming";
|
|
153
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
152
154
|
"camera-online": "camera-online";
|
|
153
155
|
"camera-offline": "camera-offline";
|
|
154
156
|
"camera-disabled": "camera-disabled";
|
|
@@ -295,6 +297,8 @@ export declare const OsdSlotViewSchema: z.ZodObject<{
|
|
|
295
297
|
"alarm-triggered": "alarm-triggered";
|
|
296
298
|
"alarm-armed": "alarm-armed";
|
|
297
299
|
"alarm-disarmed": "alarm-disarmed";
|
|
300
|
+
"alarm-arming": "alarm-arming";
|
|
301
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
298
302
|
"camera-online": "camera-online";
|
|
299
303
|
"camera-offline": "camera-offline";
|
|
300
304
|
"camera-disabled": "camera-disabled";
|
|
@@ -513,6 +517,8 @@ export declare const osdManagerCapability: {
|
|
|
513
517
|
"alarm-triggered": "alarm-triggered";
|
|
514
518
|
"alarm-armed": "alarm-armed";
|
|
515
519
|
"alarm-disarmed": "alarm-disarmed";
|
|
520
|
+
"alarm-arming": "alarm-arming";
|
|
521
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
516
522
|
"camera-online": "camera-online";
|
|
517
523
|
"camera-offline": "camera-offline";
|
|
518
524
|
"camera-disabled": "camera-disabled";
|
|
@@ -587,6 +593,7 @@ export declare const osdManagerCapability: {
|
|
|
587
593
|
catalog: z.ZodArray<z.ZodObject<{
|
|
588
594
|
id: z.ZodString;
|
|
589
595
|
group: z.ZodEnum<{
|
|
596
|
+
audio: "audio";
|
|
590
597
|
system: "system";
|
|
591
598
|
device: "device";
|
|
592
599
|
label: "label";
|
|
@@ -601,6 +608,7 @@ export declare const osdManagerCapability: {
|
|
|
601
608
|
label: z.ZodString;
|
|
602
609
|
valueType: z.ZodEnum<{
|
|
603
610
|
number: "number";
|
|
611
|
+
audio: "audio";
|
|
604
612
|
deviceState: "deviceState";
|
|
605
613
|
schedule: "schedule";
|
|
606
614
|
packagePhase: "packagePhase";
|
|
@@ -745,6 +753,8 @@ export declare const osdManagerCapability: {
|
|
|
745
753
|
"alarm-triggered": "alarm-triggered";
|
|
746
754
|
"alarm-armed": "alarm-armed";
|
|
747
755
|
"alarm-disarmed": "alarm-disarmed";
|
|
756
|
+
"alarm-arming": "alarm-arming";
|
|
757
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
748
758
|
"camera-online": "camera-online";
|
|
749
759
|
"camera-offline": "camera-offline";
|
|
750
760
|
"camera-disabled": "camera-disabled";
|
|
@@ -890,6 +900,8 @@ export declare const osdManagerCapability: {
|
|
|
890
900
|
"alarm-triggered": "alarm-triggered";
|
|
891
901
|
"alarm-armed": "alarm-armed";
|
|
892
902
|
"alarm-disarmed": "alarm-disarmed";
|
|
903
|
+
"alarm-arming": "alarm-arming";
|
|
904
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
893
905
|
"camera-online": "camera-online";
|
|
894
906
|
"camera-offline": "camera-offline";
|
|
895
907
|
"camera-disabled": "camera-disabled";
|
|
@@ -1067,6 +1079,8 @@ export declare const osdManagerCapability: {
|
|
|
1067
1079
|
"alarm-triggered": "alarm-triggered";
|
|
1068
1080
|
"alarm-armed": "alarm-armed";
|
|
1069
1081
|
"alarm-disarmed": "alarm-disarmed";
|
|
1082
|
+
"alarm-arming": "alarm-arming";
|
|
1083
|
+
"alarm-arm-refused": "alarm-arm-refused";
|
|
1070
1084
|
"camera-online": "camera-online";
|
|
1071
1085
|
"camera-offline": "camera-offline";
|
|
1072
1086
|
"camera-disabled": "camera-disabled";
|