@camstack/addon-import-alexa 0.1.7 → 0.1.8
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
|
@@ -18503,6 +18503,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18503
18503
|
iconUrl: string().nullable(),
|
|
18504
18504
|
color: string(),
|
|
18505
18505
|
instanceMode: string(),
|
|
18506
|
+
/**
|
|
18507
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18508
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18509
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18510
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18511
|
+
*/
|
|
18512
|
+
mode: _enum([
|
|
18513
|
+
"standalone",
|
|
18514
|
+
"account",
|
|
18515
|
+
"broker"
|
|
18516
|
+
]),
|
|
18506
18517
|
discoveryMode: string(),
|
|
18507
18518
|
/**
|
|
18508
18519
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -18503,6 +18503,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18503
18503
|
iconUrl: string().nullable(),
|
|
18504
18504
|
color: string(),
|
|
18505
18505
|
instanceMode: string(),
|
|
18506
|
+
/**
|
|
18507
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18508
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18509
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18510
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18511
|
+
*/
|
|
18512
|
+
mode: _enum([
|
|
18513
|
+
"standalone",
|
|
18514
|
+
"account",
|
|
18515
|
+
"broker"
|
|
18516
|
+
]),
|
|
18506
18517
|
discoveryMode: string(),
|
|
18507
18518
|
/**
|
|
18508
18519
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-import-alexa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Alexa device-import provider for CamStack — imports the smart-home devices in a user's Alexa account via the unofficial alexa-remote2 cookie/token client (the inverse of the Alexa exporter)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|