@camstack/types 1.2.109 → 1.2.111

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.
Files changed (55) hide show
  1. package/dist/addon.js +1 -1
  2. package/dist/addon.mjs +1 -1
  3. package/dist/capabilities/addons.cap.d.ts +9 -9
  4. package/dist/capabilities/broker.cap.d.ts +4 -4
  5. package/dist/capabilities/camera-streams.cap.d.ts +5 -5
  6. package/dist/capabilities/climate-control.cap.d.ts +8 -8
  7. package/dist/capabilities/core-blocks.cap.d.ts +16 -16
  8. package/dist/capabilities/day-night.cap.d.ts +8 -8
  9. package/dist/capabilities/decoder.cap.d.ts +13 -13
  10. package/dist/capabilities/device-manager.cap.d.ts +5 -5
  11. package/dist/capabilities/face-gallery.cap.d.ts +1 -1
  12. package/dist/capabilities/image-settings.cap.d.ts +16 -16
  13. package/dist/capabilities/llm-runtime.cap.d.ts +3 -3
  14. package/dist/capabilities/llm.cap.d.ts +4 -4
  15. package/dist/capabilities/media-player.cap.d.ts +9 -9
  16. package/dist/capabilities/metrics-provider.cap.d.ts +2 -2
  17. package/dist/capabilities/model-convert.cap.d.ts +3 -3
  18. package/dist/capabilities/motion-detection.cap.d.ts +4 -4
  19. package/dist/capabilities/notification-output.cap.d.ts +9 -9
  20. package/dist/capabilities/notification-rules.cap.d.ts +10 -10
  21. package/dist/capabilities/oauth-integration.cap.d.ts +2 -2
  22. package/dist/capabilities/osd-manager.cap.d.ts +2 -2
  23. package/dist/capabilities/pipeline-analytics.cap.d.ts +191 -54
  24. package/dist/capabilities/pipeline-executor.cap.d.ts +117 -19
  25. package/dist/capabilities/pipeline-orchestrator.cap.d.ts +21 -21
  26. package/dist/capabilities/pipeline-runner.cap.d.ts +6 -6
  27. package/dist/capabilities/platform-probe.cap.d.ts +2 -2
  28. package/dist/capabilities/recording-export.cap.d.ts +7 -7
  29. package/dist/capabilities/recording.cap.d.ts +7 -7
  30. package/dist/capabilities/schemas/detection-shared.d.ts +4 -4
  31. package/dist/capabilities/schemas/orchestrator-metrics.d.ts +2 -2
  32. package/dist/capabilities/schemas/streaming-shared.d.ts +11 -11
  33. package/dist/capabilities/sso-bridge.cap.d.ts +3 -3
  34. package/dist/capabilities/storage-migration.cap.d.ts +4 -4
  35. package/dist/capabilities/storage.cap.d.ts +2 -2
  36. package/dist/capabilities/stream-broker.cap.d.ts +50 -50
  37. package/dist/capabilities/user-management.cap.d.ts +20 -20
  38. package/dist/capabilities/vacuum-control.cap.d.ts +26 -26
  39. package/dist/capabilities/webrtc-session.cap.d.ts +4 -4
  40. package/dist/generated/addon-api.d.ts +50 -8
  41. package/dist/generated/method-access-map.d.ts +1 -1
  42. package/dist/generated/method-device-selectors.d.ts +1 -1
  43. package/dist/generated/system-proxy.d.ts +1 -1
  44. package/dist/index.js +2140 -1951
  45. package/dist/index.mjs +2140 -1951
  46. package/dist/interfaces/adoption-job.d.ts +2 -2
  47. package/dist/interfaces/relocate.d.ts +10 -10
  48. package/dist/interfaces/stream-broker.d.ts +2 -2
  49. package/dist/lifecycle/job.d.ts +8 -8
  50. package/dist/{sleep-BJTBu5cu.js → sleep-BCRrMlni.js} +4 -0
  51. package/dist/{sleep-Dj1DG9Od.mjs → sleep-DJlqY62B.mjs} +4 -0
  52. package/dist/types/frame-view.d.ts +10 -24
  53. package/dist/types/labels.d.ts +30 -1
  54. package/dist/types/models.d.ts +4 -4
  55. package/package.json +1 -1
@@ -30,13 +30,13 @@ export declare const ImageRotateSchema: z.ZodEnum<{
30
30
  }>;
31
31
  /** White-balance mode. `manual` unlocks the normalized `warmth` knob. */
32
32
  export declare const WhiteBalanceModeSchema: z.ZodEnum<{
33
- manual: "manual";
34
33
  auto: "auto";
34
+ manual: "manual";
35
35
  }>;
36
36
  /** Exposure mode. */
37
37
  export declare const ExposureModeSchema: z.ZodEnum<{
38
- manual: "manual";
39
38
  auto: "auto";
39
+ manual: "manual";
40
40
  }>;
41
41
  /**
42
42
  * Backlight-compensation mode:
@@ -70,13 +70,13 @@ export declare const ImageSettingsStatusSchema: z.ZodObject<{
70
70
  270: "270";
71
71
  }>>;
72
72
  whiteBalance: z.ZodOptional<z.ZodEnum<{
73
- manual: "manual";
74
73
  auto: "auto";
74
+ manual: "manual";
75
75
  }>>;
76
76
  warmth: z.ZodOptional<z.ZodNumber>;
77
77
  exposureMode: z.ZodOptional<z.ZodEnum<{
78
- manual: "manual";
79
78
  auto: "auto";
79
+ manual: "manual";
80
80
  }>>;
81
81
  backlightMode: z.ZodOptional<z.ZodEnum<{
82
82
  off: "off";
@@ -127,8 +127,8 @@ export declare const ImageSettingsOptionsSchema: z.ZodObject<{
127
127
  270: "270";
128
128
  }>>;
129
129
  whiteBalanceModes: z.ZodArray<z.ZodEnum<{
130
- manual: "manual";
131
130
  auto: "auto";
131
+ manual: "manual";
132
132
  }>>;
133
133
  supportsWarmth: z.ZodBoolean;
134
134
  warmth: z.ZodOptional<z.ZodObject<{
@@ -137,8 +137,8 @@ export declare const ImageSettingsOptionsSchema: z.ZodObject<{
137
137
  step: z.ZodNumber;
138
138
  }, z.core.$strip>>;
139
139
  exposureModes: z.ZodArray<z.ZodEnum<{
140
- manual: "manual";
141
140
  auto: "auto";
141
+ manual: "manual";
142
142
  }>>;
143
143
  backlightModes: z.ZodArray<z.ZodEnum<{
144
144
  off: "off";
@@ -165,13 +165,13 @@ export declare const ImageSettingsPatchSchema: z.ZodObject<{
165
165
  270: "270";
166
166
  }>>;
167
167
  whiteBalance: z.ZodOptional<z.ZodEnum<{
168
- manual: "manual";
169
168
  auto: "auto";
169
+ manual: "manual";
170
170
  }>>;
171
171
  warmth: z.ZodOptional<z.ZodNumber>;
172
172
  exposureMode: z.ZodOptional<z.ZodEnum<{
173
- manual: "manual";
174
173
  auto: "auto";
174
+ manual: "manual";
175
175
  }>>;
176
176
  backlightMode: z.ZodOptional<z.ZodEnum<{
177
177
  off: "off";
@@ -237,8 +237,8 @@ export declare const imageSettingsCapability: {
237
237
  270: "270";
238
238
  }>>;
239
239
  whiteBalanceModes: z.ZodArray<z.ZodEnum<{
240
- manual: "manual";
241
240
  auto: "auto";
241
+ manual: "manual";
242
242
  }>>;
243
243
  supportsWarmth: z.ZodBoolean;
244
244
  warmth: z.ZodOptional<z.ZodObject<{
@@ -247,8 +247,8 @@ export declare const imageSettingsCapability: {
247
247
  step: z.ZodNumber;
248
248
  }, z.core.$strip>>;
249
249
  exposureModes: z.ZodArray<z.ZodEnum<{
250
- manual: "manual";
251
250
  auto: "auto";
251
+ manual: "manual";
252
252
  }>>;
253
253
  backlightModes: z.ZodArray<z.ZodEnum<{
254
254
  off: "off";
@@ -273,13 +273,13 @@ export declare const imageSettingsCapability: {
273
273
  270: "270";
274
274
  }>>;
275
275
  whiteBalance: z.ZodOptional<z.ZodEnum<{
276
- manual: "manual";
277
276
  auto: "auto";
277
+ manual: "manual";
278
278
  }>>;
279
279
  warmth: z.ZodOptional<z.ZodNumber>;
280
280
  exposureMode: z.ZodOptional<z.ZodEnum<{
281
- manual: "manual";
282
281
  auto: "auto";
282
+ manual: "manual";
283
283
  }>>;
284
284
  backlightMode: z.ZodOptional<z.ZodEnum<{
285
285
  off: "off";
@@ -305,13 +305,13 @@ export declare const imageSettingsCapability: {
305
305
  270: "270";
306
306
  }>>;
307
307
  whiteBalance: z.ZodOptional<z.ZodEnum<{
308
- manual: "manual";
309
308
  auto: "auto";
309
+ manual: "manual";
310
310
  }>>;
311
311
  warmth: z.ZodOptional<z.ZodNumber>;
312
312
  exposureMode: z.ZodOptional<z.ZodEnum<{
313
- manual: "manual";
314
313
  auto: "auto";
314
+ manual: "manual";
315
315
  }>>;
316
316
  backlightMode: z.ZodOptional<z.ZodEnum<{
317
317
  off: "off";
@@ -337,13 +337,13 @@ export declare const imageSettingsCapability: {
337
337
  270: "270";
338
338
  }>>;
339
339
  whiteBalance: z.ZodOptional<z.ZodEnum<{
340
- manual: "manual";
341
340
  auto: "auto";
341
+ manual: "manual";
342
342
  }>>;
343
343
  warmth: z.ZodOptional<z.ZodNumber>;
344
344
  exposureMode: z.ZodOptional<z.ZodEnum<{
345
- manual: "manual";
346
345
  auto: "auto";
346
+ manual: "manual";
347
347
  }>>;
348
348
  backlightMode: z.ZodOptional<z.ZodEnum<{
349
349
  off: "off";
@@ -121,9 +121,9 @@ export type LlmDownloadProgress = z.infer<typeof LlmDownloadProgressSchema>;
121
121
  export declare const LlmRuntimeStatusSchema: z.ZodObject<{
122
122
  nodeId: z.ZodString;
123
123
  state: z.ZodEnum<{
124
+ stopped: "stopped";
124
125
  ready: "ready";
125
126
  failed: "failed";
126
- stopped: "stopped";
127
127
  starting: "starting";
128
128
  crashed: "crashed";
129
129
  downloading: "downloading";
@@ -422,9 +422,9 @@ export declare const llmRuntimeCapability: {
422
422
  }, z.core.$strip>, z.ZodObject<{
423
423
  nodeId: z.ZodString;
424
424
  state: z.ZodEnum<{
425
+ stopped: "stopped";
425
426
  ready: "ready";
426
427
  failed: "failed";
427
- stopped: "stopped";
428
428
  starting: "starting";
429
429
  crashed: "crashed";
430
430
  downloading: "downloading";
@@ -454,9 +454,9 @@ export declare const llmRuntimeCapability: {
454
454
  readonly status: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
455
455
  nodeId: z.ZodString;
456
456
  state: z.ZodEnum<{
457
+ stopped: "stopped";
457
458
  ready: "ready";
458
459
  failed: "failed";
459
- stopped: "stopped";
460
460
  starting: "starting";
461
461
  crashed: "crashed";
462
462
  downloading: "downloading";
@@ -230,9 +230,9 @@ export declare const LlmRuntimeNodeSchema: z.ZodObject<{
230
230
  status: z.ZodOptional<z.ZodObject<{
231
231
  nodeId: z.ZodString;
232
232
  state: z.ZodEnum<{
233
+ stopped: "stopped";
233
234
  ready: "ready";
234
235
  failed: "failed";
235
- stopped: "stopped";
236
236
  starting: "starting";
237
237
  crashed: "crashed";
238
238
  downloading: "downloading";
@@ -752,9 +752,9 @@ export declare const llmCapability: {
752
752
  status: z.ZodOptional<z.ZodObject<{
753
753
  nodeId: z.ZodString;
754
754
  state: z.ZodEnum<{
755
+ stopped: "stopped";
755
756
  ready: "ready";
756
757
  failed: "failed";
757
- stopped: "stopped";
758
758
  starting: "starting";
759
759
  crashed: "crashed";
760
760
  downloading: "downloading";
@@ -877,9 +877,9 @@ export declare const llmCapability: {
877
877
  }, z.core.$strip>, z.ZodObject<{
878
878
  nodeId: z.ZodString;
879
879
  state: z.ZodEnum<{
880
+ stopped: "stopped";
880
881
  ready: "ready";
881
882
  failed: "failed";
882
- stopped: "stopped";
883
883
  starting: "starting";
884
884
  crashed: "crashed";
885
885
  downloading: "downloading";
@@ -911,9 +911,9 @@ export declare const llmCapability: {
911
911
  }, z.core.$strip>, z.ZodObject<{
912
912
  nodeId: z.ZodString;
913
913
  state: z.ZodEnum<{
914
+ stopped: "stopped";
914
915
  ready: "ready";
915
916
  failed: "failed";
916
- stopped: "stopped";
917
917
  starting: "starting";
918
918
  crashed: "crashed";
919
919
  downloading: "downloading";
@@ -14,8 +14,8 @@ import { DeviceType } from '../device/device-type.js';
14
14
  * fetch — same pattern as `PanTiltZoom` for cameras.
15
15
  */
16
16
  export declare const MediaPlayerStateSchema: z.ZodEnum<{
17
- off: "off";
18
17
  idle: "idle";
18
+ off: "off";
19
19
  playing: "playing";
20
20
  on: "on";
21
21
  paused: "paused";
@@ -24,8 +24,8 @@ export declare const MediaPlayerStateSchema: z.ZodEnum<{
24
24
  }>;
25
25
  export type MediaPlayerState = z.infer<typeof MediaPlayerStateSchema>;
26
26
  export declare const MediaPlayerRepeatSchema: z.ZodEnum<{
27
- off: "off";
28
27
  all: "all";
28
+ off: "off";
29
29
  one: "one";
30
30
  }>;
31
31
  export type MediaPlayerRepeat = z.infer<typeof MediaPlayerRepeatSchema>;
@@ -39,8 +39,8 @@ declare const MediaInfoSchema: z.ZodObject<{
39
39
  export type MediaInfo = z.infer<typeof MediaInfoSchema>;
40
40
  export declare const MediaPlayerStatusSchema: z.ZodObject<{
41
41
  state: z.ZodEnum<{
42
- off: "off";
43
42
  idle: "idle";
43
+ off: "off";
44
44
  playing: "playing";
45
45
  on: "on";
46
46
  paused: "paused";
@@ -62,8 +62,8 @@ export declare const MediaPlayerStatusSchema: z.ZodObject<{
62
62
  durationMs: z.ZodNullable<z.ZodNumber>;
63
63
  shuffle: z.ZodNullable<z.ZodBoolean>;
64
64
  repeat: z.ZodNullable<z.ZodEnum<{
65
- off: "off";
66
65
  all: "all";
66
+ off: "off";
67
67
  one: "one";
68
68
  }>>;
69
69
  lastChangedAt: z.ZodNumber;
@@ -110,8 +110,8 @@ export declare const mediaPlayerCapability: {
110
110
  readonly setRepeat: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
111
111
  deviceId: z.ZodNumber;
112
112
  repeat: z.ZodEnum<{
113
- off: "off";
114
113
  all: "all";
114
+ off: "off";
115
115
  one: "one";
116
116
  }>;
117
117
  }, z.core.$strip>, z.ZodVoid, "mutation">;
@@ -128,8 +128,8 @@ export declare const mediaPlayerCapability: {
128
128
  readonly status: {
129
129
  readonly schema: z.ZodObject<{
130
130
  state: z.ZodEnum<{
131
- off: "off";
132
131
  idle: "idle";
132
+ off: "off";
133
133
  playing: "playing";
134
134
  on: "on";
135
135
  paused: "paused";
@@ -151,8 +151,8 @@ export declare const mediaPlayerCapability: {
151
151
  durationMs: z.ZodNullable<z.ZodNumber>;
152
152
  shuffle: z.ZodNullable<z.ZodBoolean>;
153
153
  repeat: z.ZodNullable<z.ZodEnum<{
154
- off: "off";
155
154
  all: "all";
155
+ off: "off";
156
156
  one: "one";
157
157
  }>>;
158
158
  lastChangedAt: z.ZodNumber;
@@ -166,8 +166,8 @@ export declare const mediaPlayerCapability: {
166
166
  */
167
167
  readonly runtimeState: z.ZodObject<{
168
168
  state: z.ZodEnum<{
169
- off: "off";
170
169
  idle: "idle";
170
+ off: "off";
171
171
  playing: "playing";
172
172
  on: "on";
173
173
  paused: "paused";
@@ -189,8 +189,8 @@ export declare const mediaPlayerCapability: {
189
189
  durationMs: z.ZodNullable<z.ZodNumber>;
190
190
  shuffle: z.ZodNullable<z.ZodBoolean>;
191
191
  repeat: z.ZodNullable<z.ZodEnum<{
192
- off: "off";
193
192
  all: "all";
193
+ off: "off";
194
194
  one: "one";
195
195
  }>>;
196
196
  lastChangedAt: z.ZodNumber;
@@ -169,8 +169,8 @@ declare const AddonInstanceSchema: z.ZodObject<{
169
169
  }>;
170
170
  pid: z.ZodNumber;
171
171
  state: z.ZodEnum<{
172
- running: "running";
173
172
  stopped: "stopped";
173
+ running: "running";
174
174
  starting: "starting";
175
175
  stopping: "stopping";
176
176
  crashed: "crashed";
@@ -465,8 +465,8 @@ export declare const metricsProviderCapability: {
465
465
  }>;
466
466
  pid: z.ZodNumber;
467
467
  state: z.ZodEnum<{
468
- running: "running";
469
468
  stopped: "stopped";
469
+ running: "running";
470
470
  starting: "starting";
471
471
  stopping: "stopping";
472
472
  crashed: "crashed";
@@ -51,8 +51,8 @@ export declare const ModelConvertInputSchema: z.ZodObject<{
51
51
  targets: z.ZodReadonly<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
52
52
  format: z.ZodLiteral<"openvino">;
53
53
  precisions: z.ZodReadonly<z.ZodArray<z.ZodEnum<{
54
- int8: "int8";
55
54
  fp16: "fp16";
55
+ int8: "int8";
56
56
  }>>>;
57
57
  }, z.core.$strip>, z.ZodObject<{
58
58
  format: z.ZodLiteral<"coreml">;
@@ -118,8 +118,8 @@ export declare const modelConvertCapability: {
118
118
  targets: z.ZodReadonly<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
119
119
  format: z.ZodLiteral<"openvino">;
120
120
  precisions: z.ZodReadonly<z.ZodArray<z.ZodEnum<{
121
- int8: "int8";
122
121
  fp16: "fp16";
122
+ int8: "int8";
123
123
  }>>>;
124
124
  }, z.core.$strip>, z.ZodObject<{
125
125
  format: z.ZodLiteral<"coreml">;
@@ -271,8 +271,8 @@ export declare const modelConvertCapability: {
271
271
  gguf: "gguf";
272
272
  }>;
273
273
  precision: z.ZodOptional<z.ZodEnum<{
274
- int8: "int8";
275
274
  fp16: "fp16";
275
+ int8: "int8";
276
276
  }>>;
277
277
  sizeMB: z.ZodNumber;
278
278
  validated: z.ZodBoolean;
@@ -55,11 +55,11 @@ export declare const motionDetectionCapability: {
55
55
  frame: z.ZodOptional<z.ZodObject<{
56
56
  data: z.ZodCustom<Uint8Array<ArrayBufferLike>, Uint8Array<ArrayBufferLike>>;
57
57
  format: z.ZodEnum<{
58
- rgb: "rgb";
59
- gray: "gray";
60
58
  jpeg: "jpeg";
59
+ rgb: "rgb";
61
60
  bgr: "bgr";
62
61
  yuv420: "yuv420";
62
+ gray: "gray";
63
63
  }>;
64
64
  width: z.ZodNumber;
65
65
  height: z.ZodNumber;
@@ -72,11 +72,11 @@ export declare const motionDetectionCapability: {
72
72
  width: z.ZodNumber;
73
73
  height: z.ZodNumber;
74
74
  format: z.ZodEnum<{
75
- rgb: "rgb";
76
- gray: "gray";
77
75
  jpeg: "jpeg";
76
+ rgb: "rgb";
78
77
  bgr: "bgr";
79
78
  yuv420: "yuv420";
79
+ gray: "gray";
80
80
  }>;
81
81
  pts: z.ZodNumber;
82
82
  byteLength: z.ZodNumber;
@@ -39,8 +39,8 @@ import { type InferProvider } from './capability-definition.js';
39
39
  export declare const AttachmentMediaTypeSchema: z.ZodEnum<{
40
40
  image: "image";
41
41
  icon: "icon";
42
- audio: "audio";
43
42
  video: "video";
43
+ audio: "audio";
44
44
  gif: "gif";
45
45
  }>;
46
46
  export type AttachmentMediaType = z.infer<typeof AttachmentMediaTypeSchema>;
@@ -54,8 +54,8 @@ export declare const AttachmentSchema: z.ZodObject<{
54
54
  mediaType: z.ZodEnum<{
55
55
  image: "image";
56
56
  icon: "icon";
57
- audio: "audio";
58
57
  video: "video";
58
+ audio: "audio";
59
59
  gif: "gif";
60
60
  }>;
61
61
  url: z.ZodOptional<z.ZodString>;
@@ -179,8 +179,8 @@ export declare const NotificationSchema: z.ZodObject<{
179
179
  mediaType: z.ZodEnum<{
180
180
  image: "image";
181
181
  icon: "icon";
182
- audio: "audio";
183
182
  video: "video";
183
+ audio: "audio";
184
184
  gif: "gif";
185
185
  }>;
186
186
  url: z.ZodOptional<z.ZodString>;
@@ -245,8 +245,8 @@ export declare const TargetKindAttachmentsCapsSchema: z.ZodObject<{
245
245
  mediaTypes: z.ZodArray<z.ZodEnum<{
246
246
  image: "image";
247
247
  icon: "icon";
248
- audio: "audio";
249
248
  video: "video";
249
+ audio: "audio";
250
250
  gif: "gif";
251
251
  }>>;
252
252
  mode: z.ZodEnum<{
@@ -263,8 +263,8 @@ export declare const TargetKindCapsSchema: z.ZodObject<{
263
263
  mediaTypes: z.ZodArray<z.ZodEnum<{
264
264
  image: "image";
265
265
  icon: "icon";
266
- audio: "audio";
267
266
  video: "video";
267
+ audio: "audio";
268
268
  gif: "gif";
269
269
  }>>;
270
270
  mode: z.ZodEnum<{
@@ -314,8 +314,8 @@ export declare const TargetKindSchema: z.ZodObject<{
314
314
  mediaTypes: z.ZodArray<z.ZodEnum<{
315
315
  image: "image";
316
316
  icon: "icon";
317
- audio: "audio";
318
317
  video: "video";
318
+ audio: "audio";
319
319
  gif: "gif";
320
320
  }>>;
321
321
  mode: z.ZodEnum<{
@@ -444,8 +444,8 @@ export declare const notificationOutputCapability: {
444
444
  mediaTypes: z.ZodArray<z.ZodEnum<{
445
445
  image: "image";
446
446
  icon: "icon";
447
- audio: "audio";
448
447
  video: "video";
448
+ audio: "audio";
449
449
  gif: "gif";
450
450
  }>>;
451
451
  mode: z.ZodEnum<{
@@ -513,8 +513,8 @@ export declare const notificationOutputCapability: {
513
513
  mediaType: z.ZodEnum<{
514
514
  image: "image";
515
515
  icon: "icon";
516
- audio: "audio";
517
516
  video: "video";
517
+ audio: "audio";
518
518
  gif: "gif";
519
519
  }>;
520
520
  url: z.ZodOptional<z.ZodString>;
@@ -592,8 +592,8 @@ export declare const notificationOutputCapability: {
592
592
  mediaType: z.ZodEnum<{
593
593
  image: "image";
594
594
  icon: "icon";
595
- audio: "audio";
596
595
  video: "video";
596
+ audio: "audio";
597
597
  gif: "gif";
598
598
  }>;
599
599
  url: z.ZodOptional<z.ZodString>;
@@ -1600,12 +1600,12 @@ export declare const NcConditionDescriptorSchema: z.ZodObject<{
1600
1600
  id: z.ZodString;
1601
1601
  group: z.ZodEnum<{
1602
1602
  package: "package";
1603
+ class: "class";
1604
+ label: "label";
1603
1605
  audio: "audio";
1604
1606
  device: "device";
1605
1607
  system: "system";
1606
- label: "label";
1607
1608
  scope: "scope";
1608
- class: "class";
1609
1609
  zones: "zones";
1610
1610
  schedule: "schedule";
1611
1611
  occupancy: "occupancy";
@@ -1842,8 +1842,8 @@ export type NcHistoryFilter = z.infer<typeof NcHistoryFilterSchema>;
1842
1842
  * summarising the same silence.
1843
1843
  */
1844
1844
  export declare const NcSnoozeScopeSchema: z.ZodEnum<{
1845
- device: "device";
1846
1845
  all: "all";
1846
+ device: "device";
1847
1847
  rule: "rule";
1848
1848
  }>;
1849
1849
  export type NcSnoozeScope = z.infer<typeof NcSnoozeScopeSchema>;
@@ -1854,8 +1854,8 @@ export type NcSnoozeScope = z.infer<typeof NcSnoozeScopeSchema>;
1854
1854
  */
1855
1855
  export declare const NcSnoozeInputSchema: z.ZodObject<{
1856
1856
  scope: z.ZodEnum<{
1857
- device: "device";
1858
1857
  all: "all";
1858
+ device: "device";
1859
1859
  rule: "rule";
1860
1860
  }>;
1861
1861
  ruleId: z.ZodOptional<z.ZodString>;
@@ -1871,8 +1871,8 @@ export declare const NcSnoozeSchema: z.ZodObject<{
1871
1871
  id: z.ZodString;
1872
1872
  userId: z.ZodString;
1873
1873
  scope: z.ZodEnum<{
1874
- device: "device";
1875
1874
  all: "all";
1875
+ device: "device";
1876
1876
  rule: "rule";
1877
1877
  }>;
1878
1878
  ruleId: z.ZodOptional<z.ZodString>;
@@ -3880,12 +3880,12 @@ export declare const notificationRulesCapability: {
3880
3880
  id: z.ZodString;
3881
3881
  group: z.ZodEnum<{
3882
3882
  package: "package";
3883
+ class: "class";
3884
+ label: "label";
3883
3885
  audio: "audio";
3884
3886
  device: "device";
3885
3887
  system: "system";
3886
- label: "label";
3887
3888
  scope: "scope";
3888
- class: "class";
3889
3889
  zones: "zones";
3890
3890
  schedule: "schedule";
3891
3891
  occupancy: "occupancy";
@@ -4061,8 +4061,8 @@ export declare const notificationRulesCapability: {
4061
4061
  id: z.ZodString;
4062
4062
  userId: z.ZodString;
4063
4063
  scope: z.ZodEnum<{
4064
- device: "device";
4065
4064
  all: "all";
4065
+ device: "device";
4066
4066
  rule: "rule";
4067
4067
  }>;
4068
4068
  ruleId: z.ZodOptional<z.ZodString>;
@@ -4088,8 +4088,8 @@ export declare const notificationRulesCapability: {
4088
4088
  readonly createSnooze: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
4089
4089
  snooze: z.ZodObject<{
4090
4090
  scope: z.ZodEnum<{
4091
- device: "device";
4092
4091
  all: "all";
4092
+ device: "device";
4093
4093
  rule: "rule";
4094
4094
  }>;
4095
4095
  ruleId: z.ZodOptional<z.ZodString>;
@@ -4104,8 +4104,8 @@ export declare const notificationRulesCapability: {
4104
4104
  id: z.ZodString;
4105
4105
  userId: z.ZodString;
4106
4106
  scope: z.ZodEnum<{
4107
- device: "device";
4108
4107
  all: "all";
4108
+ device: "device";
4109
4109
  rule: "rule";
4110
4110
  }>;
4111
4111
  ruleId: z.ZodOptional<z.ZodString>;
@@ -116,7 +116,7 @@ declare const OauthIntegrationDescriptorSchema: z.ZodObject<{
116
116
  ids: z.ZodArray<z.ZodNumber>;
117
117
  }, z.core.$strip>, z.ZodObject<{
118
118
  kind: z.ZodLiteral<"types">;
119
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
119
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
120
120
  }, z.core.$strip>, z.ZodObject<{
121
121
  kind: z.ZodLiteral<"locations">;
122
122
  locations: z.ZodArray<z.ZodString>;
@@ -188,7 +188,7 @@ export declare const oauthIntegrationCapability: {
188
188
  ids: z.ZodArray<z.ZodNumber>;
189
189
  }, z.core.$strip>, z.ZodObject<{
190
190
  kind: z.ZodLiteral<"types">;
191
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
191
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
192
192
  }, z.core.$strip>, z.ZodObject<{
193
193
  kind: z.ZodLiteral<"locations">;
194
194
  locations: z.ZodArray<z.ZodString>;
@@ -645,12 +645,12 @@ export declare const osdManagerCapability: {
645
645
  id: z.ZodString;
646
646
  group: z.ZodEnum<{
647
647
  package: "package";
648
+ class: "class";
649
+ label: "label";
648
650
  audio: "audio";
649
651
  device: "device";
650
652
  system: "system";
651
- label: "label";
652
653
  scope: "scope";
653
- class: "class";
654
654
  zones: "zones";
655
655
  schedule: "schedule";
656
656
  occupancy: "occupancy";