@camstack/addon-provider-unraid 0.1.4 → 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
|
@@ -19550,7 +19550,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19550
19550
|
latestVersion: string().nullable(),
|
|
19551
19551
|
hasUpdate: boolean(),
|
|
19552
19552
|
/** Optional manifest description for the row tooltip. */
|
|
19553
|
-
description: string().optional()
|
|
19553
|
+
description: string().optional(),
|
|
19554
|
+
/**
|
|
19555
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19556
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19557
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19558
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19559
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19560
|
+
*/
|
|
19561
|
+
buildId: string().nullable()
|
|
19554
19562
|
});
|
|
19555
19563
|
var LogStreamEntrySchema = object({
|
|
19556
19564
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19549,7 +19549,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19549
19549
|
latestVersion: string().nullable(),
|
|
19550
19550
|
hasUpdate: boolean(),
|
|
19551
19551
|
/** Optional manifest description for the row tooltip. */
|
|
19552
|
-
description: string().optional()
|
|
19552
|
+
description: string().optional(),
|
|
19553
|
+
/**
|
|
19554
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19555
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19556
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19557
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19558
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19559
|
+
*/
|
|
19560
|
+
buildId: string().nullable()
|
|
19553
19561
|
});
|
|
19554
19562
|
var LogStreamEntrySchema = object({
|
|
19555
19563
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-unraid",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Unraid device-provider addon for CamStack — one Container per Unraid instance fanning out array, disk, docker and notification entities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|