@camstack/types 1.2.16 → 1.2.17

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 (59) hide show
  1. package/dist/addon.d.ts +1 -0
  2. package/dist/addon.js +265 -1
  3. package/dist/addon.mjs +264 -2
  4. package/dist/capabilities/addons.cap.d.ts +7 -7
  5. package/dist/capabilities/broker.cap.d.ts +8 -8
  6. package/dist/capabilities/camera-streams.cap.d.ts +5 -5
  7. package/dist/capabilities/climate-control.cap.d.ts +8 -8
  8. package/dist/capabilities/day-night.cap.d.ts +8 -8
  9. package/dist/capabilities/decoder.cap.d.ts +2 -2
  10. package/dist/capabilities/device-manager.cap.d.ts +2 -2
  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/index.d.ts +1 -1
  14. package/dist/capabilities/intercom.cap.d.ts +6 -6
  15. package/dist/capabilities/lawn-mower-control.cap.d.ts +4 -4
  16. package/dist/capabilities/llm-runtime.cap.d.ts +3 -3
  17. package/dist/capabilities/llm.cap.d.ts +4 -4
  18. package/dist/capabilities/local-network.cap.d.ts +38 -0
  19. package/dist/capabilities/media-player.cap.d.ts +9 -9
  20. package/dist/capabilities/metrics-provider.cap.d.ts +2 -2
  21. package/dist/capabilities/mqtt-broker.cap.d.ts +3 -3
  22. package/dist/capabilities/notification-output.cap.d.ts +4 -0
  23. package/dist/capabilities/notification-rules.cap.d.ts +236 -18
  24. package/dist/capabilities/pipeline-analytics.cap.d.ts +64 -27
  25. package/dist/capabilities/pipeline-executor.cap.d.ts +2 -2
  26. package/dist/capabilities/pipeline-orchestrator.cap.d.ts +15 -15
  27. package/dist/capabilities/pipeline-runner.cap.d.ts +2 -2
  28. package/dist/capabilities/recording-export.cap.d.ts +7 -7
  29. package/dist/capabilities/recording.cap.d.ts +102 -129
  30. package/dist/capabilities/schemas/orchestrator-metrics.d.ts +2 -2
  31. package/dist/capabilities/schemas/streaming-shared.d.ts +4 -4
  32. package/dist/capabilities/storage-provider.cap.d.ts +44 -0
  33. package/dist/capabilities/storage.cap.d.ts +17 -1
  34. package/dist/capabilities/stream-broker.cap.d.ts +58 -12
  35. package/dist/capabilities/webrtc-session.cap.d.ts +6 -6
  36. package/dist/generated/addon-api.d.ts +5351 -30965
  37. package/dist/generated/cap-input-defaults.d.ts +29 -0
  38. package/dist/generated/device-proxy.d.ts +2 -2
  39. package/dist/generated/method-access-map.d.ts +1 -1
  40. package/dist/generated/system-proxy.d.ts +2 -2
  41. package/dist/index.d.ts +2 -1
  42. package/dist/index.js +589 -134
  43. package/dist/index.mjs +580 -131
  44. package/dist/interfaces/addon.d.ts +9 -0
  45. package/dist/interfaces/ops-log.d.ts +2 -0
  46. package/dist/interfaces/recording-config.d.ts +33 -91
  47. package/dist/interfaces/relocate.d.ts +55 -0
  48. package/dist/interfaces/storage-location-declaration.d.ts +1 -1
  49. package/dist/interfaces/storage-location.d.ts +4 -0
  50. package/dist/interfaces/stream-broker.d.ts +1 -1
  51. package/dist/lifecycle/job.d.ts +6 -6
  52. package/dist/node.js +1 -0
  53. package/dist/node.mjs +1 -0
  54. package/dist/notification/condition-taxonomy.d.ts +61 -0
  55. package/dist/notification/format-transcode.d.ts +12 -1
  56. package/dist/{sleep-C3ceNSsf.mjs → sleep-Ct4Is70g.mjs} +6 -0
  57. package/dist/{sleep-DRg9F6JJ.js → sleep-yfPaamGa.js} +6 -0
  58. package/package.json +1 -1
  59. package/dist/interfaces/recording-config-migrate.d.ts +0 -12
@@ -47,11 +47,11 @@ import { type InferProvider } from './capability-definition.js';
47
47
  */
48
48
  export declare const BrokerStatusEnum: z.ZodEnum<{
49
49
  error: "error";
50
- unreachable: "unreachable";
51
- connecting: "connecting";
52
50
  connected: "connected";
53
51
  disconnected: "disconnected";
52
+ connecting: "connecting";
54
53
  "auth-failed": "auth-failed";
54
+ unreachable: "unreachable";
55
55
  }>;
56
56
  export type BrokerStatus = z.infer<typeof BrokerStatusEnum>;
57
57
  declare const BrokerInfoSchema: z.ZodObject<{
@@ -61,11 +61,11 @@ declare const BrokerInfoSchema: z.ZodObject<{
61
61
  kind: z.ZodString;
62
62
  status: z.ZodEnum<{
63
63
  error: "error";
64
- unreachable: "unreachable";
65
- connecting: "connecting";
66
64
  connected: "connected";
67
65
  disconnected: "disconnected";
66
+ connecting: "connecting";
68
67
  "auth-failed": "auth-failed";
68
+ unreachable: "unreachable";
69
69
  }>;
70
70
  info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
71
71
  lastCheckedAt: z.ZodNullable<z.ZodNumber>;
@@ -161,11 +161,11 @@ export declare const brokerCapability: {
161
161
  kind: z.ZodString;
162
162
  status: z.ZodEnum<{
163
163
  error: "error";
164
- unreachable: "unreachable";
165
- connecting: "connecting";
166
164
  connected: "connected";
167
165
  disconnected: "disconnected";
166
+ connecting: "connecting";
168
167
  "auth-failed": "auth-failed";
168
+ unreachable: "unreachable";
169
169
  }>;
170
170
  info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
171
171
  lastCheckedAt: z.ZodNullable<z.ZodNumber>;
@@ -180,11 +180,11 @@ export declare const brokerCapability: {
180
180
  kind: z.ZodString;
181
181
  status: z.ZodEnum<{
182
182
  error: "error";
183
- unreachable: "unreachable";
184
- connecting: "connecting";
185
183
  connected: "connected";
186
184
  disconnected: "disconnected";
185
+ connecting: "connecting";
187
186
  "auth-failed": "auth-failed";
187
+ unreachable: "unreachable";
188
188
  }>;
189
189
  info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
190
190
  lastCheckedAt: z.ZodNullable<z.ZodNumber>;
@@ -116,9 +116,9 @@ export declare const cameraStreamsCapability: {
116
116
  sourceCamStreamId: z.ZodNullable<z.ZodString>;
117
117
  status: z.ZodEnum<{
118
118
  error: "error";
119
+ connecting: "connecting";
119
120
  unassigned: "unassigned";
120
121
  idle: "idle";
121
- connecting: "connecting";
122
122
  streaming: "streaming";
123
123
  }>;
124
124
  resolution: z.ZodOptional<z.ZodObject<{
@@ -280,9 +280,9 @@ export declare const cameraStreamsCapability: {
280
280
  sourceCamStreamId: z.ZodNullable<z.ZodString>;
281
281
  status: z.ZodEnum<{
282
282
  error: "error";
283
+ connecting: "connecting";
283
284
  unassigned: "unassigned";
284
285
  idle: "idle";
285
- connecting: "connecting";
286
286
  streaming: "streaming";
287
287
  }>;
288
288
  resolution: z.ZodOptional<z.ZodObject<{
@@ -323,23 +323,23 @@ export declare const cameraStreamsCapability: {
323
323
  slotStatuses: z.ZodObject<{
324
324
  high: z.ZodOptional<z.ZodEnum<{
325
325
  error: "error";
326
+ connecting: "connecting";
326
327
  unassigned: "unassigned";
327
328
  idle: "idle";
328
- connecting: "connecting";
329
329
  streaming: "streaming";
330
330
  }>>;
331
331
  mid: z.ZodOptional<z.ZodEnum<{
332
332
  error: "error";
333
+ connecting: "connecting";
333
334
  unassigned: "unassigned";
334
335
  idle: "idle";
335
- connecting: "connecting";
336
336
  streaming: "streaming";
337
337
  }>>;
338
338
  low: z.ZodOptional<z.ZodEnum<{
339
339
  error: "error";
340
+ connecting: "connecting";
340
341
  unassigned: "unassigned";
341
342
  idle: "idle";
342
- connecting: "connecting";
343
343
  streaming: "streaming";
344
344
  }>>;
345
345
  }, z.core.$strip>;
@@ -33,8 +33,8 @@ import { DeviceType } from '../device/device-type.js';
33
33
  * — any climate device (not just Gree) can advertise either / both axes.
34
34
  */
35
35
  export declare const HvacModeSchema: z.ZodEnum<{
36
- auto: "auto";
37
36
  off: "off";
37
+ auto: "auto";
38
38
  heat: "heat";
39
39
  cool: "cool";
40
40
  heat_cool: "heat_cool";
@@ -44,8 +44,8 @@ export declare const HvacModeSchema: z.ZodEnum<{
44
44
  export type HvacMode = z.infer<typeof HvacModeSchema>;
45
45
  export declare const ClimateControlStatusSchema: z.ZodObject<{
46
46
  mode: z.ZodEnum<{
47
- auto: "auto";
48
47
  off: "off";
48
+ auto: "auto";
49
49
  heat: "heat";
50
50
  cool: "cool";
51
51
  heat_cool: "heat_cool";
@@ -53,8 +53,8 @@ export declare const ClimateControlStatusSchema: z.ZodObject<{
53
53
  dry: "dry";
54
54
  }>;
55
55
  availableModes: z.ZodArray<z.ZodEnum<{
56
- auto: "auto";
57
56
  off: "off";
57
+ auto: "auto";
58
58
  heat: "heat";
59
59
  cool: "cool";
60
60
  heat_cool: "heat_cool";
@@ -86,8 +86,8 @@ export declare const climateControlCapability: {
86
86
  readonly setMode: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
87
87
  deviceId: z.ZodNumber;
88
88
  mode: z.ZodEnum<{
89
- auto: "auto";
90
89
  off: "off";
90
+ auto: "auto";
91
91
  heat: "heat";
92
92
  cool: "cool";
93
93
  heat_cool: "heat_cool";
@@ -128,8 +128,8 @@ export declare const climateControlCapability: {
128
128
  readonly status: {
129
129
  readonly schema: z.ZodObject<{
130
130
  mode: z.ZodEnum<{
131
- auto: "auto";
132
131
  off: "off";
132
+ auto: "auto";
133
133
  heat: "heat";
134
134
  cool: "cool";
135
135
  heat_cool: "heat_cool";
@@ -137,8 +137,8 @@ export declare const climateControlCapability: {
137
137
  dry: "dry";
138
138
  }>;
139
139
  availableModes: z.ZodArray<z.ZodEnum<{
140
- auto: "auto";
141
140
  off: "off";
141
+ auto: "auto";
142
142
  heat: "heat";
143
143
  cool: "cool";
144
144
  heat_cool: "heat_cool";
@@ -168,8 +168,8 @@ export declare const climateControlCapability: {
168
168
  */
169
169
  readonly runtimeState: z.ZodObject<{
170
170
  mode: z.ZodEnum<{
171
- auto: "auto";
172
171
  off: "off";
172
+ auto: "auto";
173
173
  heat: "heat";
174
174
  cool: "cool";
175
175
  heat_cool: "heat_cool";
@@ -177,8 +177,8 @@ export declare const climateControlCapability: {
177
177
  dry: "dry";
178
178
  }>;
179
179
  availableModes: z.ZodArray<z.ZodEnum<{
180
- auto: "auto";
181
180
  off: "off";
181
+ auto: "auto";
182
182
  heat: "heat";
183
183
  cool: "cool";
184
184
  heat_cool: "heat_cool";
@@ -18,8 +18,8 @@ import { DeviceType } from '../device/device-type.js';
18
18
  */
19
19
  /** IR-cut switching mode. `schedule` = time-of-day table configured on the camera. */
20
20
  export declare const DayNightModeSchema: z.ZodEnum<{
21
- auto: "auto";
22
21
  night: "night";
22
+ auto: "auto";
23
23
  day: "day";
24
24
  schedule: "schedule";
25
25
  }>;
@@ -30,8 +30,8 @@ export declare const DayNightModeSchema: z.ZodEnum<{
30
30
  */
31
31
  export declare const DayNightStatusSchema: z.ZodObject<{
32
32
  mode: z.ZodEnum<{
33
- auto: "auto";
34
33
  night: "night";
34
+ auto: "auto";
35
35
  day: "day";
36
36
  schedule: "schedule";
37
37
  }>;
@@ -47,8 +47,8 @@ export declare const DayNightStatusSchema: z.ZodObject<{
47
47
  */
48
48
  export declare const DayNightOptionsSchema: z.ZodObject<{
49
49
  modes: z.ZodArray<z.ZodEnum<{
50
- auto: "auto";
51
50
  night: "night";
51
+ auto: "auto";
52
52
  day: "day";
53
53
  schedule: "schedule";
54
54
  }>>;
@@ -71,8 +71,8 @@ export declare const DayNightOptionsSchema: z.ZodObject<{
71
71
  */
72
72
  export declare const DayNightSettingsPatchSchema: z.ZodObject<{
73
73
  mode: z.ZodOptional<z.ZodEnum<{
74
- auto: "auto";
75
74
  night: "night";
75
+ auto: "auto";
76
76
  day: "day";
77
77
  schedule: "schedule";
78
78
  }>>;
@@ -101,8 +101,8 @@ export declare const dayNightCapability: {
101
101
  deviceId: z.ZodNumber;
102
102
  }, z.core.$strip>, z.ZodObject<{
103
103
  modes: z.ZodArray<z.ZodEnum<{
104
- auto: "auto";
105
104
  night: "night";
105
+ auto: "auto";
106
106
  day: "day";
107
107
  schedule: "schedule";
108
108
  }>>;
@@ -123,8 +123,8 @@ export declare const dayNightCapability: {
123
123
  deviceId: z.ZodNumber;
124
124
  settings: z.ZodObject<{
125
125
  mode: z.ZodOptional<z.ZodEnum<{
126
- auto: "auto";
127
126
  night: "night";
127
+ auto: "auto";
128
128
  day: "day";
129
129
  schedule: "schedule";
130
130
  }>>;
@@ -136,8 +136,8 @@ export declare const dayNightCapability: {
136
136
  readonly status: {
137
137
  readonly schema: z.ZodObject<{
138
138
  mode: z.ZodEnum<{
139
- auto: "auto";
140
139
  night: "night";
140
+ auto: "auto";
141
141
  day: "day";
142
142
  schedule: "schedule";
143
143
  }>;
@@ -149,8 +149,8 @@ export declare const dayNightCapability: {
149
149
  };
150
150
  readonly runtimeState: z.ZodObject<{
151
151
  mode: z.ZodEnum<{
152
- auto: "auto";
153
152
  night: "night";
153
+ auto: "auto";
154
154
  day: "day";
155
155
  schedule: "schedule";
156
156
  }>;
@@ -80,8 +80,8 @@ export declare const decoderCapability: {
80
80
  deviceId: z.ZodOptional<z.ZodNumber>;
81
81
  tag: z.ZodOptional<z.ZodString>;
82
82
  frameSink: z.ZodDefault<z.ZodEnum<{
83
- callback: "callback";
84
83
  shm: "shm";
84
+ callback: "callback";
85
85
  }>>;
86
86
  debug: z.ZodOptional<z.ZodBoolean>;
87
87
  }, z.core.$strip>, z.ZodObject<{
@@ -210,8 +210,8 @@ export declare const decoderCapability: {
210
210
  deviceId: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
211
211
  tag: z.ZodOptional<z.ZodOptional<z.ZodString>>;
212
212
  frameSink: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
213
- callback: "callback";
214
213
  shm: "shm";
214
+ callback: "callback";
215
215
  }>>>;
216
216
  debug: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
217
217
  }, z.core.$strip>;
@@ -203,8 +203,8 @@ export declare const ConfigEntrySchema: z.ZodObject<{
203
203
  description: z.ZodOptional<z.ZodString>;
204
204
  }, z.core.$strip>;
205
205
  export declare const DeviceLinkModeSchema: z.ZodEnum<{
206
- auto: "auto";
207
206
  manual: "manual";
207
+ auto: "auto";
208
208
  }>;
209
209
  export type DeviceLinkMode = z.infer<typeof DeviceLinkModeSchema>;
210
210
  /** One resolved linked device — the compact projection consumers need. */
@@ -1052,8 +1052,8 @@ export declare const deviceManagerCapability: {
1052
1052
  deviceId: z.ZodNumber;
1053
1053
  }, z.core.$strip>, z.ZodObject<{
1054
1054
  mode: z.ZodEnum<{
1055
- auto: "auto";
1056
1055
  manual: "manual";
1056
+ auto: "auto";
1057
1057
  }>;
1058
1058
  devices: z.ZodArray<z.ZodObject<{
1059
1059
  deviceId: z.ZodNumber;
@@ -89,8 +89,8 @@ export declare const faceGalleryCapability: {
89
89
  limit: z.ZodOptional<z.ZodNumber>;
90
90
  filter: z.ZodOptional<z.ZodEnum<{
91
91
  unassigned: "unassigned";
92
- all: "all";
93
92
  recognized: "recognized";
93
+ all: "all";
94
94
  }>>;
95
95
  }, z.core.$strip>>, z.ZodReadonly<z.ZodArray<z.ZodObject<{
96
96
  faceId: z.ZodString;
@@ -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
- auto: "auto";
34
33
  manual: "manual";
34
+ auto: "auto";
35
35
  }>;
36
36
  /** Exposure mode. */
37
37
  export declare const ExposureModeSchema: z.ZodEnum<{
38
- auto: "auto";
39
38
  manual: "manual";
39
+ auto: "auto";
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
- auto: "auto";
74
73
  manual: "manual";
74
+ auto: "auto";
75
75
  }>>;
76
76
  warmth: z.ZodOptional<z.ZodNumber>;
77
77
  exposureMode: z.ZodOptional<z.ZodEnum<{
78
- auto: "auto";
79
78
  manual: "manual";
79
+ auto: "auto";
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
- auto: "auto";
131
130
  manual: "manual";
131
+ auto: "auto";
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
- auto: "auto";
141
140
  manual: "manual";
141
+ auto: "auto";
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
- auto: "auto";
169
168
  manual: "manual";
169
+ auto: "auto";
170
170
  }>>;
171
171
  warmth: z.ZodOptional<z.ZodNumber>;
172
172
  exposureMode: z.ZodOptional<z.ZodEnum<{
173
- auto: "auto";
174
173
  manual: "manual";
174
+ auto: "auto";
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
- auto: "auto";
241
240
  manual: "manual";
241
+ auto: "auto";
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
- auto: "auto";
251
250
  manual: "manual";
251
+ auto: "auto";
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
- auto: "auto";
277
276
  manual: "manual";
277
+ auto: "auto";
278
278
  }>>;
279
279
  warmth: z.ZodOptional<z.ZodNumber>;
280
280
  exposureMode: z.ZodOptional<z.ZodEnum<{
281
- auto: "auto";
282
281
  manual: "manual";
282
+ auto: "auto";
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
- auto: "auto";
309
308
  manual: "manual";
309
+ auto: "auto";
310
310
  }>>;
311
311
  warmth: z.ZodOptional<z.ZodNumber>;
312
312
  exposureMode: z.ZodOptional<z.ZodEnum<{
313
- auto: "auto";
314
313
  manual: "manual";
314
+ auto: "auto";
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
- auto: "auto";
341
340
  manual: "manual";
341
+ auto: "auto";
342
342
  }>>;
343
343
  warmth: z.ZodOptional<z.ZodNumber>;
344
344
  exposureMode: z.ZodOptional<z.ZodEnum<{
345
- auto: "auto";
346
345
  manual: "manual";
346
+ auto: "auto";
347
347
  }>>;
348
348
  backlightMode: z.ZodOptional<z.ZodEnum<{
349
349
  off: "off";
@@ -73,7 +73,7 @@ export { AddBrokerInputSchema, BrokerConnectionDetailsSchema, BrokerInfoSchema,
73
73
  export type { NetworkAccessStatus, NetworkEndpoint } from './network-access.cap.js';
74
74
  export { NetworkAccessStatusSchema, NetworkEndpointSchema, networkAccessCapability, } from './network-access.cap.js';
75
75
  export { type Attachment, type AttachmentMediaType, AttachmentMediaTypeSchema, AttachmentSchema, type DiscoveredTarget, DiscoveredTargetSchema, type INotificationOutputProvider, type NotificationAction, NotificationActionSchema, type NotificationFormat, NotificationFormatSchema, NotificationSchema, notificationOutputCapability, type RenderedAs, RenderedAsSchema, type SendResult, SendResultSchema, type Target, type TargetKind, type TargetKindCaps, TargetKindCapsSchema, type TargetKindLevel, TargetKindLevelSchema, TargetKindSchema, TargetSchema, type TestResult, TestResultSchema, } from './notification-output.cap.js';
76
- export { type INotificationRulesProvider, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, type NcConditionDescriptor, NcConditionDescriptorSchema, type NcConditions, NcConditionsSchema, type NcDelivery, NcDeliverySchema, type NcHistoryEntry, NcHistoryEntrySchema, type NcHistoryFilter, NcHistoryFilterSchema, type NcHistoryRecordKind, NcHistoryRecordKindSchema, type NcHistoryStatus, NcHistoryStatusSchema, type NcHistorySubject, NcHistorySubjectSchema, type NcMediaPolicy, NcMediaPolicySchema, type NcOccupancyCondition, NcOccupancyConditionSchema, type NcPlateMatcher, NcPlateMatcherSchema, type NcRule, type NcRuleInput, NcRuleInputSchema, type NcRulePatch, NcRulePatchSchema, NcRuleSchema, type NcRuleTarget, NcRuleTargetSchema, type NcSchedule, NcScheduleSchema, type NcScheduleWindow, NcScheduleWindowSchema, type NcTestResult, NcTestResultSchema, type NcThrottle, NcThrottleSchema, type NcZoneCondition, NcZoneConditionSchema, notificationRulesCapability, } from './notification-rules.cap.js';
76
+ export { type INotificationRulesProvider, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, type NcConditionDescriptor, NcConditionDescriptorSchema, type NcConditions, NcConditionsSchema, type NcDelivery, NcDeliverySchema, type NcHistoryEntry, NcHistoryEntrySchema, type NcHistoryFilter, NcHistoryFilterSchema, type NcHistoryRecordKind, NcHistoryRecordKindSchema, type NcHistoryStatus, NcHistoryStatusSchema, type NcHistorySubject, NcHistorySubjectSchema, type NcMediaFrame, NcMediaFrameSchema, type NcMediaPolicy, NcMediaPolicySchema, type NcOccupancyCondition, NcOccupancyConditionSchema, type NcPlateMatcher, NcPlateMatcherSchema, type NcRule, type NcRuleInput, NcRuleInputSchema, type NcRulePatch, NcRulePatchSchema, NcRuleSchema, type NcRuleTarget, NcRuleTargetSchema, type NcSchedule, NcScheduleSchema, type NcScheduleWindow, NcScheduleWindowSchema, type NcTestResult, NcTestResultSchema, type NcThrottle, NcThrottleSchema, type NcZoneCondition, NcZoneConditionSchema, notificationRulesCapability, } from './notification-rules.cap.js';
77
77
  export { type IOauthIntegrationProvider, type OauthIntegrationDescriptor, OauthIntegrationDescriptorSchema, oauthIntegrationCapability, } from './oauth-integration.cap.js';
78
78
  export { type AudioEvent, AudioEventSchema, type DetectionSource, DetectionSourceSchema, type EventKind, type EventKindCategory, EventKindCategorySchema, type EventKindDescriptor, EventKindDescriptorSchema, type EventKindIcon, EventKindIconSchema, EventKindSchema, type EventPruneCounts, type EventStoreDeviceFootprint, type EventStoreFootprint, type IPipelineAnalyticsProvider, type KeyEvent, KeyEventSchema, type MediaFile, type MediaFileKind, MediaFileSchema, type MotionEvent, MotionEventSchema, type ObjectEvent, ObjectEventSchema, pipelineAnalyticsCapability, type RecentTracksPage, RecentTracksPageSchema, type RecentTracksQuery, RecentTracksQueryInput, type ScoredObjectEvent, ScoredObjectEventSchema, type SensorEvent, SensorEventSchema, type Track, type TrackCascadeCounts, TrackCascadeCountsSchema, type TrackEnvelope, TrackEnvelopeSchema, TrackedDetectionSchema, type TrackProjection, TrackProjectionSchema, TrackSchema, type TrackState, TrackStateSchema, type TrackZoneFilter, TrackZoneFilterSchema, } from './pipeline-analytics.cap.js';
79
79
  export type { NativeCropRef, PipelineStepInputOutput, PipelineValidationIssue, PipelineValidationResult, } from './pipeline-executor.cap.js';
@@ -18,8 +18,8 @@ export declare const IntercomAbilitySchema: z.ZodObject<{
18
18
  codecs: z.ZodArray<z.ZodString>;
19
19
  sampleRate: z.ZodNumber;
20
20
  duplex: z.ZodEnum<{
21
- full: "full";
22
21
  half: "half";
22
+ full: "full";
23
23
  }>;
24
24
  maxBacklogMs: z.ZodNumber;
25
25
  }, z.core.$strip>;
@@ -31,8 +31,8 @@ export declare const IntercomStatusSchema: z.ZodObject<{
31
31
  codecs: z.ZodArray<z.ZodString>;
32
32
  sampleRate: z.ZodNumber;
33
33
  duplex: z.ZodEnum<{
34
- full: "full";
35
34
  half: "half";
35
+ full: "full";
36
36
  }>;
37
37
  maxBacklogMs: z.ZodNumber;
38
38
  }, z.core.$strip>>;
@@ -57,8 +57,8 @@ export type IntercomStatus = z.infer<typeof IntercomStatusSchema>;
57
57
  * Reolink: per-talk-session rate (16000 Hz typical).
58
58
  */
59
59
  export declare const TalkAudioCodecSchema: z.ZodEnum<{
60
- opus: "opus";
61
60
  s16le: "s16le";
61
+ opus: "opus";
62
62
  g711ulaw: "g711ulaw";
63
63
  g711alaw: "g711alaw";
64
64
  }>;
@@ -125,8 +125,8 @@ export declare const intercomCapability: {
125
125
  deviceId: z.ZodNumber;
126
126
  audioBase64: z.ZodString;
127
127
  codec: z.ZodOptional<z.ZodEnum<{
128
- opus: "opus";
129
128
  s16le: "s16le";
129
+ opus: "opus";
130
130
  g711ulaw: "g711ulaw";
131
131
  g711alaw: "g711alaw";
132
132
  }>>;
@@ -152,8 +152,8 @@ export declare const intercomCapability: {
152
152
  codecs: z.ZodArray<z.ZodString>;
153
153
  sampleRate: z.ZodNumber;
154
154
  duplex: z.ZodEnum<{
155
- full: "full";
156
155
  half: "half";
156
+ full: "full";
157
157
  }>;
158
158
  maxBacklogMs: z.ZodNumber;
159
159
  }, z.core.$strip>>;
@@ -169,8 +169,8 @@ export declare const intercomCapability: {
169
169
  codecs: z.ZodArray<z.ZodString>;
170
170
  sampleRate: z.ZodNumber;
171
171
  duplex: z.ZodEnum<{
172
- full: "full";
173
172
  half: "half";
173
+ full: "full";
174
174
  }>;
175
175
  maxBacklogMs: z.ZodNumber;
176
176
  }, z.core.$strip>>;
@@ -15,8 +15,8 @@ import { DeviceType } from '../device/device-type.js';
15
15
  export declare const LawnMowerActivitySchema: z.ZodEnum<{
16
16
  error: "error";
17
17
  idle: "idle";
18
- paused: "paused";
19
18
  mowing: "mowing";
19
+ paused: "paused";
20
20
  docked: "docked";
21
21
  }>;
22
22
  export type LawnMowerActivity = z.infer<typeof LawnMowerActivitySchema>;
@@ -31,8 +31,8 @@ export declare const LawnMowerControlStatusSchema: z.ZodObject<{
31
31
  activity: z.ZodEnum<{
32
32
  error: "error";
33
33
  idle: "idle";
34
- paused: "paused";
35
34
  mowing: "mowing";
35
+ paused: "paused";
36
36
  docked: "docked";
37
37
  }>;
38
38
  batteryLevel: z.ZodNullable<z.ZodNumber>;
@@ -69,8 +69,8 @@ export declare const lawnMowerControlCapability: {
69
69
  activity: z.ZodEnum<{
70
70
  error: "error";
71
71
  idle: "idle";
72
- paused: "paused";
73
72
  mowing: "mowing";
73
+ paused: "paused";
74
74
  docked: "docked";
75
75
  }>;
76
76
  batteryLevel: z.ZodNullable<z.ZodNumber>;
@@ -94,8 +94,8 @@ export declare const lawnMowerControlCapability: {
94
94
  activity: z.ZodEnum<{
95
95
  error: "error";
96
96
  idle: "idle";
97
- paused: "paused";
98
97
  mowing: "mowing";
98
+ paused: "paused";
99
99
  docked: "docked";
100
100
  }>;
101
101
  batteryLevel: z.ZodNullable<z.ZodNumber>;
@@ -51,8 +51,8 @@ export declare const LlmRuntimeStatusSchema: z.ZodObject<{
51
51
  nodeId: z.ZodString;
52
52
  state: z.ZodEnum<{
53
53
  ready: "ready";
54
- stopped: "stopped";
55
54
  failed: "failed";
55
+ stopped: "stopped";
56
56
  starting: "starting";
57
57
  downloading: "downloading";
58
58
  crashed: "crashed";
@@ -217,8 +217,8 @@ export declare const llmRuntimeCapability: {
217
217
  nodeId: z.ZodString;
218
218
  state: z.ZodEnum<{
219
219
  ready: "ready";
220
- stopped: "stopped";
221
220
  failed: "failed";
221
+ stopped: "stopped";
222
222
  starting: "starting";
223
223
  downloading: "downloading";
224
224
  crashed: "crashed";
@@ -238,8 +238,8 @@ export declare const llmRuntimeCapability: {
238
238
  nodeId: z.ZodString;
239
239
  state: z.ZodEnum<{
240
240
  ready: "ready";
241
- stopped: "stopped";
242
241
  failed: "failed";
242
+ stopped: "stopped";
243
243
  starting: "starting";
244
244
  downloading: "downloading";
245
245
  crashed: "crashed";
@@ -140,8 +140,8 @@ export declare const LlmRuntimeNodeSchema: z.ZodObject<{
140
140
  nodeId: z.ZodString;
141
141
  state: z.ZodEnum<{
142
142
  ready: "ready";
143
- stopped: "stopped";
144
143
  failed: "failed";
144
+ stopped: "stopped";
145
145
  starting: "starting";
146
146
  downloading: "downloading";
147
147
  crashed: "crashed";
@@ -492,8 +492,8 @@ export declare const llmCapability: {
492
492
  nodeId: z.ZodString;
493
493
  state: z.ZodEnum<{
494
494
  ready: "ready";
495
- stopped: "stopped";
496
495
  failed: "failed";
496
+ stopped: "stopped";
497
497
  starting: "starting";
498
498
  downloading: "downloading";
499
499
  crashed: "crashed";
@@ -548,8 +548,8 @@ export declare const llmCapability: {
548
548
  nodeId: z.ZodString;
549
549
  state: z.ZodEnum<{
550
550
  ready: "ready";
551
- stopped: "stopped";
552
551
  failed: "failed";
552
+ stopped: "stopped";
553
553
  starting: "starting";
554
554
  downloading: "downloading";
555
555
  crashed: "crashed";
@@ -571,8 +571,8 @@ export declare const llmCapability: {
571
571
  nodeId: z.ZodString;
572
572
  state: z.ZodEnum<{
573
573
  ready: "ready";
574
- stopped: "stopped";
575
574
  failed: "failed";
575
+ stopped: "stopped";
576
576
  starting: "starting";
577
577
  downloading: "downloading";
578
578
  crashed: "crashed";