@camstack/addon-provider-petkit 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
|
@@ -19569,7 +19569,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19569
19569
|
latestVersion: string().nullable(),
|
|
19570
19570
|
hasUpdate: boolean(),
|
|
19571
19571
|
/** Optional manifest description for the row tooltip. */
|
|
19572
|
-
description: string().optional()
|
|
19572
|
+
description: string().optional(),
|
|
19573
|
+
/**
|
|
19574
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19575
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19576
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19577
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19578
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19579
|
+
*/
|
|
19580
|
+
buildId: string().nullable()
|
|
19573
19581
|
});
|
|
19574
19582
|
var LogStreamEntrySchema = object({
|
|
19575
19583
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19568,7 +19568,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19568
19568
|
latestVersion: string().nullable(),
|
|
19569
19569
|
hasUpdate: boolean(),
|
|
19570
19570
|
/** Optional manifest description for the row tooltip. */
|
|
19571
|
-
description: string().optional()
|
|
19571
|
+
description: string().optional(),
|
|
19572
|
+
/**
|
|
19573
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19574
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19575
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19576
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19577
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19578
|
+
*/
|
|
19579
|
+
buildId: string().nullable()
|
|
19572
19580
|
});
|
|
19573
19581
|
var LogStreamEntrySchema = object({
|
|
19574
19582
|
timestamp: string(),
|
package/package.json
CHANGED