@camstack/addon-export-hap 1.2.27 → 1.2.28
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/hap-export.addon.js +2717 -293
- package/dist/hap-export.addon.mjs +2717 -293
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-hap",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "HomeKit (HAP)
|
|
3
|
+
"version": "1.2.28",
|
|
4
|
+
"description": "HomeKit (HAP) exporter for CamStack devices. Publishes each exposed device as its own HomeKit accessory: cameras and doorbells with SRTP streaming, HomeKit Secure Video, motion, two-way audio, PTZ and battery; switches, lights, locks and sensors through a capability→service table.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
7
7
|
"addon",
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
},
|
|
23
23
|
"./package.json": "./package.json"
|
|
24
24
|
},
|
|
25
|
-
"_entryRenameNote": "camstack.addons[0].entry was renamed export-hap.addon.js -> hap-export.addon.js on 2026-08-12. AddonLoader.importAddonModuleFresh busts Node's ESM cache with `?v=<mtimeMs>`, but `npm pack` stamps EVERY file in a tarball with the fixed mtime 499162500000 — so the module URL is byte-identical for every version of every addon, and hub-main replays the cached module record, including a cached REJECTION, forever. This addon's first load failed for real (Cannot find module '@homebridge/hap-nodejs'); that rejection was then replayed 126 times over ~10.5h and survived a redeploy whose dist provably no longer references hap-nodejs. A new entry filename is a new module URL — the only way to clear it without restarting hub-main. Fix the loader's cache-buster (an mtime is not a version) and this rename can be reverted.",
|
|
26
25
|
"camstack": {
|
|
27
26
|
"displayName": "HomeKit Export",
|
|
28
27
|
"addons": [
|
|
@@ -30,7 +29,7 @@
|
|
|
30
29
|
"id": "export-hap",
|
|
31
30
|
"category": "exports",
|
|
32
31
|
"name": "HomeKit Export",
|
|
33
|
-
"description": "Publishes
|
|
32
|
+
"description": "Publishes exposed CamStack devices to iOS Home over HomeKit (HAP) — cameras, doorbells, switches, lights, locks and sensors, each as its own accessory sharing one setup code.",
|
|
34
33
|
"entry": "./dist/hap-export.addon.js",
|
|
35
34
|
"execution": {
|
|
36
35
|
"placement": "hub-only"
|