@camstack/addon-provider-homeassistant 1.1.10 → 1.1.11
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
|
@@ -18432,6 +18432,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18432
18432
|
iconUrl: string().nullable(),
|
|
18433
18433
|
color: string(),
|
|
18434
18434
|
instanceMode: string(),
|
|
18435
|
+
/**
|
|
18436
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18437
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18438
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18439
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18440
|
+
*/
|
|
18441
|
+
mode: _enum([
|
|
18442
|
+
"standalone",
|
|
18443
|
+
"account",
|
|
18444
|
+
"broker"
|
|
18445
|
+
]),
|
|
18435
18446
|
discoveryMode: string(),
|
|
18436
18447
|
/**
|
|
18437
18448
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -18431,6 +18431,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18431
18431
|
iconUrl: string().nullable(),
|
|
18432
18432
|
color: string(),
|
|
18433
18433
|
instanceMode: string(),
|
|
18434
|
+
/**
|
|
18435
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18436
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18437
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18438
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18439
|
+
*/
|
|
18440
|
+
mode: _enum([
|
|
18441
|
+
"standalone",
|
|
18442
|
+
"account",
|
|
18443
|
+
"broker"
|
|
18444
|
+
]),
|
|
18434
18445
|
discoveryMode: string(),
|
|
18435
18446
|
/**
|
|
18436
18447
|
* Which integration-marker cap the addon declared, so the wizard can
|