@camstack/addon-provider-reolink 1.2.15 → 1.2.16
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
|
@@ -14245,6 +14245,18 @@ var motionCapability = {
|
|
|
14245
14245
|
name: "motion",
|
|
14246
14246
|
scope: "device",
|
|
14247
14247
|
mode: "singleton",
|
|
14248
|
+
/**
|
|
14249
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14250
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14251
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14252
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14253
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14254
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14255
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14256
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14257
|
+
* `snapshot` and every other per-device native cap.
|
|
14258
|
+
*/
|
|
14259
|
+
deviceNative: true,
|
|
14248
14260
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
14249
14261
|
methods: {
|
|
14250
14262
|
/**
|
package/dist/addon.mjs
CHANGED
|
@@ -14240,6 +14240,18 @@ var motionCapability = {
|
|
|
14240
14240
|
name: "motion",
|
|
14241
14241
|
scope: "device",
|
|
14242
14242
|
mode: "singleton",
|
|
14243
|
+
/**
|
|
14244
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14245
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14246
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14247
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14248
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14249
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14250
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14251
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14252
|
+
* `snapshot` and every other per-device native cap.
|
|
14253
|
+
*/
|
|
14254
|
+
deviceNative: true,
|
|
14243
14255
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
14244
14256
|
methods: {
|
|
14245
14257
|
/**
|