@camstack/addon-provider-ecowitt 0.1.17 → 0.1.19
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
|
@@ -19553,7 +19553,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19553
19553
|
latestVersion: string().nullable(),
|
|
19554
19554
|
hasUpdate: boolean(),
|
|
19555
19555
|
/** Optional manifest description for the row tooltip. */
|
|
19556
|
-
description: string().optional()
|
|
19556
|
+
description: string().optional(),
|
|
19557
|
+
/**
|
|
19558
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19559
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19560
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19561
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19562
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19563
|
+
*/
|
|
19564
|
+
buildId: string().nullable()
|
|
19557
19565
|
});
|
|
19558
19566
|
var LogStreamEntrySchema = object({
|
|
19559
19567
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19552,7 +19552,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19552
19552
|
latestVersion: string().nullable(),
|
|
19553
19553
|
hasUpdate: boolean(),
|
|
19554
19554
|
/** Optional manifest description for the row tooltip. */
|
|
19555
|
-
description: string().optional()
|
|
19555
|
+
description: string().optional(),
|
|
19556
|
+
/**
|
|
19557
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19558
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19559
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19560
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19561
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19562
|
+
*/
|
|
19563
|
+
buildId: string().nullable()
|
|
19556
19564
|
});
|
|
19557
19565
|
var LogStreamEntrySchema = object({
|
|
19558
19566
|
timestamp: string(),
|
package/package.json
CHANGED