@camstack/addon-advanced-notifier 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 CHANGED
@@ -15464,6 +15464,17 @@ var AvailableIntegrationTypeSchema = object({
15464
15464
  iconUrl: string().nullable(),
15465
15465
  color: string(),
15466
15466
  instanceMode: string(),
15467
+ /**
15468
+ * Integration wizard `mode` (LOCKED MODEL): `standalone` (create
15469
+ * immediately then add devices, no config step/button), `account` (config
15470
+ * step), or `broker` (broker step). Derived server-side by
15471
+ * `getAvailableTypes` when the addon manifest omits an explicit `mode`.
15472
+ */
15473
+ mode: _enum([
15474
+ "standalone",
15475
+ "account",
15476
+ "broker"
15477
+ ]),
15467
15478
  discoveryMode: string(),
15468
15479
  /**
15469
15480
  * Which integration-marker cap the addon declared, so the wizard can
package/dist/addon.mjs CHANGED
@@ -15460,6 +15460,17 @@ var AvailableIntegrationTypeSchema = object({
15460
15460
  iconUrl: string().nullable(),
15461
15461
  color: string(),
15462
15462
  instanceMode: string(),
15463
+ /**
15464
+ * Integration wizard `mode` (LOCKED MODEL): `standalone` (create
15465
+ * immediately then add devices, no config step/button), `account` (config
15466
+ * step), or `broker` (broker step). Derived server-side by
15467
+ * `getAvailableTypes` when the addon manifest omits an explicit `mode`.
15468
+ */
15469
+ mode: _enum([
15470
+ "standalone",
15471
+ "account",
15472
+ "broker"
15473
+ ]),
15463
15474
  discoveryMode: string(),
15464
15475
  /**
15465
15476
  * 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-advanced-notifier",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Rules-based notification engine for CamStack",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",