@camstack/addon-provider-rtsp 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
|
@@ -18308,6 +18308,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18308
18308
|
iconUrl: string().nullable(),
|
|
18309
18309
|
color: string(),
|
|
18310
18310
|
instanceMode: string(),
|
|
18311
|
+
/**
|
|
18312
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18313
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18314
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18315
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18316
|
+
*/
|
|
18317
|
+
mode: _enum([
|
|
18318
|
+
"standalone",
|
|
18319
|
+
"account",
|
|
18320
|
+
"broker"
|
|
18321
|
+
]),
|
|
18311
18322
|
discoveryMode: string(),
|
|
18312
18323
|
/**
|
|
18313
18324
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -18307,6 +18307,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18307
18307
|
iconUrl: string().nullable(),
|
|
18308
18308
|
color: string(),
|
|
18309
18309
|
instanceMode: string(),
|
|
18310
|
+
/**
|
|
18311
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18312
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18313
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18314
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18315
|
+
*/
|
|
18316
|
+
mode: _enum([
|
|
18317
|
+
"standalone",
|
|
18318
|
+
"account",
|
|
18319
|
+
"broker"
|
|
18320
|
+
]),
|
|
18310
18321
|
discoveryMode: string(),
|
|
18311
18322
|
/**
|
|
18312
18323
|
* Which integration-marker cap the addon declared, so the wizard can
|