@camstack/addon-export-hap 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/export-hap.addon.js +11 -0
- package/dist/export-hap.addon.mjs +11 -0
- package/package.json +1 -1
package/dist/export-hap.addon.js
CHANGED
|
@@ -15541,6 +15541,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15541
15541
|
iconUrl: string().nullable(),
|
|
15542
15542
|
color: string(),
|
|
15543
15543
|
instanceMode: string(),
|
|
15544
|
+
/**
|
|
15545
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15546
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15547
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15548
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15549
|
+
*/
|
|
15550
|
+
mode: _enum([
|
|
15551
|
+
"standalone",
|
|
15552
|
+
"account",
|
|
15553
|
+
"broker"
|
|
15554
|
+
]),
|
|
15544
15555
|
discoveryMode: string(),
|
|
15545
15556
|
/**
|
|
15546
15557
|
* Which integration-marker cap the addon declared, so the wizard can
|
|
@@ -15516,6 +15516,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15516
15516
|
iconUrl: string().nullable(),
|
|
15517
15517
|
color: string(),
|
|
15518
15518
|
instanceMode: string(),
|
|
15519
|
+
/**
|
|
15520
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15521
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15522
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15523
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15524
|
+
*/
|
|
15525
|
+
mode: _enum([
|
|
15526
|
+
"standalone",
|
|
15527
|
+
"account",
|
|
15528
|
+
"broker"
|
|
15529
|
+
]),
|
|
15519
15530
|
discoveryMode: string(),
|
|
15520
15531
|
/**
|
|
15521
15532
|
* 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-export-hap",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "HomeKit (HAP) bridge exporter for CamStack devices. Publishes a bridged accessory per exposed device — MotionSensor in this MVP; Camera/Doorbell/Switch/Light follow.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|