@camstack/addon-decoder-nodeav 1.1.6 → 1.1.7
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/index.js +9 -1
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16977,7 +16977,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16977
16977
|
latestVersion: string().nullable(),
|
|
16978
16978
|
hasUpdate: boolean(),
|
|
16979
16979
|
/** Optional manifest description for the row tooltip. */
|
|
16980
|
-
description: string().optional()
|
|
16980
|
+
description: string().optional(),
|
|
16981
|
+
/**
|
|
16982
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16983
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16984
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16985
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16986
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16987
|
+
*/
|
|
16988
|
+
buildId: string().nullable()
|
|
16981
16989
|
});
|
|
16982
16990
|
var LogStreamEntrySchema = object({
|
|
16983
16991
|
timestamp: string(),
|
package/dist/index.mjs
CHANGED
|
@@ -16973,7 +16973,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16973
16973
|
latestVersion: string().nullable(),
|
|
16974
16974
|
hasUpdate: boolean(),
|
|
16975
16975
|
/** Optional manifest description for the row tooltip. */
|
|
16976
|
-
description: string().optional()
|
|
16976
|
+
description: string().optional(),
|
|
16977
|
+
/**
|
|
16978
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16979
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16980
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16981
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16982
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16983
|
+
*/
|
|
16984
|
+
buildId: string().nullable()
|
|
16977
16985
|
});
|
|
16978
16986
|
var LogStreamEntrySchema = object({
|
|
16979
16987
|
timestamp: string(),
|