@camstack/addon-static-turn 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/static-turn.addon.js +11 -0
- package/dist/static-turn.addon.mjs +11 -0
- package/package.json +1 -1
|
@@ -15449,6 +15449,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15449
15449
|
iconUrl: string().nullable(),
|
|
15450
15450
|
color: string(),
|
|
15451
15451
|
instanceMode: string(),
|
|
15452
|
+
/**
|
|
15453
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15454
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15455
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15456
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15457
|
+
*/
|
|
15458
|
+
mode: _enum([
|
|
15459
|
+
"standalone",
|
|
15460
|
+
"account",
|
|
15461
|
+
"broker"
|
|
15462
|
+
]),
|
|
15452
15463
|
discoveryMode: string(),
|
|
15453
15464
|
/**
|
|
15454
15465
|
* Which integration-marker cap the addon declared, so the wizard can
|
|
@@ -15448,6 +15448,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15448
15448
|
iconUrl: string().nullable(),
|
|
15449
15449
|
color: string(),
|
|
15450
15450
|
instanceMode: string(),
|
|
15451
|
+
/**
|
|
15452
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15453
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15454
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15455
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15456
|
+
*/
|
|
15457
|
+
mode: _enum([
|
|
15458
|
+
"standalone",
|
|
15459
|
+
"account",
|
|
15460
|
+
"broker"
|
|
15461
|
+
]),
|
|
15451
15462
|
discoveryMode: string(),
|
|
15452
15463
|
/**
|
|
15453
15464
|
* Which integration-marker cap the addon declared, so the wizard can
|