@camstack/addon-provider-rtsp 1.1.18 → 1.1.19
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
|
@@ -19613,7 +19613,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19613
19613
|
latestVersion: string().nullable(),
|
|
19614
19614
|
hasUpdate: boolean(),
|
|
19615
19615
|
/** Optional manifest description for the row tooltip. */
|
|
19616
|
-
description: string().optional()
|
|
19616
|
+
description: string().optional(),
|
|
19617
|
+
/**
|
|
19618
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19619
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19620
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19621
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19622
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19623
|
+
*/
|
|
19624
|
+
buildId: string().nullable()
|
|
19617
19625
|
});
|
|
19618
19626
|
var LogStreamEntrySchema = object({
|
|
19619
19627
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19612,7 +19612,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19612
19612
|
latestVersion: string().nullable(),
|
|
19613
19613
|
hasUpdate: boolean(),
|
|
19614
19614
|
/** Optional manifest description for the row tooltip. */
|
|
19615
|
-
description: string().optional()
|
|
19615
|
+
description: string().optional(),
|
|
19616
|
+
/**
|
|
19617
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19618
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19619
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19620
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19621
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19622
|
+
*/
|
|
19623
|
+
buildId: string().nullable()
|
|
19616
19624
|
});
|
|
19617
19625
|
var LogStreamEntrySchema = object({
|
|
19618
19626
|
timestamp: string(),
|