@camstack/types 1.1.31 → 1.1.32
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/capabilities/addons.cap.d.ts +2 -0
- package/dist/index.js +9 -1
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
|
@@ -219,6 +219,7 @@ declare const FrameworkPackageStatusSchema: z.ZodObject<{
|
|
|
219
219
|
latestVersion: z.ZodNullable<z.ZodString>;
|
|
220
220
|
hasUpdate: z.ZodBoolean;
|
|
221
221
|
description: z.ZodOptional<z.ZodString>;
|
|
222
|
+
buildId: z.ZodNullable<z.ZodString>;
|
|
222
223
|
}, z.core.$strip>;
|
|
223
224
|
declare const LogStreamEntrySchema: z.ZodObject<{
|
|
224
225
|
timestamp: z.ZodString;
|
|
@@ -433,6 +434,7 @@ export declare const addonsCapability: {
|
|
|
433
434
|
latestVersion: z.ZodNullable<z.ZodString>;
|
|
434
435
|
hasUpdate: z.ZodBoolean;
|
|
435
436
|
description: z.ZodOptional<z.ZodString>;
|
|
437
|
+
buildId: z.ZodNullable<z.ZodString>;
|
|
436
438
|
}, z.core.$strip>>>, import("./capability-definition.js").CapabilityMethodKind>;
|
|
437
439
|
/**
|
|
438
440
|
* Cluster-wide capability-provider discovery. Returns the list of
|
package/dist/index.js
CHANGED
|
@@ -19403,7 +19403,15 @@ var FrameworkPackageStatusSchema = zod.z.object({
|
|
|
19403
19403
|
latestVersion: zod.z.string().nullable(),
|
|
19404
19404
|
hasUpdate: zod.z.boolean(),
|
|
19405
19405
|
/** Optional manifest description for the row tooltip. */
|
|
19406
|
-
description: zod.z.string().optional()
|
|
19406
|
+
description: zod.z.string().optional(),
|
|
19407
|
+
/**
|
|
19408
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19409
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19410
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19411
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19412
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19413
|
+
*/
|
|
19414
|
+
buildId: zod.z.string().nullable()
|
|
19407
19415
|
});
|
|
19408
19416
|
var LogStreamEntrySchema = zod.z.object({
|
|
19409
19417
|
timestamp: zod.z.string(),
|
package/dist/index.mjs
CHANGED
|
@@ -19402,7 +19402,15 @@ var FrameworkPackageStatusSchema = z.object({
|
|
|
19402
19402
|
latestVersion: z.string().nullable(),
|
|
19403
19403
|
hasUpdate: z.boolean(),
|
|
19404
19404
|
/** Optional manifest description for the row tooltip. */
|
|
19405
|
-
description: z.string().optional()
|
|
19405
|
+
description: z.string().optional(),
|
|
19406
|
+
/**
|
|
19407
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19408
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19409
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19410
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19411
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19412
|
+
*/
|
|
19413
|
+
buildId: z.string().nullable()
|
|
19406
19414
|
});
|
|
19407
19415
|
var LogStreamEntrySchema = z.object({
|
|
19408
19416
|
timestamp: z.string(),
|