@camstack/addon-provider-onvif 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
|
@@ -15848,6 +15848,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15848
15848
|
iconUrl: string().nullable(),
|
|
15849
15849
|
color: string(),
|
|
15850
15850
|
instanceMode: string(),
|
|
15851
|
+
/**
|
|
15852
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15853
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15854
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15855
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15856
|
+
*/
|
|
15857
|
+
mode: _enum([
|
|
15858
|
+
"standalone",
|
|
15859
|
+
"account",
|
|
15860
|
+
"broker"
|
|
15861
|
+
]),
|
|
15851
15862
|
discoveryMode: string(),
|
|
15852
15863
|
/**
|
|
15853
15864
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -15849,6 +15849,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15849
15849
|
iconUrl: string().nullable(),
|
|
15850
15850
|
color: string(),
|
|
15851
15851
|
instanceMode: string(),
|
|
15852
|
+
/**
|
|
15853
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15854
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15855
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15856
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15857
|
+
*/
|
|
15858
|
+
mode: _enum([
|
|
15859
|
+
"standalone",
|
|
15860
|
+
"account",
|
|
15861
|
+
"broker"
|
|
15862
|
+
]),
|
|
15852
15863
|
discoveryMode: string(),
|
|
15853
15864
|
/**
|
|
15854
15865
|
* Which integration-marker cap the addon declared, so the wizard can
|