@camstack/addon-provider-homeassistant 1.1.21 → 1.1.22
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
|
@@ -19927,7 +19927,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19927
19927
|
latestVersion: string().nullable(),
|
|
19928
19928
|
hasUpdate: boolean(),
|
|
19929
19929
|
/** Optional manifest description for the row tooltip. */
|
|
19930
|
-
description: string().optional()
|
|
19930
|
+
description: string().optional(),
|
|
19931
|
+
/**
|
|
19932
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19933
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19934
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19935
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19936
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19937
|
+
*/
|
|
19938
|
+
buildId: string().nullable()
|
|
19931
19939
|
});
|
|
19932
19940
|
var LogStreamEntrySchema = object({
|
|
19933
19941
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19926,7 +19926,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19926
19926
|
latestVersion: string().nullable(),
|
|
19927
19927
|
hasUpdate: boolean(),
|
|
19928
19928
|
/** Optional manifest description for the row tooltip. */
|
|
19929
|
-
description: string().optional()
|
|
19929
|
+
description: string().optional(),
|
|
19930
|
+
/**
|
|
19931
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19932
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19933
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19934
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19935
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19936
|
+
*/
|
|
19937
|
+
buildId: string().nullable()
|
|
19930
19938
|
});
|
|
19931
19939
|
var LogStreamEntrySchema = object({
|
|
19932
19940
|
timestamp: string(),
|