@camstack/addon-decoder-ffmpeg 1.1.7 → 1.1.8
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
|
@@ -16708,7 +16708,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16708
16708
|
latestVersion: string().nullable(),
|
|
16709
16709
|
hasUpdate: boolean(),
|
|
16710
16710
|
/** Optional manifest description for the row tooltip. */
|
|
16711
|
-
description: string().optional()
|
|
16711
|
+
description: string().optional(),
|
|
16712
|
+
/**
|
|
16713
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16714
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16715
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16716
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16717
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16718
|
+
*/
|
|
16719
|
+
buildId: string().nullable()
|
|
16712
16720
|
});
|
|
16713
16721
|
var LogStreamEntrySchema = object({
|
|
16714
16722
|
timestamp: string(),
|
package/dist/index.mjs
CHANGED
|
@@ -16704,7 +16704,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16704
16704
|
latestVersion: string().nullable(),
|
|
16705
16705
|
hasUpdate: boolean(),
|
|
16706
16706
|
/** Optional manifest description for the row tooltip. */
|
|
16707
|
-
description: string().optional()
|
|
16707
|
+
description: string().optional(),
|
|
16708
|
+
/**
|
|
16709
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16710
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16711
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16712
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16713
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16714
|
+
*/
|
|
16715
|
+
buildId: string().nullable()
|
|
16708
16716
|
});
|
|
16709
16717
|
var LogStreamEntrySchema = object({
|
|
16710
16718
|
timestamp: string(),
|