@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
@@ -49,9 +49,9 @@ export declare const CameraStreamSchema: z.ZodObject<{
49
49
  export type CameraStream = z.infer<typeof CameraStreamSchema>;
50
50
  export declare const ProfileSlotStatusSchema: z.ZodEnum<{
51
51
  error: "error";
52
- connecting: "connecting";
53
52
  unassigned: "unassigned";
54
53
  idle: "idle";
54
+ connecting: "connecting";
55
55
  streaming: "streaming";
56
56
  }>;
57
57
  export type ProfileSlotStatus = z.infer<typeof ProfileSlotStatusSchema>;
@@ -66,9 +66,9 @@ export declare const ProfileSlotSchema: z.ZodObject<{
66
66
  sourceCamStreamId: z.ZodNullable<z.ZodString>;
67
67
  status: z.ZodEnum<{
68
68
  error: "error";
69
- connecting: "connecting";
70
69
  unassigned: "unassigned";
71
70
  idle: "idle";
71
+ connecting: "connecting";
72
72
  streaming: "streaming";
73
73
  }>;
74
74
  resolution: z.ZodOptional<z.ZodObject<{
@@ -151,8 +151,8 @@ export declare const StreamSourceSchema: z.ZodObject<{
151
151
  }, z.core.$strip>;
152
152
  export declare const EncodedPacketSchema: z.ZodObject<{
153
153
  type: z.ZodEnum<{
154
- audio: "audio";
155
154
  video: "video";
155
+ audio: "audio";
156
156
  }>;
157
157
  data: z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>;
158
158
  pts: z.ZodNumber;
@@ -165,11 +165,11 @@ export declare const DecodedFrameSchema: z.ZodObject<{
165
165
  width: z.ZodNumber;
166
166
  height: z.ZodNumber;
167
167
  format: z.ZodEnum<{
168
- rgb: "rgb";
169
- gray: "gray";
170
168
  jpeg: "jpeg";
169
+ rgb: "rgb";
171
170
  bgr: "bgr";
172
171
  yuv420: "yuv420";
172
+ gray: "gray";
173
173
  }>;
174
174
  timestamp: z.ZodNumber;
175
175
  }, z.core.$strip>;
@@ -191,11 +191,11 @@ export declare const FrameHandleSchema: z.ZodObject<{
191
191
  width: z.ZodNumber;
192
192
  height: z.ZodNumber;
193
193
  format: z.ZodEnum<{
194
- rgb: "rgb";
195
- gray: "gray";
196
194
  jpeg: "jpeg";
195
+ rgb: "rgb";
197
196
  bgr: "bgr";
198
197
  yuv420: "yuv420";
198
+ gray: "gray";
199
199
  }>;
200
200
  pts: z.ZodNumber;
201
201
  byteLength: z.ZodNumber;
@@ -211,9 +211,9 @@ export declare const FrameHandleSchema: z.ZodObject<{
211
211
  */
212
212
  export declare const FrameHandleFormatSchema: z.ZodEnum<{
213
213
  rgb: "rgb";
214
- gray: "gray";
215
214
  bgr: "bgr";
216
215
  yuv420: "yuv420";
216
+ gray: "gray";
217
217
  }>;
218
218
  export type FrameHandleFormat = z.infer<typeof FrameHandleFormatSchema>;
219
219
  /**
@@ -227,9 +227,9 @@ export declare const SubscribeFramesInputSchema: z.ZodObject<{
227
227
  brokerId: z.ZodString;
228
228
  format: z.ZodEnum<{
229
229
  rgb: "rgb";
230
- gray: "gray";
231
230
  bgr: "bgr";
232
231
  yuv420: "yuv420";
232
+ gray: "gray";
233
233
  }>;
234
234
  maxFps: z.ZodOptional<z.ZodNumber>;
235
235
  tag: z.ZodOptional<z.ZodString>;
@@ -282,16 +282,16 @@ export declare const SubscribeAudioChunksResultSchema: z.ZodObject<{
282
282
  export type SubscribeAudioChunksResult = z.infer<typeof SubscribeAudioChunksResultSchema>;
283
283
  export declare const BrokerStatusSchema: z.ZodEnum<{
284
284
  error: "error";
285
- connecting: "connecting";
286
285
  idle: "idle";
286
+ connecting: "connecting";
287
287
  streaming: "streaming";
288
288
  stopped: "stopped";
289
289
  }>;
290
290
  export declare const BrokerStatsSchema: z.ZodObject<{
291
291
  status: z.ZodEnum<{
292
292
  error: "error";
293
- connecting: "connecting";
294
293
  idle: "idle";
294
+ connecting: "connecting";
295
295
  streaming: "streaming";
296
296
  stopped: "stopped";
297
297
  }>;
@@ -58,7 +58,7 @@ declare const SsoBridgeClaimsSchema: z.ZodObject<{
58
58
  ids: z.ZodArray<z.ZodNumber>;
59
59
  }, z.core.$strip>, z.ZodObject<{
60
60
  kind: z.ZodLiteral<"types">;
61
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
61
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
62
62
  }, z.core.$strip>, z.ZodObject<{
63
63
  kind: z.ZodLiteral<"locations">;
64
64
  locations: z.ZodArray<z.ZodString>;
@@ -142,7 +142,7 @@ export declare const ssoBridgeCapability: {
142
142
  ids: z.ZodArray<z.ZodNumber>;
143
143
  }, z.core.$strip>, z.ZodObject<{
144
144
  kind: z.ZodLiteral<"types">;
145
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
145
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
146
146
  }, z.core.$strip>, z.ZodObject<{
147
147
  kind: z.ZodLiteral<"locations">;
148
148
  locations: z.ZodArray<z.ZodString>;
@@ -211,7 +211,7 @@ export declare const ssoBridgeCapability: {
211
211
  ids: z.ZodArray<z.ZodNumber>;
212
212
  }, z.core.$strip>, z.ZodObject<{
213
213
  kind: z.ZodLiteral<"types">;
214
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
214
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
215
215
  }, z.core.$strip>, z.ZodObject<{
216
216
  kind: z.ZodLiteral<"locations">;
217
217
  locations: z.ZodArray<z.ZodString>;
@@ -48,11 +48,11 @@ export declare const storageMigrationCapability: {
48
48
  }, z.core.$strip>, z.ZodNullable<z.ZodObject<{
49
49
  jobId: z.ZodString;
50
50
  phase: z.ZodEnum<{
51
- done: "done";
52
- failed: "failed";
53
- cancelled: "cancelled";
54
51
  moving: "moving";
55
52
  verifying: "verifying";
53
+ failed: "failed";
54
+ done: "done";
55
+ cancelled: "cancelled";
56
56
  planning: "planning";
57
57
  pausing: "pausing";
58
58
  repointing: "repointing";
@@ -75,10 +75,10 @@ export declare const storageMigrationCapability: {
75
75
  toLocationId: z.ZodString;
76
76
  moverJobId: z.ZodNullable<z.ZodString>;
77
77
  state: z.ZodNullable<z.ZodEnum<{
78
+ failed: "failed";
78
79
  running: "running";
79
80
  queued: "queued";
80
81
  done: "done";
81
- failed: "failed";
82
82
  cancelled: "cancelled";
83
83
  }>>;
84
84
  error: z.ZodNullable<z.ZodString>;
@@ -141,13 +141,13 @@ export declare const storageCapability: {
141
141
  readonly upsertLocation: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
142
142
  id: z.ZodString;
143
143
  type: z.ZodString;
144
+ nodeId: z.ZodOptional<z.ZodString>;
145
+ enabled: z.ZodOptional<z.ZodBoolean>;
144
146
  displayName: z.ZodString;
145
147
  providerId: z.ZodString;
146
148
  config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
147
- nodeId: z.ZodOptional<z.ZodString>;
148
149
  isDefault: z.ZodDefault<z.ZodBoolean>;
149
150
  isSystem: z.ZodDefault<z.ZodBoolean>;
150
- enabled: z.ZodOptional<z.ZodBoolean>;
151
151
  capacity: z.ZodOptional<z.ZodNullable<z.ZodObject<{
152
152
  totalBytes: z.ZodNumber;
153
153
  availableBytes: z.ZodNumber;
@@ -161,8 +161,8 @@ export declare const BrokerConsumerAttributionSchema: z.ZodReadonly<z.ZodObject<
161
161
  }>;
162
162
  label: z.ZodOptional<z.ZodString>;
163
163
  media: z.ZodOptional<z.ZodEnum<{
164
- audio: "audio";
165
164
  video: "video";
165
+ audio: "audio";
166
166
  both: "both";
167
167
  }>>;
168
168
  targetCodec: z.ZodOptional<z.ZodString>;
@@ -201,8 +201,8 @@ export declare const BrokerEncodedClientSchema: z.ZodObject<{
201
201
  }>;
202
202
  label: z.ZodOptional<z.ZodString>;
203
203
  media: z.ZodOptional<z.ZodEnum<{
204
- audio: "audio";
205
204
  video: "video";
205
+ audio: "audio";
206
206
  both: "both";
207
207
  }>>;
208
208
  targetCodec: z.ZodOptional<z.ZodString>;
@@ -267,8 +267,8 @@ export declare const BrokerClientsSchema: z.ZodObject<{
267
267
  }>;
268
268
  label: z.ZodOptional<z.ZodString>;
269
269
  media: z.ZodOptional<z.ZodEnum<{
270
- audio: "audio";
271
270
  video: "video";
271
+ audio: "audio";
272
272
  both: "both";
273
273
  }>>;
274
274
  targetCodec: z.ZodOptional<z.ZodString>;
@@ -376,18 +376,6 @@ export type RtpSource = z.infer<typeof RtpSourceSchema>;
376
376
  * different purpose (reshaping a badly-behaved SOURCE), and it is unchanged.
377
377
  */
378
378
  export declare const EgressEncodeSchema: z.ZodObject<{
379
- audio: z.ZodUnion<readonly [z.ZodLiteral<"passthrough">, z.ZodObject<{
380
- codec: z.ZodEnum<{
381
- copy: "copy";
382
- opus: "opus";
383
- aac: "aac";
384
- pcmu: "pcmu";
385
- pcma: "pcma";
386
- }>;
387
- bitrateKbps: z.ZodOptional<z.ZodNumber>;
388
- sampleRateHz: z.ZodOptional<z.ZodNumber>;
389
- channels: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
390
- }, z.core.$strip>]>;
391
379
  video: z.ZodObject<{
392
380
  codec: z.ZodEnum<{
393
381
  h264: "h264";
@@ -420,6 +408,18 @@ export declare const EgressEncodeSchema: z.ZodObject<{
420
408
  animation: "animation";
421
409
  }>>;
422
410
  }, z.core.$strip>;
411
+ audio: z.ZodUnion<readonly [z.ZodLiteral<"passthrough">, z.ZodObject<{
412
+ codec: z.ZodEnum<{
413
+ copy: "copy";
414
+ opus: "opus";
415
+ aac: "aac";
416
+ pcmu: "pcmu";
417
+ pcma: "pcma";
418
+ }>;
419
+ bitrateKbps: z.ZodOptional<z.ZodNumber>;
420
+ sampleRateHz: z.ZodOptional<z.ZodNumber>;
421
+ channels: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
422
+ }, z.core.$strip>]>;
423
423
  }, z.core.$strip>;
424
424
  export type EgressEncode = z.infer<typeof EgressEncodeSchema>;
425
425
  /**
@@ -447,18 +447,6 @@ export declare const EgressTranscodeRequestSchema: z.ZodObject<{
447
447
  camStreamId: z.ZodString;
448
448
  }, z.core.$strip>], "kind">;
449
449
  encode: z.ZodObject<{
450
- audio: z.ZodUnion<readonly [z.ZodLiteral<"passthrough">, z.ZodObject<{
451
- codec: z.ZodEnum<{
452
- copy: "copy";
453
- opus: "opus";
454
- aac: "aac";
455
- pcmu: "pcmu";
456
- pcma: "pcma";
457
- }>;
458
- bitrateKbps: z.ZodOptional<z.ZodNumber>;
459
- sampleRateHz: z.ZodOptional<z.ZodNumber>;
460
- channels: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
461
- }, z.core.$strip>]>;
462
450
  video: z.ZodObject<{
463
451
  codec: z.ZodEnum<{
464
452
  h264: "h264";
@@ -491,6 +479,18 @@ export declare const EgressTranscodeRequestSchema: z.ZodObject<{
491
479
  animation: "animation";
492
480
  }>>;
493
481
  }, z.core.$strip>;
482
+ audio: z.ZodUnion<readonly [z.ZodLiteral<"passthrough">, z.ZodObject<{
483
+ codec: z.ZodEnum<{
484
+ copy: "copy";
485
+ opus: "opus";
486
+ aac: "aac";
487
+ pcmu: "pcmu";
488
+ pcma: "pcma";
489
+ }>;
490
+ bitrateKbps: z.ZodOptional<z.ZodNumber>;
491
+ sampleRateHz: z.ZodOptional<z.ZodNumber>;
492
+ channels: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
493
+ }, z.core.$strip>]>;
494
494
  }, z.core.$strip>;
495
495
  rateControl: z.ZodOptional<z.ZodEnum<{
496
496
  tight: "tight";
@@ -507,12 +507,12 @@ export declare const EgressTranscodeRequestSchema: z.ZodObject<{
507
507
  nv12: "nv12";
508
508
  }>>;
509
509
  decodeHwAccel: z.ZodOptional<z.ZodEnum<{
510
- none: "none";
510
+ cuda: "cuda";
511
511
  auto: "auto";
512
+ none: "none";
512
513
  videotoolbox: "videotoolbox";
513
514
  vaapi: "vaapi";
514
515
  qsv: "qsv";
515
- cuda: "cuda";
516
516
  }>>;
517
517
  hostname: z.ZodOptional<z.ZodString>;
518
518
  tag: z.ZodOptional<z.ZodString>;
@@ -808,9 +808,9 @@ export declare const streamBrokerCapability: {
808
808
  sourceCamStreamId: z.ZodNullable<z.ZodString>;
809
809
  status: z.ZodEnum<{
810
810
  error: "error";
811
- connecting: "connecting";
812
811
  unassigned: "unassigned";
813
812
  idle: "idle";
813
+ connecting: "connecting";
814
814
  streaming: "streaming";
815
815
  }>;
816
816
  resolution: z.ZodOptional<z.ZodObject<{
@@ -826,8 +826,8 @@ export declare const streamBrokerCapability: {
826
826
  }, z.core.$strip>, z.ZodObject<{
827
827
  status: z.ZodEnum<{
828
828
  error: "error";
829
- connecting: "connecting";
830
829
  idle: "idle";
830
+ connecting: "connecting";
831
831
  streaming: "streaming";
832
832
  stopped: "stopped";
833
833
  }>;
@@ -918,8 +918,8 @@ export declare const streamBrokerCapability: {
918
918
  }>;
919
919
  label: z.ZodOptional<z.ZodString>;
920
920
  media: z.ZodOptional<z.ZodEnum<{
921
- audio: "audio";
922
921
  video: "video";
922
+ audio: "audio";
923
923
  both: "both";
924
924
  }>>;
925
925
  targetCodec: z.ZodOptional<z.ZodString>;
@@ -943,8 +943,8 @@ export declare const streamBrokerCapability: {
943
943
  readonly killClient: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
944
944
  brokerId: z.ZodString;
945
945
  channel: z.ZodEnum<{
946
- audio: "audio";
947
946
  rtsp: "rtsp";
947
+ audio: "audio";
948
948
  decoded: "decoded";
949
949
  }>;
950
950
  handle: z.ZodString;
@@ -1069,18 +1069,6 @@ export declare const streamBrokerCapability: {
1069
1069
  camStreamId: z.ZodString;
1070
1070
  }, z.core.$strip>], "kind">;
1071
1071
  encode: z.ZodObject<{
1072
- audio: z.ZodUnion<readonly [z.ZodLiteral<"passthrough">, z.ZodObject<{
1073
- codec: z.ZodEnum<{
1074
- copy: "copy";
1075
- opus: "opus";
1076
- aac: "aac";
1077
- pcmu: "pcmu";
1078
- pcma: "pcma";
1079
- }>;
1080
- bitrateKbps: z.ZodOptional<z.ZodNumber>;
1081
- sampleRateHz: z.ZodOptional<z.ZodNumber>;
1082
- channels: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
1083
- }, z.core.$strip>]>;
1084
1072
  video: z.ZodObject<{
1085
1073
  codec: z.ZodEnum<{
1086
1074
  h264: "h264";
@@ -1113,6 +1101,18 @@ export declare const streamBrokerCapability: {
1113
1101
  animation: "animation";
1114
1102
  }>>;
1115
1103
  }, z.core.$strip>;
1104
+ audio: z.ZodUnion<readonly [z.ZodLiteral<"passthrough">, z.ZodObject<{
1105
+ codec: z.ZodEnum<{
1106
+ copy: "copy";
1107
+ opus: "opus";
1108
+ aac: "aac";
1109
+ pcmu: "pcmu";
1110
+ pcma: "pcma";
1111
+ }>;
1112
+ bitrateKbps: z.ZodOptional<z.ZodNumber>;
1113
+ sampleRateHz: z.ZodOptional<z.ZodNumber>;
1114
+ channels: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
1115
+ }, z.core.$strip>]>;
1116
1116
  }, z.core.$strip>;
1117
1117
  rateControl: z.ZodOptional<z.ZodEnum<{
1118
1118
  tight: "tight";
@@ -1129,12 +1129,12 @@ export declare const streamBrokerCapability: {
1129
1129
  nv12: "nv12";
1130
1130
  }>>;
1131
1131
  decodeHwAccel: z.ZodOptional<z.ZodEnum<{
1132
- none: "none";
1132
+ cuda: "cuda";
1133
1133
  auto: "auto";
1134
+ none: "none";
1134
1135
  videotoolbox: "videotoolbox";
1135
1136
  vaapi: "vaapi";
1136
1137
  qsv: "qsv";
1137
- cuda: "cuda";
1138
1138
  }>>;
1139
1139
  hostname: z.ZodOptional<z.ZodString>;
1140
1140
  tag: z.ZodOptional<z.ZodString>;
@@ -1222,9 +1222,9 @@ export declare const streamBrokerCapability: {
1222
1222
  brokerId: z.ZodString;
1223
1223
  format: z.ZodEnum<{
1224
1224
  rgb: "rgb";
1225
- gray: "gray";
1226
1225
  bgr: "bgr";
1227
1226
  yuv420: "yuv420";
1227
+ gray: "gray";
1228
1228
  }>;
1229
1229
  maxFps: z.ZodOptional<z.ZodNumber>;
1230
1230
  tag: z.ZodOptional<z.ZodString>;
@@ -1242,11 +1242,11 @@ export declare const streamBrokerCapability: {
1242
1242
  width: z.ZodNumber;
1243
1243
  height: z.ZodNumber;
1244
1244
  format: z.ZodEnum<{
1245
- rgb: "rgb";
1246
- gray: "gray";
1247
1245
  jpeg: "jpeg";
1246
+ rgb: "rgb";
1248
1247
  bgr: "bgr";
1249
1248
  yuv420: "yuv420";
1249
+ gray: "gray";
1250
1250
  }>;
1251
1251
  pts: z.ZodNumber;
1252
1252
  byteLength: z.ZodNumber;
@@ -42,7 +42,7 @@ declare const UserSummarySchema: z.ZodObject<{
42
42
  ids: z.ZodArray<z.ZodNumber>;
43
43
  }, z.core.$strip>, z.ZodObject<{
44
44
  kind: z.ZodLiteral<"types">;
45
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
45
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
46
46
  }, z.core.$strip>, z.ZodObject<{
47
47
  kind: z.ZodLiteral<"locations">;
48
48
  locations: z.ZodArray<z.ZodString>;
@@ -100,7 +100,7 @@ declare const CreateUserInputSchema: z.ZodObject<{
100
100
  ids: z.ZodArray<z.ZodNumber>;
101
101
  }, z.core.$strip>, z.ZodObject<{
102
102
  kind: z.ZodLiteral<"types">;
103
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
103
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
104
104
  }, z.core.$strip>, z.ZodObject<{
105
105
  kind: z.ZodLiteral<"locations">;
106
106
  locations: z.ZodArray<z.ZodString>;
@@ -154,7 +154,7 @@ declare const UpdateUserInputSchema: z.ZodObject<{
154
154
  ids: z.ZodArray<z.ZodNumber>;
155
155
  }, z.core.$strip>, z.ZodObject<{
156
156
  kind: z.ZodLiteral<"types">;
157
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
157
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
158
158
  }, z.core.$strip>, z.ZodObject<{
159
159
  kind: z.ZodLiteral<"locations">;
160
160
  locations: z.ZodArray<z.ZodString>;
@@ -237,7 +237,7 @@ declare const ScopedTokenSummarySchema: z.ZodObject<{
237
237
  ids: z.ZodArray<z.ZodNumber>;
238
238
  }, z.core.$strip>, z.ZodObject<{
239
239
  kind: z.ZodLiteral<"types">;
240
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
240
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
241
241
  }, z.core.$strip>, z.ZodObject<{
242
242
  kind: z.ZodLiteral<"locations">;
243
243
  locations: z.ZodArray<z.ZodString>;
@@ -292,7 +292,7 @@ declare const CreateScopedTokenInputSchema: z.ZodObject<{
292
292
  ids: z.ZodArray<z.ZodNumber>;
293
293
  }, z.core.$strip>, z.ZodObject<{
294
294
  kind: z.ZodLiteral<"types">;
295
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
295
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
296
296
  }, z.core.$strip>, z.ZodObject<{
297
297
  kind: z.ZodLiteral<"locations">;
298
298
  locations: z.ZodArray<z.ZodString>;
@@ -349,7 +349,7 @@ declare const CreateScopedTokenResultSchema: z.ZodObject<{
349
349
  ids: z.ZodArray<z.ZodNumber>;
350
350
  }, z.core.$strip>, z.ZodObject<{
351
351
  kind: z.ZodLiteral<"types">;
352
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
352
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
353
353
  }, z.core.$strip>, z.ZodObject<{
354
354
  kind: z.ZodLiteral<"locations">;
355
355
  locations: z.ZodArray<z.ZodString>;
@@ -407,7 +407,7 @@ declare const OauthSessionSummarySchema: z.ZodObject<{
407
407
  ids: z.ZodArray<z.ZodNumber>;
408
408
  }, z.core.$strip>, z.ZodObject<{
409
409
  kind: z.ZodLiteral<"types">;
410
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
410
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
411
411
  }, z.core.$strip>, z.ZodObject<{
412
412
  kind: z.ZodLiteral<"locations">;
413
413
  locations: z.ZodArray<z.ZodString>;
@@ -480,7 +480,7 @@ export declare const userManagementCapability: {
480
480
  ids: z.ZodArray<z.ZodNumber>;
481
481
  }, z.core.$strip>, z.ZodObject<{
482
482
  kind: z.ZodLiteral<"types">;
483
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
483
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
484
484
  }, z.core.$strip>, z.ZodObject<{
485
485
  kind: z.ZodLiteral<"locations">;
486
486
  locations: z.ZodArray<z.ZodString>;
@@ -538,7 +538,7 @@ export declare const userManagementCapability: {
538
538
  ids: z.ZodArray<z.ZodNumber>;
539
539
  }, z.core.$strip>, z.ZodObject<{
540
540
  kind: z.ZodLiteral<"types">;
541
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
541
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
542
542
  }, z.core.$strip>, z.ZodObject<{
543
543
  kind: z.ZodLiteral<"locations">;
544
544
  locations: z.ZodArray<z.ZodString>;
@@ -592,7 +592,7 @@ export declare const userManagementCapability: {
592
592
  ids: z.ZodArray<z.ZodNumber>;
593
593
  }, z.core.$strip>, z.ZodObject<{
594
594
  kind: z.ZodLiteral<"types">;
595
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
595
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
596
596
  }, z.core.$strip>, z.ZodObject<{
597
597
  kind: z.ZodLiteral<"locations">;
598
598
  locations: z.ZodArray<z.ZodString>;
@@ -649,7 +649,7 @@ export declare const userManagementCapability: {
649
649
  ids: z.ZodArray<z.ZodNumber>;
650
650
  }, z.core.$strip>, z.ZodObject<{
651
651
  kind: z.ZodLiteral<"types">;
652
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
652
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
653
653
  }, z.core.$strip>, z.ZodObject<{
654
654
  kind: z.ZodLiteral<"locations">;
655
655
  locations: z.ZodArray<z.ZodString>;
@@ -713,7 +713,7 @@ export declare const userManagementCapability: {
713
713
  ids: z.ZodArray<z.ZodNumber>;
714
714
  }, z.core.$strip>, z.ZodObject<{
715
715
  kind: z.ZodLiteral<"types">;
716
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
716
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
717
717
  }, z.core.$strip>, z.ZodObject<{
718
718
  kind: z.ZodLiteral<"locations">;
719
719
  locations: z.ZodArray<z.ZodString>;
@@ -773,7 +773,7 @@ export declare const userManagementCapability: {
773
773
  ids: z.ZodArray<z.ZodNumber>;
774
774
  }, z.core.$strip>, z.ZodObject<{
775
775
  kind: z.ZodLiteral<"types">;
776
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
776
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
777
777
  }, z.core.$strip>, z.ZodObject<{
778
778
  kind: z.ZodLiteral<"locations">;
779
779
  locations: z.ZodArray<z.ZodString>;
@@ -874,7 +874,7 @@ export declare const userManagementCapability: {
874
874
  ids: z.ZodArray<z.ZodNumber>;
875
875
  }, z.core.$strip>, z.ZodObject<{
876
876
  kind: z.ZodLiteral<"types">;
877
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
877
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
878
878
  }, z.core.$strip>, z.ZodObject<{
879
879
  kind: z.ZodLiteral<"locations">;
880
880
  locations: z.ZodArray<z.ZodString>;
@@ -930,7 +930,7 @@ export declare const userManagementCapability: {
930
930
  ids: z.ZodArray<z.ZodNumber>;
931
931
  }, z.core.$strip>, z.ZodObject<{
932
932
  kind: z.ZodLiteral<"types">;
933
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
933
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
934
934
  }, z.core.$strip>, z.ZodObject<{
935
935
  kind: z.ZodLiteral<"locations">;
936
936
  locations: z.ZodArray<z.ZodString>;
@@ -995,7 +995,7 @@ export declare const userManagementCapability: {
995
995
  ids: z.ZodArray<z.ZodNumber>;
996
996
  }, z.core.$strip>, z.ZodObject<{
997
997
  kind: z.ZodLiteral<"types">;
998
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
998
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
999
999
  }, z.core.$strip>, z.ZodObject<{
1000
1000
  kind: z.ZodLiteral<"locations">;
1001
1001
  locations: z.ZodArray<z.ZodString>;
@@ -1054,7 +1054,7 @@ export declare const userManagementCapability: {
1054
1054
  ids: z.ZodArray<z.ZodNumber>;
1055
1055
  }, z.core.$strip>, z.ZodObject<{
1056
1056
  kind: z.ZodLiteral<"types">;
1057
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
1057
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
1058
1058
  }, z.core.$strip>, z.ZodObject<{
1059
1059
  kind: z.ZodLiteral<"locations">;
1060
1060
  locations: z.ZodArray<z.ZodString>;
@@ -1139,7 +1139,7 @@ export declare const userManagementCapability: {
1139
1139
  ids: z.ZodArray<z.ZodNumber>;
1140
1140
  }, z.core.$strip>, z.ZodObject<{
1141
1141
  kind: z.ZodLiteral<"types">;
1142
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
1142
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
1143
1143
  }, z.core.$strip>, z.ZodObject<{
1144
1144
  kind: z.ZodLiteral<"locations">;
1145
1145
  locations: z.ZodArray<z.ZodString>;
@@ -1215,7 +1215,7 @@ export declare const userManagementCapability: {
1215
1215
  ids: z.ZodArray<z.ZodNumber>;
1216
1216
  }, z.core.$strip>, z.ZodObject<{
1217
1217
  kind: z.ZodLiteral<"types">;
1218
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
1218
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
1219
1219
  }, z.core.$strip>, z.ZodObject<{
1220
1220
  kind: z.ZodLiteral<"locations">;
1221
1221
  locations: z.ZodArray<z.ZodString>;
@@ -1269,7 +1269,7 @@ export declare const userManagementCapability: {
1269
1269
  ids: z.ZodArray<z.ZodNumber>;
1270
1270
  }, z.core.$strip>, z.ZodObject<{
1271
1271
  kind: z.ZodLiteral<"types">;
1272
- types: z.ZodArray<z.ZodEnum<typeof import("../addon.js").DeviceType>>;
1272
+ types: z.ZodArray<z.ZodEnum<typeof import("../index.js").DeviceType>>;
1273
1273
  }, z.core.$strip>, z.ZodObject<{
1274
1274
  kind: z.ZodLiteral<"locations">;
1275
1275
  locations: z.ZodArray<z.ZodString>;