@camstack/addon-provider-amcrest 0.1.2 → 0.1.3
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
|
@@ -19596,7 +19596,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19596
19596
|
latestVersion: string().nullable(),
|
|
19597
19597
|
hasUpdate: boolean(),
|
|
19598
19598
|
/** Optional manifest description for the row tooltip. */
|
|
19599
|
-
description: string().optional()
|
|
19599
|
+
description: string().optional(),
|
|
19600
|
+
/**
|
|
19601
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19602
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19603
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19604
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19605
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19606
|
+
*/
|
|
19607
|
+
buildId: string().nullable()
|
|
19600
19608
|
});
|
|
19601
19609
|
var LogStreamEntrySchema = object({
|
|
19602
19610
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19597,7 +19597,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19597
19597
|
latestVersion: string().nullable(),
|
|
19598
19598
|
hasUpdate: boolean(),
|
|
19599
19599
|
/** Optional manifest description for the row tooltip. */
|
|
19600
|
-
description: string().optional()
|
|
19600
|
+
description: string().optional(),
|
|
19601
|
+
/**
|
|
19602
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19603
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19604
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19605
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19606
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19607
|
+
*/
|
|
19608
|
+
buildId: string().nullable()
|
|
19601
19609
|
});
|
|
19602
19610
|
var LogStreamEntrySchema = object({
|
|
19603
19611
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-amcrest",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Amcrest/Dahua camera device provider addon for CamStack — Dahua CGI over HTTP(S) with digest auth (snapshot, RTSP catalog, PTZ, image/day-night config)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|