@camstack/addon-static-turn 1.1.19 → 1.1.20
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.
|
@@ -16582,7 +16582,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16582
16582
|
latestVersion: string().nullable(),
|
|
16583
16583
|
hasUpdate: boolean(),
|
|
16584
16584
|
/** Optional manifest description for the row tooltip. */
|
|
16585
|
-
description: string().optional()
|
|
16585
|
+
description: string().optional(),
|
|
16586
|
+
/**
|
|
16587
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16588
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16589
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16590
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16591
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16592
|
+
*/
|
|
16593
|
+
buildId: string().nullable()
|
|
16586
16594
|
});
|
|
16587
16595
|
var LogStreamEntrySchema = object({
|
|
16588
16596
|
timestamp: string(),
|
|
@@ -16581,7 +16581,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16581
16581
|
latestVersion: string().nullable(),
|
|
16582
16582
|
hasUpdate: boolean(),
|
|
16583
16583
|
/** Optional manifest description for the row tooltip. */
|
|
16584
|
-
description: string().optional()
|
|
16584
|
+
description: string().optional(),
|
|
16585
|
+
/**
|
|
16586
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16587
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16588
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16589
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16590
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16591
|
+
*/
|
|
16592
|
+
buildId: string().nullable()
|
|
16585
16593
|
});
|
|
16586
16594
|
var LogStreamEntrySchema = object({
|
|
16587
16595
|
timestamp: string(),
|