@camstack/addon-provider-wyze 0.2.7 → 0.2.9
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
|
@@ -14023,6 +14023,18 @@ var motionCapability = {
|
|
|
14023
14023
|
name: "motion",
|
|
14024
14024
|
scope: "device",
|
|
14025
14025
|
mode: "singleton",
|
|
14026
|
+
/**
|
|
14027
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14028
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14029
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14030
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14031
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14032
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14033
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14034
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14035
|
+
* `snapshot` and every other per-device native cap.
|
|
14036
|
+
*/
|
|
14037
|
+
deviceNative: true,
|
|
14026
14038
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
14027
14039
|
methods: {
|
|
14028
14040
|
/**
|
package/dist/addon.mjs
CHANGED
|
@@ -14002,6 +14002,18 @@ var motionCapability = {
|
|
|
14002
14002
|
name: "motion",
|
|
14003
14003
|
scope: "device",
|
|
14004
14004
|
mode: "singleton",
|
|
14005
|
+
/**
|
|
14006
|
+
* Providers register per-device natives via `ctx.registerNativeCap`
|
|
14007
|
+
* (Hikvision/Reolink/Amcrest/Wyze/HA/Homematic/Alexa/Matter) — there is
|
|
14008
|
+
* NO system singleton provider. Without this flag `resolveCapMount`
|
|
14009
|
+
* derived `{ kind: 'singleton' }`, so `motion.getStatus`/`isDetected`
|
|
14010
|
+
* resolved via `registry.getSingleton('motion')` (always null) and every
|
|
14011
|
+
* call 412'd "provider not available" while bindings listed a live
|
|
14012
|
+
* `motion` native (2026-08-02). The flag routes the router through
|
|
14013
|
+
* `requireDeviceScoped` → `getProviderForDevice`, like `motion-trigger`,
|
|
14014
|
+
* `snapshot` and every other per-device native cap.
|
|
14015
|
+
*/
|
|
14016
|
+
deviceNative: true,
|
|
14005
14017
|
deviceTypes: [DeviceType.Camera, DeviceType.Sensor],
|
|
14006
14018
|
methods: {
|
|
14007
14019
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-wyze",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Wyze camera device-provider addon for CamStack — wraps the @apocaliss92/wyze-bridge-js P2P/DTLS client, feeding the stream-broker via the pull-rfc4571 lazy-publish path (a structural twin of addon-provider-reolink)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|