@camstack/addon-export-hap 1.1.18 → 1.1.19
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
CHANGED
|
@@ -16674,7 +16674,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16674
16674
|
latestVersion: string().nullable(),
|
|
16675
16675
|
hasUpdate: boolean(),
|
|
16676
16676
|
/** Optional manifest description for the row tooltip. */
|
|
16677
|
-
description: string().optional()
|
|
16677
|
+
description: string().optional(),
|
|
16678
|
+
/**
|
|
16679
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16680
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16681
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16682
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16683
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16684
|
+
*/
|
|
16685
|
+
buildId: string().nullable()
|
|
16678
16686
|
});
|
|
16679
16687
|
var LogStreamEntrySchema = object({
|
|
16680
16688
|
timestamp: string(),
|
|
@@ -16649,7 +16649,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16649
16649
|
latestVersion: string().nullable(),
|
|
16650
16650
|
hasUpdate: boolean(),
|
|
16651
16651
|
/** Optional manifest description for the row tooltip. */
|
|
16652
|
-
description: string().optional()
|
|
16652
|
+
description: string().optional(),
|
|
16653
|
+
/**
|
|
16654
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16655
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16656
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16657
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16658
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16659
|
+
*/
|
|
16660
|
+
buildId: string().nullable()
|
|
16653
16661
|
});
|
|
16654
16662
|
var LogStreamEntrySchema = object({
|
|
16655
16663
|
timestamp: string(),
|
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.19",
|
|
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",
|