@camstack/addon-provider-rademacher 0.1.5 → 0.1.6
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
|
@@ -20535,7 +20535,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
20535
20535
|
latestVersion: string().nullable(),
|
|
20536
20536
|
hasUpdate: boolean(),
|
|
20537
20537
|
/** Optional manifest description for the row tooltip. */
|
|
20538
|
-
description: string().optional()
|
|
20538
|
+
description: string().optional(),
|
|
20539
|
+
/**
|
|
20540
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
20541
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
20542
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
20543
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
20544
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
20545
|
+
*/
|
|
20546
|
+
buildId: string().nullable()
|
|
20539
20547
|
});
|
|
20540
20548
|
var LogStreamEntrySchema = object({
|
|
20541
20549
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -20534,7 +20534,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
20534
20534
|
latestVersion: string().nullable(),
|
|
20535
20535
|
hasUpdate: boolean(),
|
|
20536
20536
|
/** Optional manifest description for the row tooltip. */
|
|
20537
|
-
description: string().optional()
|
|
20537
|
+
description: string().optional(),
|
|
20538
|
+
/**
|
|
20539
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
20540
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
20541
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
20542
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
20543
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
20544
|
+
*/
|
|
20545
|
+
buildId: string().nullable()
|
|
20538
20546
|
});
|
|
20539
20547
|
var LogStreamEntrySchema = object({
|
|
20540
20548
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-rademacher",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Rademacher HomePilot device-provider addon for CamStack — wraps the @apocaliss92/noderademacher local-hub client (roller shutters over the cover cap)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|