@camstack/types 1.2.105 → 1.2.106

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 (46) hide show
  1. package/dist/capabilities/addons.cap.d.ts +4 -4
  2. package/dist/capabilities/battery.cap.d.ts +4 -4
  3. package/dist/capabilities/control.cap.d.ts +4 -4
  4. package/dist/capabilities/core-blocks.cap.d.ts +8 -8
  5. package/dist/capabilities/custom-model-registry.cap.d.ts +4 -4
  6. package/dist/capabilities/data-store-provider.cap.d.ts +1 -0
  7. package/dist/capabilities/device-manager.cap.d.ts +1 -1
  8. package/dist/capabilities/face-gallery.cap.d.ts +3 -1
  9. package/dist/capabilities/llm-runtime.cap.d.ts +3 -3
  10. package/dist/capabilities/llm.cap.d.ts +4 -4
  11. package/dist/capabilities/model-convert.cap.d.ts +6 -6
  12. package/dist/capabilities/model-distributor.cap.d.ts +4 -4
  13. package/dist/capabilities/native-object-detection.cap.d.ts +15 -15
  14. package/dist/capabilities/notification-output.cap.d.ts +18 -18
  15. package/dist/capabilities/notification-rules.cap.d.ts +26 -26
  16. package/dist/capabilities/oauth-integration.cap.d.ts +2 -2
  17. package/dist/capabilities/osd-manager.cap.d.ts +14 -14
  18. package/dist/capabilities/pipeline-analytics.cap.d.ts +53 -53
  19. package/dist/capabilities/pipeline-executor.cap.d.ts +7 -7
  20. package/dist/capabilities/pipeline-orchestrator.cap.d.ts +19 -19
  21. package/dist/capabilities/plate-gallery.cap.d.ts +3 -1
  22. package/dist/capabilities/platform-probe.cap.d.ts +2 -2
  23. package/dist/capabilities/recording-export.cap.d.ts +7 -7
  24. package/dist/capabilities/recording.cap.d.ts +9 -30
  25. package/dist/capabilities/scene-monitor.cap.d.ts +8 -8
  26. package/dist/capabilities/settings-store.cap.d.ts +17 -2
  27. package/dist/capabilities/sso-bridge.cap.d.ts +3 -3
  28. package/dist/capabilities/storage-migration.cap.d.ts +1 -1
  29. package/dist/capabilities/stream-broker.cap.d.ts +6 -6
  30. package/dist/capabilities/user-management.cap.d.ts +20 -20
  31. package/dist/capabilities/vacuum-control.cap.d.ts +13 -13
  32. package/dist/encode-profile.d.ts +2 -2
  33. package/dist/generated/addon-api.d.ts +2 -6
  34. package/dist/health/wiring-health.d.ts +8 -8
  35. package/dist/index.js +62 -97
  36. package/dist/index.mjs +63 -92
  37. package/dist/interfaces/addon.d.ts +29 -7
  38. package/dist/interfaces/adoption-job.d.ts +2 -2
  39. package/dist/interfaces/ops-log.d.ts +2 -2
  40. package/dist/interfaces/recording-config.d.ts +7 -57
  41. package/dist/interfaces/relocate.d.ts +4 -4
  42. package/dist/interfaces/storage.d.ts +23 -0
  43. package/dist/lifecycle/job.d.ts +4 -4
  44. package/dist/schemas/auth-records.d.ts +4 -4
  45. package/dist/types/models.d.ts +7 -7
  46. package/package.json +1 -1
@@ -91,17 +91,17 @@ export declare const lifecycleTaskSchema: z.ZodObject<{
91
91
  }, z.core.$strip>;
92
92
  export type LifecycleTask = z.infer<typeof lifecycleTaskSchema>;
93
93
  export declare const lifecycleJobStateSchema: z.ZodEnum<{
94
- failed: "failed";
95
94
  running: "running";
95
+ failed: "failed";
96
96
  completed: "completed";
97
97
  "partially-failed": "partially-failed";
98
98
  cancelled: "cancelled";
99
99
  }>;
100
100
  export type LifecycleJobState = z.infer<typeof lifecycleJobStateSchema>;
101
101
  export declare const lifecycleJobScopeSchema: z.ZodEnum<{
102
+ cluster: "cluster";
102
103
  single: "single";
103
104
  bulk: "bulk";
104
- cluster: "cluster";
105
105
  }>;
106
106
  export type LifecycleJobScope = z.infer<typeof lifecycleJobScopeSchema>;
107
107
  export declare const lifecycleJobSchema: z.ZodObject<{
@@ -115,9 +115,9 @@ export declare const lifecycleJobSchema: z.ZodObject<{
115
115
  createdAtMs: z.ZodNumber;
116
116
  createdBy: z.ZodString;
117
117
  scope: z.ZodEnum<{
118
+ cluster: "cluster";
118
119
  single: "single";
119
120
  bulk: "bulk";
120
- cluster: "cluster";
121
121
  }>;
122
122
  tasks: z.ZodArray<z.ZodObject<{
123
123
  taskId: z.ZodString;
@@ -166,8 +166,8 @@ export declare const lifecycleJobSchema: z.ZodObject<{
166
166
  finishedAtMs: z.ZodNullable<z.ZodNumber>;
167
167
  }, z.core.$strip>>;
168
168
  state: z.ZodEnum<{
169
- failed: "failed";
170
169
  running: "running";
170
+ failed: "failed";
171
171
  completed: "completed";
172
172
  "partially-failed": "partially-failed";
173
173
  cancelled: "cancelled";
@@ -34,8 +34,8 @@ export declare const MethodAccessSchema: z.ZodEnum<{
34
34
  }>;
35
35
  export type MethodAccess = z.infer<typeof MethodAccessSchema>;
36
36
  export declare const CapScopeSchema: z.ZodEnum<{
37
- system: "system";
38
37
  device: "device";
38
+ system: "system";
39
39
  }>;
40
40
  export type CapScope = z.infer<typeof CapScopeSchema>;
41
41
  /**
@@ -96,8 +96,8 @@ declare const DeviceTokenScopeSchema: z.ZodObject<{
96
96
  export declare const TokenScopeSchema: z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
97
97
  type: z.ZodLiteral<"category">;
98
98
  target: z.ZodEnum<{
99
- system: "system";
100
99
  device: "device";
100
+ system: "system";
101
101
  }>;
102
102
  access: z.ZodArray<z.ZodEnum<{
103
103
  view: "view";
@@ -154,8 +154,8 @@ export declare const UserRecordSchema: z.ZodObject<{
154
154
  scopes: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
155
155
  type: z.ZodLiteral<"category">;
156
156
  target: z.ZodEnum<{
157
- system: "system";
158
157
  device: "device";
158
+ system: "system";
159
159
  }>;
160
160
  access: z.ZodArray<z.ZodEnum<{
161
161
  view: "view";
@@ -224,8 +224,8 @@ export declare const ScopedTokenSchema: z.ZodObject<{
224
224
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
225
225
  type: z.ZodLiteral<"category">;
226
226
  target: z.ZodEnum<{
227
- system: "system";
228
227
  device: "device";
228
+ system: "system";
229
229
  }>;
230
230
  access: z.ZodArray<z.ZodEnum<{
231
231
  view: "view";
@@ -121,8 +121,8 @@ export declare const ModelVariantGroupSchema: z.ZodObject<{
121
121
  int8: "int8";
122
122
  }>>;
123
123
  optimization: z.ZodOptional<z.ZodEnum<{
124
- fast: "fast";
125
124
  standard: "standard";
125
+ fast: "fast";
126
126
  }>>;
127
127
  resolution: z.ZodOptional<z.ZodNumber>;
128
128
  }, z.core.$strip>;
@@ -236,9 +236,9 @@ export declare const ModelCatalogEntrySchema: z.ZodObject<{
236
236
  nhwc: "nhwc";
237
237
  }>>;
238
238
  inputNormalization: z.ZodOptional<z.ZodEnum<{
239
- none: "none";
240
239
  "zero-one": "zero-one";
241
240
  imagenet: "imagenet";
241
+ none: "none";
242
242
  }>>;
243
243
  outputProbabilities: z.ZodOptional<z.ZodBoolean>;
244
244
  preprocessMode: z.ZodOptional<z.ZodEnum<{
@@ -266,8 +266,8 @@ export declare const ModelCatalogEntrySchema: z.ZodObject<{
266
266
  int8: "int8";
267
267
  }>>;
268
268
  optimization: z.ZodOptional<z.ZodEnum<{
269
- fast: "fast";
270
269
  standard: "standard";
270
+ fast: "fast";
271
271
  }>>;
272
272
  resolution: z.ZodOptional<z.ZodNumber>;
273
273
  }, z.core.$strip>>;
@@ -351,19 +351,19 @@ export declare const ModelConvertMetadataSchema: z.ZodObject<{
351
351
  nhwc: "nhwc";
352
352
  }>>;
353
353
  inputNormalization: z.ZodOptional<z.ZodEnum<{
354
- none: "none";
355
354
  "zero-one": "zero-one";
356
355
  imagenet: "imagenet";
356
+ none: "none";
357
357
  }>>;
358
358
  preprocessMode: z.ZodOptional<z.ZodEnum<{
359
359
  letterbox: "letterbox";
360
360
  resize: "resize";
361
361
  }>>;
362
362
  outputFormat: z.ZodEnum<{
363
- classification: "classification";
364
363
  yolo: "yolo";
365
364
  ssd: "ssd";
366
365
  embedding: "embedding";
366
+ classification: "classification";
367
367
  ocr: "ocr";
368
368
  segmentation: "segmentation";
369
369
  }>;
@@ -481,9 +481,9 @@ export declare const ConvertResultSchema: z.ZodObject<{
481
481
  nhwc: "nhwc";
482
482
  }>>;
483
483
  inputNormalization: z.ZodOptional<z.ZodEnum<{
484
- none: "none";
485
484
  "zero-one": "zero-one";
486
485
  imagenet: "imagenet";
486
+ none: "none";
487
487
  }>>;
488
488
  outputProbabilities: z.ZodOptional<z.ZodBoolean>;
489
489
  preprocessMode: z.ZodOptional<z.ZodEnum<{
@@ -511,8 +511,8 @@ export declare const ConvertResultSchema: z.ZodObject<{
511
511
  int8: "int8";
512
512
  }>>;
513
513
  optimization: z.ZodOptional<z.ZodEnum<{
514
- fast: "fast";
515
514
  standard: "standard";
515
+ fast: "fast";
516
516
  }>>;
517
517
  resolution: z.ZodOptional<z.ZodNumber>;
518
518
  }, z.core.$strip>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/types",
3
- "version": "1.2.105",
3
+ "version": "1.2.106",
4
4
  "description": "Shared types, interfaces, and model catalogs for the CamStack detection ecosystem",
5
5
  "keywords": [
6
6
  "camstack",