@camstack/types 1.2.82 → 1.2.84
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/addon.js +2 -2
- package/dist/addon.mjs +2 -2
- package/dist/capabilities/index.d.ts +2 -2
- package/dist/capabilities/notification-rules.cap.d.ts +48 -0
- package/dist/capabilities/osd-manager.cap.d.ts +18 -0
- package/dist/capabilities/pipeline-analytics.cap.d.ts +34 -1
- package/dist/capabilities/pipeline-orchestrator.cap.d.ts +63 -1
- package/dist/capabilities/recording-export.cap.d.ts +56 -3
- package/dist/capabilities/recording.cap.d.ts +2 -0
- package/dist/capabilities/videoclips.cap.d.ts +10 -0
- package/dist/device/base-device-provider.d.ts +0 -9
- package/dist/enums/event-category.d.ts +4 -3
- package/dist/enums.js +1 -1
- package/dist/enums.mjs +1 -1
- package/dist/{event-category-Bxo5yJjt.mjs → event-category-C0lyLd5U.mjs} +4 -3
- package/dist/{event-category-D3gG7oil.js → event-category-DBHdQVIy.js} +4 -3
- package/dist/generated/addon-api.d.ts +21 -0
- package/dist/generated/device-proxy.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/method-device-selectors.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts +2 -2
- package/dist/index.js +204 -35
- package/dist/index.mjs +188 -30
- package/dist/interfaces/event-bus.d.ts +30 -0
- package/dist/interfaces/recording-config.d.ts +34 -1
- package/dist/interfaces/relocate.d.ts +2 -0
- package/dist/{sleep-EYtyUX0L.js → sleep-DZAjGv1f.js} +3 -5
- package/dist/{sleep-BxO5xNe6.mjs → sleep-oYerbR6F.mjs} +3 -5
- package/package.json +1 -1
|
@@ -64,6 +64,7 @@ export declare const RelocateFootageInputSchema: z.ZodObject<{
|
|
|
64
64
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
65
65
|
profiles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
66
66
|
throttleMbps: z.ZodOptional<z.ZodNumber>;
|
|
67
|
+
sinceMs: z.ZodOptional<z.ZodNumber>;
|
|
67
68
|
}, z.core.$strip>;
|
|
68
69
|
export type RelocateFootageInput = z.infer<typeof RelocateFootageInputSchema>;
|
|
69
70
|
/** Internal, lease-scoped participant operation. It is intentionally separate
|
|
@@ -86,6 +87,7 @@ export declare const StorageMigrationFootageMoveInputSchema: z.ZodObject<{
|
|
|
86
87
|
deviceId: z.ZodOptional<z.ZodNumber>;
|
|
87
88
|
profiles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
88
89
|
throttleMbps: z.ZodOptional<z.ZodNumber>;
|
|
90
|
+
sinceMs: z.ZodOptional<z.ZodNumber>;
|
|
89
91
|
leaseId: z.ZodString;
|
|
90
92
|
}, z.core.$strip>;
|
|
91
93
|
export type StorageMigrationFootageMoveInput = z.infer<typeof StorageMigrationFootageMoveInputSchema>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_event_category = require("./event-category-
|
|
1
|
+
const require_event_category = require("./event-category-DBHdQVIy.js");
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/interfaces/config-ui.ts
|
|
4
4
|
/** Predefined tabs with standard label, icon, and sort order.
|
|
@@ -3200,6 +3200,7 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
3200
3200
|
pruneEventsBefore: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "pruneEventsBefore", "mutation", input),
|
|
3201
3201
|
pruneTracksBefore: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "pruneTracksBefore", "mutation", input),
|
|
3202
3202
|
wipeAllAnalytics: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "wipeAllAnalytics", "mutation", input),
|
|
3203
|
+
reconcileFromDisk: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "reconcileFromDisk", "mutation", input),
|
|
3203
3204
|
deleteTracks: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "deleteTracks", "mutation", input),
|
|
3204
3205
|
setTrackFlags: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "setTrackFlags", "mutation", input),
|
|
3205
3206
|
getEventStoreFootprint: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getEventStoreFootprint", "query", input),
|
|
@@ -3502,10 +3503,7 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
3502
3503
|
getDeviceLiveContribution: (input) => dispatchSystem("recording", "getDeviceLiveContribution", "query", input),
|
|
3503
3504
|
applyDeviceSettingsPatch: (input) => dispatchSystem("recording", "applyDeviceSettingsPatch", "mutation", input)
|
|
3504
3505
|
},
|
|
3505
|
-
recordingExport: {
|
|
3506
|
-
createExport: (input) => dispatchSystem("recordingExport", "createExport", "mutation", input),
|
|
3507
|
-
listExports: (input) => dispatchSystem("recordingExport", "listExports", "query", input)
|
|
3508
|
-
},
|
|
3506
|
+
recordingExport: { listExports: (input) => dispatchSystem("recordingExport", "listExports", "query", input) },
|
|
3509
3507
|
streamBroker: {
|
|
3510
3508
|
publishCameraStream: (input) => dispatchSystem("streamBroker", "publishCameraStream", "mutation", input),
|
|
3511
3509
|
retractCameraStream: (input) => dispatchSystem("streamBroker", "retractCameraStream", "mutation", input),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as EventCategory } from "./event-category-
|
|
1
|
+
import { t as EventCategory } from "./event-category-C0lyLd5U.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
//#region src/interfaces/config-ui.ts
|
|
4
4
|
/** Predefined tabs with standard label, icon, and sort order.
|
|
@@ -3200,6 +3200,7 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
3200
3200
|
pruneEventsBefore: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "pruneEventsBefore", "mutation", input),
|
|
3201
3201
|
pruneTracksBefore: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "pruneTracksBefore", "mutation", input),
|
|
3202
3202
|
wipeAllAnalytics: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "wipeAllAnalytics", "mutation", input),
|
|
3203
|
+
reconcileFromDisk: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "reconcileFromDisk", "mutation", input),
|
|
3203
3204
|
deleteTracks: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "deleteTracks", "mutation", input),
|
|
3204
3205
|
setTrackFlags: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "setTrackFlags", "mutation", input),
|
|
3205
3206
|
getEventStoreFootprint: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getEventStoreFootprint", "query", input),
|
|
@@ -3502,10 +3503,7 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
3502
3503
|
getDeviceLiveContribution: (input) => dispatchSystem("recording", "getDeviceLiveContribution", "query", input),
|
|
3503
3504
|
applyDeviceSettingsPatch: (input) => dispatchSystem("recording", "applyDeviceSettingsPatch", "mutation", input)
|
|
3504
3505
|
},
|
|
3505
|
-
recordingExport: {
|
|
3506
|
-
createExport: (input) => dispatchSystem("recordingExport", "createExport", "mutation", input),
|
|
3507
|
-
listExports: (input) => dispatchSystem("recordingExport", "listExports", "query", input)
|
|
3508
|
-
},
|
|
3506
|
+
recordingExport: { listExports: (input) => dispatchSystem("recordingExport", "listExports", "query", input) },
|
|
3509
3507
|
streamBroker: {
|
|
3510
3508
|
publishCameraStream: (input) => dispatchSystem("streamBroker", "publishCameraStream", "mutation", input),
|
|
3511
3509
|
retractCameraStream: (input) => dispatchSystem("streamBroker", "retractCameraStream", "mutation", input),
|