@camstack/addon-provider-dreame 0.1.25 → 0.1.26
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
|
@@ -19605,7 +19605,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19605
19605
|
latestVersion: string().nullable(),
|
|
19606
19606
|
hasUpdate: boolean(),
|
|
19607
19607
|
/** Optional manifest description for the row tooltip. */
|
|
19608
|
-
description: string().optional()
|
|
19608
|
+
description: string().optional(),
|
|
19609
|
+
/**
|
|
19610
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19611
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19612
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19613
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19614
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19615
|
+
*/
|
|
19616
|
+
buildId: string().nullable()
|
|
19609
19617
|
});
|
|
19610
19618
|
var LogStreamEntrySchema = object({
|
|
19611
19619
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19605,7 +19605,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19605
19605
|
latestVersion: string().nullable(),
|
|
19606
19606
|
hasUpdate: boolean(),
|
|
19607
19607
|
/** Optional manifest description for the row tooltip. */
|
|
19608
|
-
description: string().optional()
|
|
19608
|
+
description: string().optional(),
|
|
19609
|
+
/**
|
|
19610
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19611
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19612
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19613
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19614
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19615
|
+
*/
|
|
19616
|
+
buildId: string().nullable()
|
|
19609
19617
|
});
|
|
19610
19618
|
var LogStreamEntrySchema = object({
|
|
19611
19619
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-dreame",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "Dreame robot-vacuum / lawn-mower device-provider addon for CamStack — wraps the @apocaliss92/nodedreame Dreamehome cloud client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|