@camstack/types 1.1.46 → 1.1.47
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/device-manager.cap.d.ts +37 -0
- package/dist/capabilities/doorbell.cap.d.ts +21 -5
- package/dist/capabilities/index.d.ts +3 -2
- package/dist/capabilities/pipeline-analytics.cap.d.ts +370 -1
- package/dist/capabilities/recording.cap.d.ts +8 -1
- package/dist/capabilities/sensor-event-kinds.d.ts +25 -0
- package/dist/enums/event-category.d.ts +3 -0
- package/dist/enums.js +1 -1
- package/dist/enums.mjs +1 -1
- package/dist/{event-category-BXd6yeJi.js → event-category-AkBNxg_X.js} +3 -0
- package/dist/{event-category-CFZs3jI4.mjs → event-category-H4AVePnn.mjs} +3 -0
- package/dist/generated/addon-api.d.ts +586 -0
- package/dist/generated/device-proxy.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/index.js +287 -12
- package/dist/index.mjs +276 -13
- package/dist/interfaces/event-bus.d.ts +16 -0
- package/dist/{sleep-Vh_bux78.js → sleep-BkhAiFKX.js} +15 -3
- package/dist/{sleep-Br7r_3fq.mjs → sleep-CK899CTS.mjs} +15 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as EventCategory } from "./event-category-
|
|
1
|
+
import { t as EventCategory } from "./event-category-H4AVePnn.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
//#region src/disposer-chain.ts
|
|
4
4
|
var DisposerChain = class {
|
|
@@ -2787,7 +2787,12 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
2787
2787
|
getRawState: (input) => dispatch("device-ops", "deviceOps", "getRawState", "query", input)
|
|
2788
2788
|
},
|
|
2789
2789
|
deviceStatus: { getStatus: (input) => dispatch("device-status", "deviceStatus", "getStatus", "query", input) },
|
|
2790
|
-
doorbell: {
|
|
2790
|
+
doorbell: {
|
|
2791
|
+
getStatus: (input) => dispatch("doorbell", "doorbell", "getStatus", "query", input),
|
|
2792
|
+
getDeviceSettingsContribution: (input) => dispatch("doorbell", "doorbell", "getDeviceSettingsContribution", "query", input),
|
|
2793
|
+
getDeviceLiveContribution: (input) => dispatch("doorbell", "doorbell", "getDeviceLiveContribution", "query", input),
|
|
2794
|
+
applyDeviceSettingsPatch: (input) => dispatch("doorbell", "doorbell", "applyDeviceSettingsPatch", "mutation", input)
|
|
2795
|
+
},
|
|
2791
2796
|
enumSensor: { getStatus: (input) => dispatch("enum-sensor", "enumSensor", "getStatus", "query", input) },
|
|
2792
2797
|
eventEmitter: { getStatus: (input) => dispatch("event-emitter", "eventEmitter", "getStatus", "query", input) },
|
|
2793
2798
|
events: {
|
|
@@ -2906,10 +2911,13 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
2906
2911
|
getActiveTracks: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getActiveTracks", "query", input),
|
|
2907
2912
|
getTrack: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrack", "query", input),
|
|
2908
2913
|
listTracks: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listTracks", "query", input),
|
|
2914
|
+
listRecentTracks: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listRecentTracks", "query", input),
|
|
2909
2915
|
clearTracks: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "clearTracks", "mutation", input),
|
|
2910
2916
|
getMotionEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getMotionEvents", "query", input),
|
|
2911
2917
|
getObjectEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getObjectEvents", "query", input),
|
|
2912
2918
|
getAudioEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getAudioEvents", "query", input),
|
|
2919
|
+
listEventKinds: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listEventKinds", "query", input),
|
|
2920
|
+
getSensorEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getSensorEvents", "query", input),
|
|
2913
2921
|
getKeyEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getKeyEvents", "query", input),
|
|
2914
2922
|
getEventDensity: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getEventDensity", "query", input),
|
|
2915
2923
|
pruneEventsBefore: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "pruneEventsBefore", "mutation", input),
|
|
@@ -3083,6 +3091,7 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
3083
3091
|
setMetadata: (input) => dispatchSystem("deviceManager", "setMetadata", "mutation", input),
|
|
3084
3092
|
setDisabled: (input) => dispatchSystem("deviceManager", "setDisabled", "mutation", input),
|
|
3085
3093
|
getDevice: (input) => dispatchSystem("deviceManager", "getDevice", "query", input),
|
|
3094
|
+
getLinkedDevices: (input) => dispatchSystem("deviceManager", "getLinkedDevices", "query", input),
|
|
3086
3095
|
getStreamSources: (input) => dispatchSystem("deviceManager", "getStreamSources", "query", input),
|
|
3087
3096
|
getConfigSchema: (input) => dispatchSystem("deviceManager", "getConfigSchema", "query", input),
|
|
3088
3097
|
getSettingsSchema: (input) => dispatchSystem("deviceManager", "getSettingsSchema", "query", input),
|
|
@@ -3103,7 +3112,10 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
3103
3112
|
updateDeviceField: (input) => dispatchSystem("deviceManager", "updateDeviceField", "mutation", input),
|
|
3104
3113
|
updateDeviceFieldsBatch: (input) => dispatchSystem("deviceManager", "updateDeviceFieldsBatch", "mutation", input),
|
|
3105
3114
|
testField: (input) => dispatchSystem("deviceManager", "testField", "mutation", input),
|
|
3106
|
-
getDeviceStatusAggregate: (input) => dispatchSystem("deviceManager", "getDeviceStatusAggregate", "query", input)
|
|
3115
|
+
getDeviceStatusAggregate: (input) => dispatchSystem("deviceManager", "getDeviceStatusAggregate", "query", input),
|
|
3116
|
+
getDeviceSettingsContribution: (input) => dispatchSystem("deviceManager", "getDeviceSettingsContribution", "query", input),
|
|
3117
|
+
getDeviceLiveContribution: (input) => dispatchSystem("deviceManager", "getDeviceLiveContribution", "query", input),
|
|
3118
|
+
applyDeviceSettingsPatch: (input) => dispatchSystem("deviceManager", "applyDeviceSettingsPatch", "mutation", input)
|
|
3107
3119
|
},
|
|
3108
3120
|
deviceState: {
|
|
3109
3121
|
getSnapshot: (input) => dispatchSystem("deviceState", "getSnapshot", "query", input),
|