@camstack/addon-provider-rtsp 1.2.7 → 1.2.8
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 +12 -0
- package/dist/addon.mjs +12 -0
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -14116,6 +14116,18 @@ var motionCapability = {
|
|
|
14116
14116
|
name: "motion",
|
|
14117
14117
|
scope: "device",
|
|
14118
14118
|
mode: "singleton",
|
|
14119
|
+
/**
|
|
14120
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14121
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14122
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14123
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14124
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14125
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14126
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14127
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14128
|
+
* `snapshot` and every other per-device native cap.
|
|
14129
|
+
*/
|
|
14130
|
+
deviceNative: true,
|
|
14119
14131
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
14120
14132
|
methods: {
|
|
14121
14133
|
/**
|
package/dist/addon.mjs
CHANGED
|
@@ -14092,6 +14092,18 @@ var motionCapability = {
|
|
|
14092
14092
|
name: "motion",
|
|
14093
14093
|
scope: "device",
|
|
14094
14094
|
mode: "singleton",
|
|
14095
|
+
/**
|
|
14096
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14097
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14098
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14099
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14100
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14101
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14102
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14103
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14104
|
+
* `snapshot` and every other per-device native cap.
|
|
14105
|
+
*/
|
|
14106
|
+
deviceNative: true,
|
|
14095
14107
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
14096
14108
|
methods: {
|
|
14097
14109
|
/**
|