@camstack/addon-agent-ui 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.
- package/dist/addon.js +10 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -16569,7 +16569,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16569
16569
|
latestVersion: string().nullable(),
|
|
16570
16570
|
hasUpdate: boolean(),
|
|
16571
16571
|
/** Optional manifest description for the row tooltip. */
|
|
16572
|
-
description: string().optional()
|
|
16572
|
+
description: string().optional(),
|
|
16573
|
+
/**
|
|
16574
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16575
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16576
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16577
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16578
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16579
|
+
*/
|
|
16580
|
+
buildId: string().nullable()
|
|
16573
16581
|
});
|
|
16574
16582
|
var LogStreamEntrySchema = object({
|
|
16575
16583
|
timestamp: string(),
|
|
@@ -22841,7 +22849,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
22841
22849
|
capability: adminUiCapability,
|
|
22842
22850
|
provider: {
|
|
22843
22851
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
22844
|
-
getVersion: async () => ({ version: "1.1.
|
|
22852
|
+
getVersion: async () => ({ version: "1.1.20" })
|
|
22845
22853
|
}
|
|
22846
22854
|
}];
|
|
22847
22855
|
}
|