@camstack/addon-mqtt-broker 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/mqtt-broker.addon.js +11 -0
- package/dist/mqtt-broker.addon.mjs +11 -0
- package/package.json +1 -1
|
@@ -15539,6 +15539,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15539
15539
|
iconUrl: string().nullable(),
|
|
15540
15540
|
color: string(),
|
|
15541
15541
|
instanceMode: string(),
|
|
15542
|
+
/**
|
|
15543
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15544
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15545
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15546
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15547
|
+
*/
|
|
15548
|
+
mode: _enum([
|
|
15549
|
+
"standalone",
|
|
15550
|
+
"account",
|
|
15551
|
+
"broker"
|
|
15552
|
+
]),
|
|
15542
15553
|
discoveryMode: string(),
|
|
15543
15554
|
/**
|
|
15544
15555
|
* Which integration-marker cap the addon declared, so the wizard can
|
|
@@ -15534,6 +15534,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15534
15534
|
iconUrl: string().nullable(),
|
|
15535
15535
|
color: string(),
|
|
15536
15536
|
instanceMode: string(),
|
|
15537
|
+
/**
|
|
15538
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15539
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15540
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15541
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15542
|
+
*/
|
|
15543
|
+
mode: _enum([
|
|
15544
|
+
"standalone",
|
|
15545
|
+
"account",
|
|
15546
|
+
"broker"
|
|
15547
|
+
]),
|
|
15537
15548
|
discoveryMode: string(),
|
|
15538
15549
|
/**
|
|
15539
15550
|
* 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-mqtt-broker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "MQTT broker registry addon for CamStack — manages external broker entries + an optional embedded aedes broker. Consumers spin up their own `mqtt.js` clients via the `mqtt-broker` cap.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|