@camstack/types 1.2.108 → 1.2.110

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 (56) 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/cap-router-predicates.d.ts +38 -1
  7. package/dist/capabilities/capability-definition.d.ts +15 -2
  8. package/dist/capabilities/climate-control.cap.d.ts +8 -8
  9. package/dist/capabilities/core-blocks.cap.d.ts +16 -16
  10. package/dist/capabilities/day-night.cap.d.ts +8 -8
  11. package/dist/capabilities/decoder.cap.d.ts +13 -13
  12. package/dist/capabilities/device-manager.cap.d.ts +5 -5
  13. package/dist/capabilities/face-gallery.cap.d.ts +1 -1
  14. package/dist/capabilities/image-settings.cap.d.ts +16 -16
  15. package/dist/capabilities/index.d.ts +1 -1
  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/media-player.cap.d.ts +9 -9
  19. package/dist/capabilities/metrics-provider.cap.d.ts +2 -2
  20. package/dist/capabilities/model-convert.cap.d.ts +3 -3
  21. package/dist/capabilities/motion-detection.cap.d.ts +4 -4
  22. package/dist/capabilities/notification-output.cap.d.ts +9 -9
  23. package/dist/capabilities/notification-rules.cap.d.ts +10 -10
  24. package/dist/capabilities/oauth-integration.cap.d.ts +2 -2
  25. package/dist/capabilities/osd-manager.cap.d.ts +2 -2
  26. package/dist/capabilities/pipeline-analytics.cap.d.ts +96 -54
  27. package/dist/capabilities/pipeline-executor.cap.d.ts +67 -19
  28. package/dist/capabilities/pipeline-orchestrator.cap.d.ts +21 -21
  29. package/dist/capabilities/pipeline-runner.cap.d.ts +6 -6
  30. package/dist/capabilities/platform-probe.cap.d.ts +2 -2
  31. package/dist/capabilities/recording-export.cap.d.ts +7 -7
  32. package/dist/capabilities/recording.cap.d.ts +7 -7
  33. package/dist/capabilities/schemas/detection-shared.d.ts +4 -4
  34. package/dist/capabilities/schemas/orchestrator-metrics.d.ts +2 -2
  35. package/dist/capabilities/schemas/streaming-shared.d.ts +11 -11
  36. package/dist/capabilities/sso-bridge.cap.d.ts +3 -3
  37. package/dist/capabilities/storage-migration.cap.d.ts +4 -4
  38. package/dist/capabilities/storage.cap.d.ts +2 -2
  39. package/dist/capabilities/stream-broker.cap.d.ts +50 -50
  40. package/dist/capabilities/user-management.cap.d.ts +20 -20
  41. package/dist/capabilities/vacuum-control.cap.d.ts +26 -26
  42. package/dist/capabilities/webrtc-session.cap.d.ts +4 -4
  43. package/dist/generated/addon-api.d.ts +29 -8
  44. package/dist/generated/method-access-map.d.ts +1 -1
  45. package/dist/index.js +109 -5
  46. package/dist/index.mjs +108 -5
  47. package/dist/interfaces/adoption-job.d.ts +2 -2
  48. package/dist/interfaces/relocate.d.ts +10 -10
  49. package/dist/interfaces/stream-broker.d.ts +2 -2
  50. package/dist/lifecycle/job.d.ts +8 -8
  51. package/dist/{sleep-OOwhyQIx.js → sleep-DnbNfEhn.js} +4 -1
  52. package/dist/{sleep-DCBRhx0s.mjs → sleep-swxwnJmL.mjs} +4 -1
  53. package/dist/types/frame-view.d.ts +10 -24
  54. package/dist/types/labels.d.ts +30 -1
  55. package/dist/types/models.d.ts +4 -4
  56. package/package.json +1 -1
@@ -40,9 +40,9 @@ import { z } from 'zod';
40
40
  * never a duplicate device, and never an error the operator has to interpret.
41
41
  */
42
42
  export declare const AdoptionJobStateSchema: z.ZodEnum<{
43
+ failed: "failed";
43
44
  running: "running";
44
45
  done: "done";
45
- failed: "failed";
46
46
  cancelled: "cancelled";
47
47
  }>;
48
48
  export type AdoptionJobState = z.infer<typeof AdoptionJobStateSchema>;
@@ -82,9 +82,9 @@ export declare const AdoptionJobSchema: z.ZodObject<{
82
82
  addonId: z.ZodString;
83
83
  integrationId: z.ZodString;
84
84
  state: z.ZodEnum<{
85
+ failed: "failed";
85
86
  running: "running";
86
87
  done: "done";
87
- failed: "failed";
88
88
  cancelled: "cancelled";
89
89
  }>;
90
90
  total: z.ZodNumber;
@@ -16,20 +16,20 @@ import { z } from 'zod';
16
16
  * runs at all.
17
17
  */
18
18
  export declare const RelocateJobStateSchema: z.ZodEnum<{
19
+ failed: "failed";
19
20
  running: "running";
20
21
  queued: "queued";
21
22
  done: "done";
22
- failed: "failed";
23
23
  cancelled: "cancelled";
24
24
  }>;
25
25
  export type RelocateJobState = z.infer<typeof RelocateJobStateSchema>;
26
26
  export declare const RelocateJobSchema: z.ZodObject<{
27
27
  jobId: z.ZodString;
28
28
  state: z.ZodEnum<{
29
+ failed: "failed";
29
30
  running: "running";
30
31
  queued: "queued";
31
32
  done: "done";
32
- failed: "failed";
33
33
  cancelled: "cancelled";
34
34
  }>;
35
35
  fromLocationId: z.ZodString;
@@ -134,11 +134,11 @@ export type StorageMigrationInput = z.infer<typeof StorageMigrationInputSchema>;
134
134
  * locations is `repointing`, after every selected mover has completed and been
135
135
  * verified. */
136
136
  export declare const StorageMigrationPhaseSchema: z.ZodEnum<{
137
- done: "done";
138
- failed: "failed";
139
- cancelled: "cancelled";
140
137
  moving: "moving";
141
138
  verifying: "verifying";
139
+ failed: "failed";
140
+ done: "done";
141
+ cancelled: "cancelled";
142
142
  planning: "planning";
143
143
  pausing: "pausing";
144
144
  repointing: "repointing";
@@ -162,10 +162,10 @@ export declare const StorageMigrationMoveSchema: z.ZodObject<{
162
162
  toLocationId: z.ZodString;
163
163
  moverJobId: z.ZodNullable<z.ZodString>;
164
164
  state: z.ZodNullable<z.ZodEnum<{
165
+ failed: "failed";
165
166
  running: "running";
166
167
  queued: "queued";
167
168
  done: "done";
168
- failed: "failed";
169
169
  cancelled: "cancelled";
170
170
  }>>;
171
171
  error: z.ZodNullable<z.ZodString>;
@@ -174,11 +174,11 @@ export type StorageMigrationMove = z.infer<typeof StorageMigrationMoveSchema>;
174
174
  export declare const StorageMigrationJobSchema: z.ZodObject<{
175
175
  jobId: z.ZodString;
176
176
  phase: z.ZodEnum<{
177
- done: "done";
178
- failed: "failed";
179
- cancelled: "cancelled";
180
177
  moving: "moving";
181
178
  verifying: "verifying";
179
+ failed: "failed";
180
+ done: "done";
181
+ cancelled: "cancelled";
182
182
  planning: "planning";
183
183
  pausing: "pausing";
184
184
  repointing: "repointing";
@@ -201,10 +201,10 @@ export declare const StorageMigrationJobSchema: z.ZodObject<{
201
201
  toLocationId: z.ZodString;
202
202
  moverJobId: z.ZodNullable<z.ZodString>;
203
203
  state: z.ZodNullable<z.ZodEnum<{
204
+ failed: "failed";
204
205
  running: "running";
205
206
  queued: "queued";
206
207
  done: "done";
207
- failed: "failed";
208
208
  cancelled: "cancelled";
209
209
  }>>;
210
210
  error: z.ZodNullable<z.ZodString>;
@@ -17,11 +17,11 @@ export declare const DecoderSessionConfigSchema: z.ZodObject<{
17
17
  codec: z.ZodString;
18
18
  maxFps: z.ZodDefault<z.ZodNumber>;
19
19
  outputFormat: z.ZodDefault<z.ZodEnum<{
20
- rgb: "rgb";
21
- gray: "gray";
22
20
  jpeg: "jpeg";
21
+ rgb: "rgb";
23
22
  bgr: "bgr";
24
23
  yuv420: "yuv420";
24
+ gray: "gray";
25
25
  }>>;
26
26
  scale: z.ZodDefault<z.ZodNumber>;
27
27
  width: z.ZodOptional<z.ZodNumber>;
@@ -7,6 +7,7 @@ export declare const jobKindSchema: z.ZodEnum<{
7
7
  }>;
8
8
  export type JobKind = z.infer<typeof jobKindSchema>;
9
9
  export declare const taskPhaseSchema: z.ZodEnum<{
10
+ failed: "failed";
10
11
  queued: "queued";
11
12
  fetching: "fetching";
12
13
  staged: "staged";
@@ -15,7 +16,6 @@ export declare const taskPhaseSchema: z.ZodEnum<{
15
16
  restarting: "restarting";
16
17
  applied: "applied";
17
18
  done: "done";
18
- failed: "failed";
19
19
  skipped: "skipped";
20
20
  }>;
21
21
  export type TaskPhase = z.infer<typeof taskPhaseSchema>;
@@ -29,6 +29,7 @@ export declare const taskLogEntrySchema: z.ZodObject<{
29
29
  nodeId: z.ZodString;
30
30
  packageName: z.ZodString;
31
31
  phase: z.ZodEnum<{
32
+ failed: "failed";
32
33
  queued: "queued";
33
34
  fetching: "fetching";
34
35
  staged: "staged";
@@ -37,7 +38,6 @@ export declare const taskLogEntrySchema: z.ZodObject<{
37
38
  restarting: "restarting";
38
39
  applied: "applied";
39
40
  done: "done";
40
- failed: "failed";
41
41
  skipped: "skipped";
42
42
  }>;
43
43
  message: z.ZodString;
@@ -54,6 +54,7 @@ export declare const lifecycleTaskSchema: z.ZodObject<{
54
54
  addon: "addon";
55
55
  }>;
56
56
  phase: z.ZodEnum<{
57
+ failed: "failed";
57
58
  queued: "queued";
58
59
  fetching: "fetching";
59
60
  staged: "staged";
@@ -62,7 +63,6 @@ export declare const lifecycleTaskSchema: z.ZodObject<{
62
63
  restarting: "restarting";
63
64
  applied: "applied";
64
65
  done: "done";
65
- failed: "failed";
66
66
  skipped: "skipped";
67
67
  }>;
68
68
  stagedPath: z.ZodNullable<z.ZodString>;
@@ -72,6 +72,7 @@ export declare const lifecycleTaskSchema: z.ZodObject<{
72
72
  nodeId: z.ZodString;
73
73
  packageName: z.ZodString;
74
74
  phase: z.ZodEnum<{
75
+ failed: "failed";
75
76
  queued: "queued";
76
77
  fetching: "fetching";
77
78
  staged: "staged";
@@ -80,7 +81,6 @@ export declare const lifecycleTaskSchema: z.ZodObject<{
80
81
  restarting: "restarting";
81
82
  applied: "applied";
82
83
  done: "done";
83
- failed: "failed";
84
84
  skipped: "skipped";
85
85
  }>;
86
86
  message: z.ZodString;
@@ -91,8 +91,8 @@ 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
- running: "running";
95
94
  failed: "failed";
95
+ running: "running";
96
96
  completed: "completed";
97
97
  "partially-failed": "partially-failed";
98
98
  cancelled: "cancelled";
@@ -130,6 +130,7 @@ export declare const lifecycleJobSchema: z.ZodObject<{
130
130
  addon: "addon";
131
131
  }>;
132
132
  phase: z.ZodEnum<{
133
+ failed: "failed";
133
134
  queued: "queued";
134
135
  fetching: "fetching";
135
136
  staged: "staged";
@@ -138,7 +139,6 @@ export declare const lifecycleJobSchema: z.ZodObject<{
138
139
  restarting: "restarting";
139
140
  applied: "applied";
140
141
  done: "done";
141
- failed: "failed";
142
142
  skipped: "skipped";
143
143
  }>;
144
144
  stagedPath: z.ZodNullable<z.ZodString>;
@@ -148,6 +148,7 @@ export declare const lifecycleJobSchema: z.ZodObject<{
148
148
  nodeId: z.ZodString;
149
149
  packageName: z.ZodString;
150
150
  phase: z.ZodEnum<{
151
+ failed: "failed";
151
152
  queued: "queued";
152
153
  fetching: "fetching";
153
154
  staged: "staged";
@@ -156,7 +157,6 @@ export declare const lifecycleJobSchema: z.ZodObject<{
156
157
  restarting: "restarting";
157
158
  applied: "applied";
158
159
  done: "done";
159
- failed: "failed";
160
160
  skipped: "skipped";
161
161
  }>;
162
162
  message: 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
- running: "running";
170
169
  failed: "failed";
170
+ running: "running";
171
171
  completed: "completed";
172
172
  "partially-failed": "partially-failed";
173
173
  cancelled: "cancelled";
@@ -2135,7 +2135,7 @@ function method(input, output, options) {
2135
2135
  input,
2136
2136
  output,
2137
2137
  kind: options?.kind ?? "query",
2138
- auth: options?.auth ?? "protected",
2138
+ ...options?.auth !== void 0 ? { auth: options.auth } : {},
2139
2139
  ...options?.access !== void 0 ? { access: options.access } : {},
2140
2140
  ...options?.caller !== void 0 ? { caller: options.caller } : {},
2141
2141
  timeoutMs: options?.timeoutMs
@@ -3325,6 +3325,9 @@ function createDeviceProxy(api, binding, opts) {
3325
3325
  startStorageMigrationMove: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "startStorageMigrationMove", "mutation", input),
3326
3326
  getStorageMigrationMoveStatus: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getStorageMigrationMoveStatus", "query", input),
3327
3327
  cancelStorageMigrationMove: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "cancelStorageMigrationMove", "mutation", input),
3328
+ relocateMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "relocateMedia", "mutation", input),
3329
+ listRelocateMediaJobs: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listRelocateMediaJobs", "query", input),
3330
+ cancelRelocateMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "cancelRelocateMedia", "mutation", input),
3328
3331
  listOpsLog: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listOpsLog", "query", input),
3329
3332
  getTrainingExportSummary: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrainingExportSummary", "query", input),
3330
3333
  getTrainingExportUrl: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrainingExportUrl", "query", input),
@@ -2135,7 +2135,7 @@ function method(input, output, options) {
2135
2135
  input,
2136
2136
  output,
2137
2137
  kind: options?.kind ?? "query",
2138
- auth: options?.auth ?? "protected",
2138
+ ...options?.auth !== void 0 ? { auth: options.auth } : {},
2139
2139
  ...options?.access !== void 0 ? { access: options.access } : {},
2140
2140
  ...options?.caller !== void 0 ? { caller: options.caller } : {},
2141
2141
  timeoutMs: options?.timeoutMs
@@ -3325,6 +3325,9 @@ function createDeviceProxy(api, binding, opts) {
3325
3325
  startStorageMigrationMove: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "startStorageMigrationMove", "mutation", input),
3326
3326
  getStorageMigrationMoveStatus: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getStorageMigrationMoveStatus", "query", input),
3327
3327
  cancelStorageMigrationMove: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "cancelStorageMigrationMove", "mutation", input),
3328
+ relocateMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "relocateMedia", "mutation", input),
3329
+ listRelocateMediaJobs: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listRelocateMediaJobs", "query", input),
3330
+ cancelRelocateMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "cancelRelocateMedia", "mutation", input),
3328
3331
  listOpsLog: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listOpsLog", "query", input),
3329
3332
  getTrainingExportSummary: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrainingExportSummary", "query", input),
3330
3333
  getTrainingExportUrl: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrainingExportUrl", "query", input),
@@ -1,19 +1,19 @@
1
- import type { FrameFormat } from './io.js';
1
+ /**
2
+ * `FrameViewSpec` and `FrameRef` are DERIVED from their wire schemas
3
+ * (`FrameViewSpecSchema` / `FrameRefSchema`) in `capabilities/pipeline-executor.cap.ts`
4
+ * — that is where the schema and the type both live, so re-export rather than
5
+ * redeclare here. See the schema-type-twin guard
6
+ * (`scripts/check-schema-type-twins.ts`): a hand-written duplicate of a Zod
7
+ * shape drifts silently and strips fields on the wire.
8
+ */
9
+ export type { FrameRef, FrameViewSpec } from '../capabilities/pipeline-executor.cap.js';
10
+ import type { FrameViewSpec } from '../capabilities/pipeline-executor.cap.js';
2
11
  export interface FrameViewCrop {
3
12
  readonly left: number;
4
13
  readonly top: number;
5
14
  readonly width: number;
6
15
  readonly height: number;
7
16
  }
8
- export interface FrameViewSpec {
9
- readonly crop?: FrameViewCrop;
10
- readonly content: {
11
- readonly width: number;
12
- readonly height: number;
13
- };
14
- readonly fit: 'stretch' | 'contain';
15
- readonly format: 'rgb' | 'gray' | 'jpeg';
16
- }
17
17
  export interface FrameViewGeometry {
18
18
  readonly source: {
19
19
  readonly width: number;
@@ -29,20 +29,6 @@ export interface FrameViewGeometry {
29
29
  readonly y: number;
30
30
  };
31
31
  }
32
- /**
33
- * Process-local frame identity. It is serializable so it can ride an in-process
34
- * capability call, but `registryId` deliberately prevents resolution in any
35
- * other process or execution group.
36
- */
37
- export interface FrameRef {
38
- readonly registryId: string;
39
- readonly id: string;
40
- readonly width: number;
41
- readonly height: number;
42
- readonly format: Extract<FrameFormat, 'rgb' | 'gray'>;
43
- readonly timestamp: number;
44
- readonly capturedAt?: number;
45
- }
46
32
  export interface MaterializedFrameView {
47
33
  readonly data: Uint8Array;
48
34
  readonly width: number;
@@ -7,13 +7,41 @@ export declare const LabelDefinitionSchema: z.ZodObject<{
7
7
  icon: z.ZodOptional<z.ZodString>;
8
8
  }, z.core.$strip>;
9
9
  export type LabelDefinition = z.infer<typeof LabelDefinitionSchema>;
10
+ /**
11
+ * General raw-label → macro-label map. Deliberately loose (`mapping` values
12
+ * are plain `string`) — it covers both video detection macros
13
+ * (`person`/`vehicle`/`animal`/`package`, see `COCO_TO_MACRO`) and audio
14
+ * classification macros (`speech`/`scream`/`crying`/…, see `YAMNET_TO_MACRO`),
15
+ * which are disjoint vocabularies. Do NOT constrain this to
16
+ * {@link CLASS_MAP_MACRO_TARGETS} — that set is scoped to the narrower,
17
+ * wire-validated {@link DetectionCatalogClassMapSchema} below.
18
+ */
10
19
  export interface ClassMapDefinition {
11
20
  readonly mapping: Readonly<Record<string, string>>;
12
21
  readonly preserveOriginal: boolean;
13
22
  }
14
23
  /** Detection-macro targets a catalog `classMap` may resolve to. */
15
24
  export declare const CLASS_MAP_MACRO_TARGETS: readonly ["person", "vehicle", "animal", "package"];
16
- export declare const ClassMapDefinitionSchema: z.ZodObject<{
25
+ /**
26
+ * Wire schema for a per-model CATALOG classMap override
27
+ * (`ModelCatalogEntry.classMap` / `ModelConvertMetadata.classMap`) —
28
+ * restricted to {@link CLASS_MAP_MACRO_TARGETS}, the only macros the
29
+ * detection pipeline executor actually routes.
30
+ *
31
+ * This is deliberately a DIFFERENT, narrower shape than the general-purpose
32
+ * `ClassMapDefinition` interface above (e.g. `IDetectionAddon.getClassMap()`
33
+ * and the audio `YAMNET_TO_MACRO` catalog both use macro targets outside this
34
+ * enum) — the two used to share the name `ClassMapDefinition`/
35
+ * `ClassMapDefinitionSchema`, which made the schema-type-twin guard
36
+ * (`scripts/check-schema-type-twins.ts`) flag them as a duplicated shape. They
37
+ * are not: it is two different concepts colliding on a name. Keep this type
38
+ * under its own name rather than reusing `ClassMapDefinition` — reusing it
39
+ * would either narrow every `ClassMapDefinition` consumer to the four
40
+ * detection macros (breaking `YAMNET_TO_MACRO`) or drop the validation this
41
+ * schema exists for (see the "rejects a classMap whose target is not a
42
+ * detection macro" test in `model-catalog-schema.test.ts`).
43
+ */
44
+ export declare const DetectionCatalogClassMapSchema: z.ZodObject<{
17
45
  mapping: z.ZodRecord<z.ZodString, z.ZodEnum<{
18
46
  person: "person";
19
47
  vehicle: "vehicle";
@@ -22,3 +50,4 @@ export declare const ClassMapDefinitionSchema: z.ZodObject<{
22
50
  }>>;
23
51
  preserveOriginal: z.ZodBoolean;
24
52
  }, z.core.$strip>;
53
+ export type DetectionCatalogClassMap = z.infer<typeof DetectionCatalogClassMapSchema>;
@@ -140,7 +140,7 @@ export declare const ModelProviderIdSchema: z.ZodEnum<{
140
140
  frigate: "frigate";
141
141
  scrypted: "scrypted";
142
142
  }>;
143
- export type ModelProviderId = (typeof MODEL_PROVIDER_IDS)[number];
143
+ export type ModelProviderId = z.infer<typeof ModelProviderIdSchema>;
144
144
  export interface InferModelProviderInput {
145
145
  readonly id: string;
146
146
  readonly provider?: ModelProviderId;
@@ -325,8 +325,8 @@ export interface CustomModelMetadata {
325
325
  export declare const ConvertTargetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
326
326
  format: z.ZodLiteral<"openvino">;
327
327
  precisions: z.ZodReadonly<z.ZodArray<z.ZodEnum<{
328
- int8: "int8";
329
328
  fp16: "fp16";
329
+ int8: "int8";
330
330
  }>>>;
331
331
  }, z.core.$strip>, z.ZodObject<{
332
332
  format: z.ZodLiteral<"coreml">;
@@ -389,8 +389,8 @@ export declare const ConvertArtifactSchema: z.ZodObject<{
389
389
  gguf: "gguf";
390
390
  }>;
391
391
  precision: z.ZodOptional<z.ZodEnum<{
392
- int8: "int8";
393
392
  fp16: "fp16";
393
+ int8: "int8";
394
394
  }>>;
395
395
  sizeMB: z.ZodNumber;
396
396
  validated: z.ZodBoolean;
@@ -542,8 +542,8 @@ export declare const ConvertResultSchema: z.ZodObject<{
542
542
  gguf: "gguf";
543
543
  }>;
544
544
  precision: z.ZodOptional<z.ZodEnum<{
545
- int8: "int8";
546
545
  fp16: "fp16";
546
+ int8: "int8";
547
547
  }>>;
548
548
  sizeMB: z.ZodNumber;
549
549
  validated: z.ZodBoolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/types",
3
- "version": "1.2.108",
3
+ "version": "1.2.110",
4
4
  "description": "Shared types, interfaces, and model catalogs for the CamStack detection ecosystem",
5
5
  "keywords": [
6
6
  "camstack",