@camstack/addon-matter-broker 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
|
@@ -18342,6 +18342,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18342
18342
|
iconUrl: string$2().nullable(),
|
|
18343
18343
|
color: string$2(),
|
|
18344
18344
|
instanceMode: string$2(),
|
|
18345
|
+
/**
|
|
18346
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18347
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18348
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18349
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18350
|
+
*/
|
|
18351
|
+
mode: _enum([
|
|
18352
|
+
"standalone",
|
|
18353
|
+
"account",
|
|
18354
|
+
"broker"
|
|
18355
|
+
]),
|
|
18345
18356
|
discoveryMode: string$2(),
|
|
18346
18357
|
/**
|
|
18347
18358
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/addon.mjs
CHANGED
|
@@ -18340,6 +18340,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
18340
18340
|
iconUrl: string$2().nullable(),
|
|
18341
18341
|
color: string$2(),
|
|
18342
18342
|
instanceMode: string$2(),
|
|
18343
|
+
/**
|
|
18344
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
18345
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
18346
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
18347
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
18348
|
+
*/
|
|
18349
|
+
mode: _enum([
|
|
18350
|
+
"standalone",
|
|
18351
|
+
"account",
|
|
18352
|
+
"broker"
|
|
18353
|
+
]),
|
|
18343
18354
|
discoveryMode: string$2(),
|
|
18344
18355
|
/**
|
|
18345
18356
|
* 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-matter-broker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Matter broker addon for CamStack — owns a Matter fabric (commissioning + the long-lived controller) via the matter.js controller and brokers commissioned Matter nodes into CamStack",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|