@camstack/addon-provider-onvif 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
|
@@ -17015,7 +17015,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
17015
17015
|
latestVersion: string().nullable(),
|
|
17016
17016
|
hasUpdate: boolean(),
|
|
17017
17017
|
/** Optional manifest description for the row tooltip. */
|
|
17018
|
-
description: string().optional()
|
|
17018
|
+
description: string().optional(),
|
|
17019
|
+
/**
|
|
17020
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
17021
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
17022
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
17023
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
17024
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
17025
|
+
*/
|
|
17026
|
+
buildId: string().nullable()
|
|
17019
17027
|
});
|
|
17020
17028
|
var LogStreamEntrySchema = object({
|
|
17021
17029
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -17016,7 +17016,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
17016
17016
|
latestVersion: string().nullable(),
|
|
17017
17017
|
hasUpdate: boolean(),
|
|
17018
17018
|
/** Optional manifest description for the row tooltip. */
|
|
17019
|
-
description: string().optional()
|
|
17019
|
+
description: string().optional(),
|
|
17020
|
+
/**
|
|
17021
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
17022
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
17023
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
17024
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
17025
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
17026
|
+
*/
|
|
17027
|
+
buildId: string().nullable()
|
|
17020
17028
|
});
|
|
17021
17029
|
var LogStreamEntrySchema = object({
|
|
17022
17030
|
timestamp: string(),
|