@camstack/types 1.2.97 → 1.2.99
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.
- package/dist/capabilities/alerts.cap.d.ts +5 -5
- package/dist/capabilities/custom-model-registry.cap.d.ts +18 -0
- package/dist/capabilities/decoder.cap.d.ts +12 -12
- package/dist/capabilities/index.d.ts +1 -1
- package/dist/capabilities/local-network.cap.d.ts +42 -11
- package/dist/capabilities/model-convert.cap.d.ts +27 -0
- package/dist/capabilities/model-distributor.cap.d.ts +18 -0
- package/dist/capabilities/motion-detection.cap.d.ts +4 -4
- package/dist/capabilities/native-object-detection.cap.d.ts +15 -15
- package/dist/capabilities/notification-rules.cap.d.ts +2 -2
- package/dist/capabilities/osd-manager.cap.d.ts +1 -1
- package/dist/capabilities/pipeline-analytics.cap.d.ts +10 -10
- package/dist/capabilities/pipeline-executor.cap.d.ts +16 -12
- package/dist/capabilities/pipeline-runner.cap.d.ts +182 -5
- package/dist/capabilities/schemas/detection-shared.d.ts +4 -4
- package/dist/capabilities/schemas/streaming-shared.d.ts +6 -6
- package/dist/capabilities/stream-broker.cap.d.ts +3 -3
- package/dist/capabilities/terminal-session.cap.d.ts +10 -0
- package/dist/capabilities/zone-rules.cap.d.ts +3 -3
- package/dist/generated/addon-api.d.ts +14 -0
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +157 -23
- package/dist/index.mjs +154 -24
- package/dist/interfaces/pipeline-executor-capability.d.ts +3 -0
- package/dist/interfaces/pipeline-runner-capability.d.ts +31 -0
- package/dist/interfaces/stream-broker.d.ts +5 -2
- package/dist/types/frame-view.d.ts +52 -0
- package/dist/types/io.d.ts +3 -0
- package/dist/types/labels.d.ts +11 -0
- package/dist/types/models.d.ts +27 -0
- package/package.json +1 -1
package/dist/types/models.d.ts
CHANGED
|
@@ -245,6 +245,15 @@ export declare const ModelCatalogEntrySchema: z.ZodObject<{
|
|
|
245
245
|
}>>;
|
|
246
246
|
resolution: z.ZodOptional<z.ZodNumber>;
|
|
247
247
|
}, z.core.$strip>>;
|
|
248
|
+
classMap: z.ZodOptional<z.ZodObject<{
|
|
249
|
+
mapping: z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
250
|
+
person: "person";
|
|
251
|
+
vehicle: "vehicle";
|
|
252
|
+
animal: "animal";
|
|
253
|
+
package: "package";
|
|
254
|
+
}>>;
|
|
255
|
+
preserveOriginal: z.ZodBoolean;
|
|
256
|
+
}, z.core.$strip>>;
|
|
248
257
|
}, z.core.$strip>;
|
|
249
258
|
export type ModelCatalogEntry = z.infer<typeof ModelCatalogEntrySchema>;
|
|
250
259
|
export interface DetectionModel {
|
|
@@ -327,6 +336,15 @@ export declare const ModelConvertMetadataSchema: z.ZodObject<{
|
|
|
327
336
|
segmentation: "segmentation";
|
|
328
337
|
}>;
|
|
329
338
|
faceAlignment: z.ZodOptional<z.ZodBoolean>;
|
|
339
|
+
classMap: z.ZodOptional<z.ZodObject<{
|
|
340
|
+
mapping: z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
341
|
+
person: "person";
|
|
342
|
+
vehicle: "vehicle";
|
|
343
|
+
animal: "animal";
|
|
344
|
+
package: "package";
|
|
345
|
+
}>>;
|
|
346
|
+
preserveOriginal: z.ZodBoolean;
|
|
347
|
+
}, z.core.$strip>>;
|
|
330
348
|
}, z.core.$strip>;
|
|
331
349
|
export type ModelConvertMetadata = z.infer<typeof ModelConvertMetadataSchema>;
|
|
332
350
|
export declare const ConvertArtifactSchema: z.ZodObject<{
|
|
@@ -466,6 +484,15 @@ export declare const ConvertResultSchema: z.ZodObject<{
|
|
|
466
484
|
}>>;
|
|
467
485
|
resolution: z.ZodOptional<z.ZodNumber>;
|
|
468
486
|
}, z.core.$strip>>;
|
|
487
|
+
classMap: z.ZodOptional<z.ZodObject<{
|
|
488
|
+
mapping: z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
489
|
+
person: "person";
|
|
490
|
+
vehicle: "vehicle";
|
|
491
|
+
animal: "animal";
|
|
492
|
+
package: "package";
|
|
493
|
+
}>>;
|
|
494
|
+
preserveOriginal: z.ZodBoolean;
|
|
495
|
+
}, z.core.$strip>>;
|
|
469
496
|
}, z.core.$strip>;
|
|
470
497
|
artifacts: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
471
498
|
format: z.ZodEnum<{
|