@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
@@ -26,9 +26,9 @@ import { DeviceType } from '../device/device-type.js';
26
26
  * (per-device surface) and `track-trail` caps — see P11 cleanup.
27
27
  */
28
28
  declare const TrackStateSchema: z.ZodEnum<{
29
- moving: "moving";
30
- left: "left";
31
29
  idle: "idle";
30
+ left: "left";
31
+ moving: "moving";
32
32
  new: "new";
33
33
  entered: "entered";
34
34
  }>;
@@ -68,10 +68,10 @@ export declare const EventKindIconSchema: z.ZodEnum<{
68
68
  animal: "animal";
69
69
  motion: "motion";
70
70
  package: "package";
71
+ water: "water";
71
72
  door: "door";
72
73
  pir: "pir";
73
74
  smoke: "smoke";
74
- water: "water";
75
75
  }>;
76
76
  export type EventKindIcon = z.infer<typeof EventKindIconSchema>;
77
77
  export declare const EventKindCategorySchema: z.ZodEnum<{
@@ -105,10 +105,10 @@ declare const EventKindDescriptorSchema: z.ZodObject<{
105
105
  animal: "animal";
106
106
  motion: "motion";
107
107
  package: "package";
108
+ water: "water";
108
109
  door: "door";
109
110
  pir: "pir";
110
111
  smoke: "smoke";
111
- water: "water";
112
112
  }>;
113
113
  category: z.ZodEnum<{
114
114
  sensor: "sensor";
@@ -237,9 +237,9 @@ declare const TrackSchema: z.ZodObject<{
237
237
  classes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
238
238
  totalDistance: z.ZodNumber;
239
239
  state: z.ZodEnum<{
240
- moving: "moving";
241
- left: "left";
242
240
  idle: "idle";
241
+ left: "left";
242
+ moving: "moving";
243
243
  new: "new";
244
244
  entered: "entered";
245
245
  }>;
@@ -315,9 +315,9 @@ declare const ObjectEventSchema: z.ZodObject<{
315
315
  }, z.core.$strip>>;
316
316
  zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
317
317
  state: z.ZodOptional<z.ZodEnum<{
318
- moving: "moving";
319
- left: "left";
320
318
  idle: "idle";
319
+ left: "left";
320
+ moving: "moving";
321
321
  new: "new";
322
322
  entered: "entered";
323
323
  }>>;
@@ -438,9 +438,9 @@ declare const RecentTracksPageSchema: z.ZodObject<{
438
438
  classes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
439
439
  totalDistance: z.ZodNumber;
440
440
  state: z.ZodEnum<{
441
- moving: "moving";
442
- left: "left";
443
441
  idle: "idle";
442
+ left: "left";
443
+ moving: "moving";
444
444
  new: "new";
445
445
  entered: "entered";
446
446
  }>;
@@ -488,9 +488,9 @@ declare const TrackedDetectionSchema: z.ZodObject<{
488
488
  }, z.core.$strip>;
489
489
  zones: z.ZodReadonly<z.ZodArray<z.ZodString>>;
490
490
  state: z.ZodEnum<{
491
- moving: "moving";
492
- left: "left";
493
491
  idle: "idle";
492
+ left: "left";
493
+ moving: "moving";
494
494
  new: "new";
495
495
  entered: "entered";
496
496
  }>;
@@ -514,9 +514,9 @@ export declare const ScoredObjectEventSchema: z.ZodObject<{
514
514
  }, z.core.$strip>>;
515
515
  zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
516
516
  state: z.ZodOptional<z.ZodEnum<{
517
- moving: "moving";
518
- left: "left";
519
517
  idle: "idle";
518
+ left: "left";
519
+ moving: "moving";
520
520
  new: "new";
521
521
  entered: "entered";
522
522
  }>>;
@@ -619,9 +619,9 @@ export declare const pipelineAnalyticsCapability: {
619
619
  classes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
620
620
  totalDistance: z.ZodNumber;
621
621
  state: z.ZodEnum<{
622
- moving: "moving";
623
- left: "left";
624
622
  idle: "idle";
623
+ left: "left";
624
+ moving: "moving";
625
625
  new: "new";
626
626
  entered: "entered";
627
627
  }>;
@@ -688,9 +688,9 @@ export declare const pipelineAnalyticsCapability: {
688
688
  classes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
689
689
  totalDistance: z.ZodNumber;
690
690
  state: z.ZodEnum<{
691
- moving: "moving";
692
- left: "left";
693
691
  idle: "idle";
692
+ left: "left";
693
+ moving: "moving";
694
694
  new: "new";
695
695
  entered: "entered";
696
696
  }>;
@@ -779,9 +779,9 @@ export declare const pipelineAnalyticsCapability: {
779
779
  classes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
780
780
  totalDistance: z.ZodNumber;
781
781
  state: z.ZodEnum<{
782
- moving: "moving";
783
- left: "left";
784
782
  idle: "idle";
783
+ left: "left";
784
+ moving: "moving";
785
785
  new: "new";
786
786
  entered: "entered";
787
787
  }>;
@@ -866,9 +866,9 @@ export declare const pipelineAnalyticsCapability: {
866
866
  classes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
867
867
  totalDistance: z.ZodNumber;
868
868
  state: z.ZodEnum<{
869
- moving: "moving";
870
- left: "left";
871
869
  idle: "idle";
870
+ left: "left";
871
+ moving: "moving";
872
872
  new: "new";
873
873
  entered: "entered";
874
874
  }>;
@@ -953,9 +953,9 @@ export declare const pipelineAnalyticsCapability: {
953
953
  }, z.core.$strip>>;
954
954
  zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
955
955
  state: z.ZodOptional<z.ZodEnum<{
956
- moving: "moving";
957
- left: "left";
958
956
  idle: "idle";
957
+ left: "left";
958
+ moving: "moving";
959
959
  new: "new";
960
960
  entered: "entered";
961
961
  }>>;
@@ -1015,10 +1015,10 @@ export declare const pipelineAnalyticsCapability: {
1015
1015
  animal: "animal";
1016
1016
  motion: "motion";
1017
1017
  package: "package";
1018
+ water: "water";
1018
1019
  door: "door";
1019
1020
  pir: "pir";
1020
1021
  smoke: "smoke";
1021
- water: "water";
1022
1022
  }>;
1023
1023
  category: z.ZodEnum<{
1024
1024
  sensor: "sensor";
@@ -1220,6 +1220,42 @@ export declare const pipelineAnalyticsCapability: {
1220
1220
  }, z.core.$strip>, "mutation">;
1221
1221
  /** The events ops-log rows (newest-first), optionally scoped to one camera.
1222
1222
  * Backed by a declared pipeline-analytics SQLite collection. */
1223
+ /**
1224
+ * Move event-media blobs onto `toLocationId` (entity-routing spec Phase
1225
+ * 4): per-row copy → stamp row.locationId → delete old blob. Rows already
1226
+ * at the target are skipped, so a re-run resumes. Single-flight.
1227
+ */
1228
+ readonly relocateMedia: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
1229
+ deviceId: z.ZodOptional<z.ZodNumber>;
1230
+ toLocationId: z.ZodString;
1231
+ throttleMbps: z.ZodOptional<z.ZodNumber>;
1232
+ }, z.core.$strip>, z.ZodObject<{
1233
+ jobId: z.ZodString;
1234
+ }, z.core.$strip>, "mutation">;
1235
+ readonly getMediaRelocateStatus: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{}, z.core.$strip>, z.ZodReadonly<z.ZodArray<z.ZodObject<{
1236
+ jobId: z.ZodString;
1237
+ state: z.ZodEnum<{
1238
+ running: "running";
1239
+ done: "done";
1240
+ failed: "failed";
1241
+ cancelled: "cancelled";
1242
+ }>;
1243
+ fromLocationId: z.ZodString;
1244
+ toLocationId: z.ZodString;
1245
+ deviceId: z.ZodNullable<z.ZodNumber>;
1246
+ entities: z.ZodArray<z.ZodString>;
1247
+ filesMoved: z.ZodNumber;
1248
+ bytesMoved: z.ZodNumber;
1249
+ filesTotal: z.ZodNullable<z.ZodNumber>;
1250
+ startedAt: z.ZodNumber;
1251
+ finishedAt: z.ZodNullable<z.ZodNumber>;
1252
+ error: z.ZodNullable<z.ZodString>;
1253
+ }, z.core.$strip>>>, "query">;
1254
+ readonly cancelMediaRelocate: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
1255
+ jobId: z.ZodString;
1256
+ }, z.core.$strip>, z.ZodObject<{
1257
+ cancelled: z.ZodBoolean;
1258
+ }, z.core.$strip>, "mutation">;
1223
1259
  readonly listOpsLog: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
1224
1260
  deviceId: z.ZodOptional<z.ZodNumber>;
1225
1261
  limit: z.ZodOptional<z.ZodNumber>;
@@ -1235,6 +1271,7 @@ export declare const pipelineAnalyticsCapability: {
1235
1271
  "manual-delete": "manual-delete";
1236
1272
  rescan: "rescan";
1237
1273
  "retention-run": "retention-run";
1274
+ relocate: "relocate";
1238
1275
  }>;
1239
1276
  reason: z.ZodEnum<{
1240
1277
  manual: "manual";
@@ -1360,9 +1397,9 @@ export declare const pipelineAnalyticsCapability: {
1360
1397
  }, z.core.$strip>>;
1361
1398
  zones: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
1362
1399
  state: z.ZodOptional<z.ZodEnum<{
1363
- moving: "moving";
1364
- left: "left";
1365
1400
  idle: "idle";
1401
+ left: "left";
1402
+ moving: "moving";
1366
1403
  new: "new";
1367
1404
  entered: "entered";
1368
1405
  }>>;
@@ -382,10 +382,10 @@ declare const EngineProvisioningSchema: z.ZodObject<{
382
382
  device: z.ZodNullable<z.ZodString>;
383
383
  state: z.ZodEnum<{
384
384
  ready: "ready";
385
+ failed: "failed";
385
386
  idle: "idle";
386
387
  installing: "installing";
387
388
  verifying: "verifying";
388
- failed: "failed";
389
389
  }>;
390
390
  progress: z.ZodOptional<z.ZodNumber>;
391
391
  error: z.ZodOptional<z.ZodString>;
@@ -531,10 +531,10 @@ export declare const pipelineExecutorCapability: {
531
531
  device: z.ZodNullable<z.ZodString>;
532
532
  state: z.ZodEnum<{
533
533
  ready: "ready";
534
+ failed: "failed";
534
535
  idle: "idle";
535
536
  installing: "installing";
536
537
  verifying: "verifying";
537
- failed: "failed";
538
538
  }>;
539
539
  progress: z.ZodOptional<z.ZodNumber>;
540
540
  error: z.ZodOptional<z.ZodString>;
@@ -106,8 +106,8 @@ declare const PipelineAssignmentSchema: z.ZodObject<{
106
106
  agentNodeId: z.ZodString;
107
107
  pinned: z.ZodBoolean;
108
108
  reason: z.ZodEnum<{
109
- manual: "manual";
110
109
  capacity: "capacity";
110
+ manual: "manual";
111
111
  "hardware-affinity": "hardware-affinity";
112
112
  failover: "failover";
113
113
  rebalance: "rebalance";
@@ -266,26 +266,26 @@ declare const CameraMotionStatusSchema: z.ZodObject<{
266
266
  /** Detection engine provisioning state (mirrors pipeline-executor provisioning states). */
267
267
  declare const CameraDetectionProvisioningStateSchema: z.ZodEnum<{
268
268
  ready: "ready";
269
+ failed: "failed";
269
270
  idle: "idle";
270
271
  installing: "installing";
271
272
  verifying: "verifying";
272
- failed: "failed";
273
273
  }>;
274
274
  /** Detection provisioning sub-block. */
275
275
  declare const CameraDetectionProvisioningSchema: z.ZodObject<{
276
276
  state: z.ZodEnum<{
277
277
  ready: "ready";
278
+ failed: "failed";
278
279
  idle: "idle";
279
280
  installing: "installing";
280
281
  verifying: "verifying";
281
- failed: "failed";
282
282
  }>;
283
283
  error: z.ZodOptional<z.ZodString>;
284
284
  }, z.core.$strip>;
285
285
  /** Detection phase — derived from the runner's engine phase. */
286
286
  declare const CameraDetectionPhaseSchema: z.ZodEnum<{
287
- idle: "idle";
288
287
  active: "active";
288
+ idle: "idle";
289
289
  watching: "watching";
290
290
  }>;
291
291
  /** Detection block — null when no detection node is assigned or reachable. */
@@ -296,8 +296,8 @@ declare const CameraDetectionStatusSchema: z.ZodObject<{
296
296
  device: z.ZodString;
297
297
  }, z.core.$strip>;
298
298
  phase: z.ZodEnum<{
299
- idle: "idle";
300
299
  active: "active";
300
+ idle: "idle";
301
301
  watching: "watching";
302
302
  }>;
303
303
  configuredFps: z.ZodNumber;
@@ -307,10 +307,10 @@ declare const CameraDetectionStatusSchema: z.ZodObject<{
307
307
  provisioning: z.ZodObject<{
308
308
  state: z.ZodEnum<{
309
309
  ready: "ready";
310
+ failed: "failed";
310
311
  idle: "idle";
311
312
  installing: "installing";
312
313
  verifying: "verifying";
313
- failed: "failed";
314
314
  }>;
315
315
  error: z.ZodOptional<z.ZodString>;
316
316
  }, z.core.$strip>;
@@ -409,8 +409,8 @@ declare const CameraStatusSchema: z.ZodObject<{
409
409
  device: z.ZodString;
410
410
  }, z.core.$strip>;
411
411
  phase: z.ZodEnum<{
412
- idle: "idle";
413
412
  active: "active";
413
+ idle: "idle";
414
414
  watching: "watching";
415
415
  }>;
416
416
  configuredFps: z.ZodNumber;
@@ -420,10 +420,10 @@ declare const CameraStatusSchema: z.ZodObject<{
420
420
  provisioning: z.ZodObject<{
421
421
  state: z.ZodEnum<{
422
422
  ready: "ready";
423
+ failed: "failed";
423
424
  idle: "idle";
424
425
  installing: "installing";
425
426
  verifying: "verifying";
426
- failed: "failed";
427
427
  }>;
428
428
  error: z.ZodOptional<z.ZodString>;
429
429
  }, z.core.$strip>;
@@ -587,8 +587,8 @@ export declare const pipelineOrchestratorCapability: {
587
587
  agentNodeId: z.ZodString;
588
588
  pinned: z.ZodBoolean;
589
589
  reason: z.ZodEnum<{
590
- manual: "manual";
591
590
  capacity: "capacity";
591
+ manual: "manual";
592
592
  "hardware-affinity": "hardware-affinity";
593
593
  failover: "failover";
594
594
  rebalance: "rebalance";
@@ -603,8 +603,8 @@ export declare const pipelineOrchestratorCapability: {
603
603
  agentNodeId: z.ZodString;
604
604
  pinned: z.ZodBoolean;
605
605
  reason: z.ZodEnum<{
606
- manual: "manual";
607
606
  capacity: "capacity";
607
+ manual: "manual";
608
608
  "hardware-affinity": "hardware-affinity";
609
609
  failover: "failover";
610
610
  rebalance: "rebalance";
@@ -670,8 +670,8 @@ export declare const pipelineOrchestratorCapability: {
670
670
  avgInferenceTimeMs: z.ZodNumber;
671
671
  droppedFrames: z.ZodNumber;
672
672
  phase: z.ZodEnum<{
673
- idle: "idle";
674
673
  active: "active";
674
+ idle: "idle";
675
675
  watching: "watching";
676
676
  }>;
677
677
  }, z.core.$strip>>, import("./capability-definition.js").CapabilityMethodKind>;
@@ -1139,8 +1139,8 @@ export declare const pipelineOrchestratorCapability: {
1139
1139
  device: z.ZodString;
1140
1140
  }, z.core.$strip>;
1141
1141
  phase: z.ZodEnum<{
1142
- idle: "idle";
1143
1142
  active: "active";
1143
+ idle: "idle";
1144
1144
  watching: "watching";
1145
1145
  }>;
1146
1146
  configuredFps: z.ZodNumber;
@@ -1150,10 +1150,10 @@ export declare const pipelineOrchestratorCapability: {
1150
1150
  provisioning: z.ZodObject<{
1151
1151
  state: z.ZodEnum<{
1152
1152
  ready: "ready";
1153
+ failed: "failed";
1153
1154
  idle: "idle";
1154
1155
  installing: "installing";
1155
1156
  verifying: "verifying";
1156
- failed: "failed";
1157
1157
  }>;
1158
1158
  error: z.ZodOptional<z.ZodString>;
1159
1159
  }, z.core.$strip>;
@@ -1249,8 +1249,8 @@ export declare const pipelineOrchestratorCapability: {
1249
1249
  device: z.ZodString;
1250
1250
  }, z.core.$strip>;
1251
1251
  phase: z.ZodEnum<{
1252
- idle: "idle";
1253
1252
  active: "active";
1253
+ idle: "idle";
1254
1254
  watching: "watching";
1255
1255
  }>;
1256
1256
  configuredFps: z.ZodNumber;
@@ -1260,10 +1260,10 @@ export declare const pipelineOrchestratorCapability: {
1260
1260
  provisioning: z.ZodObject<{
1261
1261
  state: z.ZodEnum<{
1262
1262
  ready: "ready";
1263
+ failed: "failed";
1263
1264
  idle: "idle";
1264
1265
  installing: "installing";
1265
1266
  verifying: "verifying";
1266
- failed: "failed";
1267
1267
  }>;
1268
1268
  error: z.ZodOptional<z.ZodString>;
1269
1269
  }, z.core.$strip>;
@@ -449,8 +449,8 @@ export declare const pipelineRunnerCapability: {
449
449
  avgInferenceTimeMs: z.ZodNumber;
450
450
  droppedFrames: z.ZodNumber;
451
451
  phase: z.ZodEnum<{
452
- idle: "idle";
453
452
  active: "active";
453
+ idle: "idle";
454
454
  watching: "watching";
455
455
  }>;
456
456
  }, z.core.$strip>>, import("./capability-definition.js").CapabilityMethodKind>;
@@ -467,8 +467,8 @@ export declare const pipelineRunnerCapability: {
467
467
  avgInferenceTimeMs: z.ZodNumber;
468
468
  droppedFrames: z.ZodNumber;
469
469
  phase: z.ZodEnum<{
470
- idle: "idle";
471
470
  active: "active";
471
+ idle: "idle";
472
472
  watching: "watching";
473
473
  }>;
474
474
  deviceId: z.ZodNumber;
@@ -41,8 +41,8 @@ export declare const ExportOptionsSchema: z.ZodObject<{
41
41
  export type ExportOptions = z.infer<typeof ExportOptionsSchema>;
42
42
  export declare const ExportStateSchema: z.ZodEnum<{
43
43
  ready: "ready";
44
- failed: "failed";
45
44
  queued: "queued";
45
+ failed: "failed";
46
46
  deleted: "deleted";
47
47
  rendering: "rendering";
48
48
  expired: "expired";
@@ -68,8 +68,8 @@ export declare const ExportRecordSchema: z.ZodObject<{
68
68
  }, z.core.$strip>;
69
69
  state: z.ZodEnum<{
70
70
  ready: "ready";
71
- failed: "failed";
72
71
  queued: "queued";
72
+ failed: "failed";
73
73
  deleted: "deleted";
74
74
  rendering: "rendering";
75
75
  expired: "expired";
@@ -132,8 +132,8 @@ export declare const recordingExportCapability: {
132
132
  }, z.core.$strip>;
133
133
  state: z.ZodEnum<{
134
134
  ready: "ready";
135
- failed: "failed";
136
135
  queued: "queued";
136
+ failed: "failed";
137
137
  deleted: "deleted";
138
138
  rendering: "rendering";
139
139
  expired: "expired";
@@ -169,8 +169,8 @@ export declare const recordingExportCapability: {
169
169
  }, z.core.$strip>;
170
170
  state: z.ZodEnum<{
171
171
  ready: "ready";
172
- failed: "failed";
173
172
  queued: "queued";
173
+ failed: "failed";
174
174
  deleted: "deleted";
175
175
  rendering: "rendering";
176
176
  expired: "expired";
@@ -205,8 +205,8 @@ export declare const recordingExportCapability: {
205
205
  }, z.core.$strip>;
206
206
  state: z.ZodEnum<{
207
207
  ready: "ready";
208
- failed: "failed";
209
208
  queued: "queued";
209
+ failed: "failed";
210
210
  deleted: "deleted";
211
211
  rendering: "rendering";
212
212
  expired: "expired";
@@ -242,8 +242,8 @@ export declare const recordingExportCapability: {
242
242
  }, z.core.$strip>;
243
243
  state: z.ZodEnum<{
244
244
  ready: "ready";
245
- failed: "failed";
246
245
  queued: "queued";
246
+ failed: "failed";
247
247
  deleted: "deleted";
248
248
  rendering: "rendering";
249
249
  expired: "expired";
@@ -279,8 +279,8 @@ export declare const recordingExportCapability: {
279
279
  }, z.core.$strip>;
280
280
  state: z.ZodEnum<{
281
281
  ready: "ready";
282
- failed: "failed";
283
282
  queued: "queued";
283
+ failed: "failed";
284
284
  deleted: "deleted";
285
285
  rendering: "rendering";
286
286
  expired: "expired";