@camstack/addon-provider-tuya 0.1.4 → 0.1.6
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 +9 -1
- package/dist/addon.mjs +9 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19571,7 +19571,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19571
19571
|
latestVersion: string().nullable(),
|
|
19572
19572
|
hasUpdate: boolean(),
|
|
19573
19573
|
/** Optional manifest description for the row tooltip. */
|
|
19574
|
-
description: string().optional()
|
|
19574
|
+
description: string().optional(),
|
|
19575
|
+
/**
|
|
19576
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19577
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19578
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19579
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19580
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19581
|
+
*/
|
|
19582
|
+
buildId: string().nullable()
|
|
19575
19583
|
});
|
|
19576
19584
|
var LogStreamEntrySchema = object({
|
|
19577
19585
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19570,7 +19570,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19570
19570
|
latestVersion: string().nullable(),
|
|
19571
19571
|
hasUpdate: boolean(),
|
|
19572
19572
|
/** Optional manifest description for the row tooltip. */
|
|
19573
|
-
description: string().optional()
|
|
19573
|
+
description: string().optional(),
|
|
19574
|
+
/**
|
|
19575
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19576
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19577
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19578
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19579
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19580
|
+
*/
|
|
19581
|
+
buildId: string().nullable()
|
|
19574
19582
|
});
|
|
19575
19583
|
var LogStreamEntrySchema = object({
|
|
19576
19584
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-tuya",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Tuya / Smart Life device-provider addon for CamStack — account-onboarded (Tuya IoT cloud fetch of device localKeys) + LOCAL DP control via the @apocaliss92/nodetuya encrypted-LAN client, exposing switch / water-heater-family kettle entities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|