@camstack/addon-provider-dreo 0.1.13 → 0.1.15
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
|
@@ -19589,7 +19589,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19589
19589
|
latestVersion: string().nullable(),
|
|
19590
19590
|
hasUpdate: boolean(),
|
|
19591
19591
|
/** Optional manifest description for the row tooltip. */
|
|
19592
|
-
description: string().optional()
|
|
19592
|
+
description: string().optional(),
|
|
19593
|
+
/**
|
|
19594
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19595
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19596
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19597
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19598
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19599
|
+
*/
|
|
19600
|
+
buildId: string().nullable()
|
|
19593
19601
|
});
|
|
19594
19602
|
var LogStreamEntrySchema = object({
|
|
19595
19603
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19590,7 +19590,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19590
19590
|
latestVersion: string().nullable(),
|
|
19591
19591
|
hasUpdate: boolean(),
|
|
19592
19592
|
/** Optional manifest description for the row tooltip. */
|
|
19593
|
-
description: string().optional()
|
|
19593
|
+
description: string().optional(),
|
|
19594
|
+
/**
|
|
19595
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19596
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19597
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19598
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19599
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19600
|
+
*/
|
|
19601
|
+
buildId: string().nullable()
|
|
19594
19602
|
});
|
|
19595
19603
|
var LogStreamEntrySchema = object({
|
|
19596
19604
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-dreo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Dreo smart-device (fan / air-circulator / purifier / heater / humidifier) device-provider addon for CamStack — wraps the @apocaliss92/nodedreo Dreo cloud client (REST + WebSocket)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|