@camstack/addon-provider-reolink 1.1.19 → 1.1.21
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
|
@@ -19844,7 +19844,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19844
19844
|
latestVersion: string().nullable(),
|
|
19845
19845
|
hasUpdate: boolean(),
|
|
19846
19846
|
/** Optional manifest description for the row tooltip. */
|
|
19847
|
-
description: string().optional()
|
|
19847
|
+
description: string().optional(),
|
|
19848
|
+
/**
|
|
19849
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19850
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19851
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19852
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19853
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19854
|
+
*/
|
|
19855
|
+
buildId: string().nullable()
|
|
19848
19856
|
});
|
|
19849
19857
|
var LogStreamEntrySchema = object({
|
|
19850
19858
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19839,7 +19839,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19839
19839
|
latestVersion: string().nullable(),
|
|
19840
19840
|
hasUpdate: boolean(),
|
|
19841
19841
|
/** Optional manifest description for the row tooltip. */
|
|
19842
|
-
description: string().optional()
|
|
19842
|
+
description: string().optional(),
|
|
19843
|
+
/**
|
|
19844
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19845
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19846
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19847
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19848
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19849
|
+
*/
|
|
19850
|
+
buildId: string().nullable()
|
|
19843
19851
|
});
|
|
19844
19852
|
var LogStreamEntrySchema = object({
|
|
19845
19853
|
timestamp: string(),
|