@camstack/addon-provider-reolink 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
|
@@ -18539,6 +18539,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18539
18539
|
iconUrl: string().nullable(),
|
|
18540
18540
|
color: string(),
|
|
18541
18541
|
instanceMode: string(),
|
|
18542
|
+
/**
|
|
18543
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18544
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18545
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18546
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18547
|
+
*/
|
|
18548
|
+
mode: _enum([
|
|
18549
|
+
"standalone",
|
|
18550
|
+
"account",
|
|
18551
|
+
"broker"
|
|
18552
|
+
]),
|
|
18542
18553
|
discoveryMode: string(),
|
|
18543
18554
|
/**
|
|
18544
18555
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -18534,6 +18534,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18534
18534
|
iconUrl: string().nullable(),
|
|
18535
18535
|
color: string(),
|
|
18536
18536
|
instanceMode: string(),
|
|
18537
|
+
/**
|
|
18538
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18539
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18540
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18541
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18542
|
+
*/
|
|
18543
|
+
mode: _enum([
|
|
18544
|
+
"standalone",
|
|
18545
|
+
"account",
|
|
18546
|
+
"broker"
|
|
18547
|
+
]),
|
|
18537
18548
|
discoveryMode: string(),
|
|
18538
18549
|
/**
|
|
18539
18550
|
* Which integration-marker cap the addon declared, so the wizard can
|