@camstack/addon-provider-hikvision 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
|
@@ -19800,7 +19800,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19800
19800
|
latestVersion: string().nullable(),
|
|
19801
19801
|
hasUpdate: boolean(),
|
|
19802
19802
|
/** Optional manifest description for the row tooltip. */
|
|
19803
|
-
description: string().optional()
|
|
19803
|
+
description: string().optional(),
|
|
19804
|
+
/**
|
|
19805
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19806
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19807
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19808
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19809
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19810
|
+
*/
|
|
19811
|
+
buildId: string().nullable()
|
|
19804
19812
|
});
|
|
19805
19813
|
var LogStreamEntrySchema = object({
|
|
19806
19814
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19801,7 +19801,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19801
19801
|
latestVersion: string().nullable(),
|
|
19802
19802
|
hasUpdate: boolean(),
|
|
19803
19803
|
/** Optional manifest description for the row tooltip. */
|
|
19804
|
-
description: string().optional()
|
|
19804
|
+
description: string().optional(),
|
|
19805
|
+
/**
|
|
19806
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19807
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19808
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19809
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19810
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19811
|
+
*/
|
|
19812
|
+
buildId: string().nullable()
|
|
19805
19813
|
});
|
|
19806
19814
|
var LogStreamEntrySchema = object({
|
|
19807
19815
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-hikvision",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.19",
|
|
4
4
|
"description": "Hikvision camera device provider addon for CamStack — ISAPI over HTTP(S) with digest auth (snapshot, alarm stream, RTSP discovery)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|