@camstack/addon-advanced-notifier 1.1.20 → 1.1.21
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
|
@@ -16603,7 +16603,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16603
16603
|
latestVersion: string().nullable(),
|
|
16604
16604
|
hasUpdate: boolean(),
|
|
16605
16605
|
/** Optional manifest description for the row tooltip. */
|
|
16606
|
-
description: string().optional()
|
|
16606
|
+
description: string().optional(),
|
|
16607
|
+
/**
|
|
16608
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16609
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16610
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16611
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16612
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16613
|
+
*/
|
|
16614
|
+
buildId: string().nullable()
|
|
16607
16615
|
});
|
|
16608
16616
|
var LogStreamEntrySchema = object({
|
|
16609
16617
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -16599,7 +16599,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16599
16599
|
latestVersion: string().nullable(),
|
|
16600
16600
|
hasUpdate: boolean(),
|
|
16601
16601
|
/** Optional manifest description for the row tooltip. */
|
|
16602
|
-
description: string().optional()
|
|
16602
|
+
description: string().optional(),
|
|
16603
|
+
/**
|
|
16604
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16605
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16606
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16607
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16608
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16609
|
+
*/
|
|
16610
|
+
buildId: string().nullable()
|
|
16603
16611
|
});
|
|
16604
16612
|
var LogStreamEntrySchema = object({
|
|
16605
16613
|
timestamp: string(),
|