@camstack/addon-matter-broker 0.1.16 → 0.1.17
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
|
@@ -19630,7 +19630,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19630
19630
|
latestVersion: string$2().nullable(),
|
|
19631
19631
|
hasUpdate: boolean(),
|
|
19632
19632
|
/** Optional manifest description for the row tooltip. */
|
|
19633
|
-
description: string$2().optional()
|
|
19633
|
+
description: string$2().optional(),
|
|
19634
|
+
/**
|
|
19635
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19636
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19637
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19638
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19639
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19640
|
+
*/
|
|
19641
|
+
buildId: string$2().nullable()
|
|
19634
19642
|
});
|
|
19635
19643
|
var LogStreamEntrySchema = object({
|
|
19636
19644
|
timestamp: string$2(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19628,7 +19628,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19628
19628
|
latestVersion: string$2().nullable(),
|
|
19629
19629
|
hasUpdate: boolean(),
|
|
19630
19630
|
/** Optional manifest description for the row tooltip. */
|
|
19631
|
-
description: string$2().optional()
|
|
19631
|
+
description: string$2().optional(),
|
|
19632
|
+
/**
|
|
19633
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19634
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19635
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19636
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19637
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19638
|
+
*/
|
|
19639
|
+
buildId: string$2().nullable()
|
|
19632
19640
|
});
|
|
19633
19641
|
var LogStreamEntrySchema = object({
|
|
19634
19642
|
timestamp: string$2(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-matter-broker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Matter broker addon for CamStack — owns a Matter fabric (commissioning + the long-lived controller) via the matter.js controller and brokers commissioned Matter nodes into CamStack",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|