@camstack/addon-mqtt-broker 1.1.17 → 1.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.
|
@@ -16672,7 +16672,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16672
16672
|
latestVersion: string().nullable(),
|
|
16673
16673
|
hasUpdate: boolean(),
|
|
16674
16674
|
/** Optional manifest description for the row tooltip. */
|
|
16675
|
-
description: string().optional()
|
|
16675
|
+
description: string().optional(),
|
|
16676
|
+
/**
|
|
16677
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16678
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16679
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16680
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16681
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16682
|
+
*/
|
|
16683
|
+
buildId: string().nullable()
|
|
16676
16684
|
});
|
|
16677
16685
|
var LogStreamEntrySchema = object({
|
|
16678
16686
|
timestamp: string(),
|
|
@@ -16667,7 +16667,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16667
16667
|
latestVersion: string().nullable(),
|
|
16668
16668
|
hasUpdate: boolean(),
|
|
16669
16669
|
/** Optional manifest description for the row tooltip. */
|
|
16670
|
-
description: string().optional()
|
|
16670
|
+
description: string().optional(),
|
|
16671
|
+
/**
|
|
16672
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16673
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16674
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16675
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16676
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16677
|
+
*/
|
|
16678
|
+
buildId: string().nullable()
|
|
16671
16679
|
});
|
|
16672
16680
|
var LogStreamEntrySchema = object({
|
|
16673
16681
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-mqtt-broker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.19",
|
|
4
4
|
"description": "MQTT broker registry addon for CamStack — manages external broker entries + an optional embedded aedes broker. Consumers spin up their own `mqtt.js` clients via the `mqtt-broker` cap.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|