@camstack/addon-provider-wyze 0.1.16 → 0.1.17
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 +9 -1
- package/dist/addon.mjs +9 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19627,7 +19627,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19627
19627
|
latestVersion: string().nullable(),
|
|
19628
19628
|
hasUpdate: boolean(),
|
|
19629
19629
|
/** Optional manifest description for the row tooltip. */
|
|
19630
|
-
description: string().optional()
|
|
19630
|
+
description: string().optional(),
|
|
19631
|
+
/**
|
|
19632
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19633
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19634
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19635
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19636
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19637
|
+
*/
|
|
19638
|
+
buildId: string().nullable()
|
|
19631
19639
|
});
|
|
19632
19640
|
var LogStreamEntrySchema = object({
|
|
19633
19641
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19606,7 +19606,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19606
19606
|
latestVersion: string().nullable(),
|
|
19607
19607
|
hasUpdate: boolean(),
|
|
19608
19608
|
/** Optional manifest description for the row tooltip. */
|
|
19609
|
-
description: string().optional()
|
|
19609
|
+
description: string().optional(),
|
|
19610
|
+
/**
|
|
19611
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19612
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19613
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19614
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19615
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19616
|
+
*/
|
|
19617
|
+
buildId: string().nullable()
|
|
19610
19618
|
});
|
|
19611
19619
|
var LogStreamEntrySchema = object({
|
|
19612
19620
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-wyze",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
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",
|