@camstack/addon-provider-hikvision 1.1.9 → 1.1.10
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 +11 -0
- package/dist/addon.mjs +11 -0
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -18491,6 +18491,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18491
18491
|
iconUrl: string().nullable(),
|
|
18492
18492
|
color: string(),
|
|
18493
18493
|
instanceMode: string(),
|
|
18494
|
+
/**
|
|
18495
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18496
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18497
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18498
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18499
|
+
*/
|
|
18500
|
+
mode: _enum([
|
|
18501
|
+
"standalone",
|
|
18502
|
+
"account",
|
|
18503
|
+
"broker"
|
|
18504
|
+
]),
|
|
18494
18505
|
discoveryMode: string(),
|
|
18495
18506
|
/**
|
|
18496
18507
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -18490,6 +18490,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18490
18490
|
iconUrl: string().nullable(),
|
|
18491
18491
|
color: string(),
|
|
18492
18492
|
instanceMode: string(),
|
|
18493
|
+
/**
|
|
18494
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18495
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18496
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18497
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18498
|
+
*/
|
|
18499
|
+
mode: _enum([
|
|
18500
|
+
"standalone",
|
|
18501
|
+
"account",
|
|
18502
|
+
"broker"
|
|
18503
|
+
]),
|
|
18493
18504
|
discoveryMode: string(),
|
|
18494
18505
|
/**
|
|
18495
18506
|
* Which integration-marker cap the addon declared, so the wizard can
|
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.10",
|
|
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",
|