@camstack/addon-import-alexa 0.1.16 → 0.1.17
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
|
@@ -19791,7 +19791,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19791
19791
|
latestVersion: string().nullable(),
|
|
19792
19792
|
hasUpdate: boolean(),
|
|
19793
19793
|
/** Optional manifest description for the row tooltip. */
|
|
19794
|
-
description: string().optional()
|
|
19794
|
+
description: string().optional(),
|
|
19795
|
+
/**
|
|
19796
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19797
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19798
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19799
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19800
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19801
|
+
*/
|
|
19802
|
+
buildId: string().nullable()
|
|
19795
19803
|
});
|
|
19796
19804
|
var LogStreamEntrySchema = object({
|
|
19797
19805
|
timestamp: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -19791,7 +19791,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
19791
19791
|
latestVersion: string().nullable(),
|
|
19792
19792
|
hasUpdate: boolean(),
|
|
19793
19793
|
/** Optional manifest description for the row tooltip. */
|
|
19794
|
-
description: string().optional()
|
|
19794
|
+
description: string().optional(),
|
|
19795
|
+
/**
|
|
19796
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
19797
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
19798
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
19799
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
19800
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
19801
|
+
*/
|
|
19802
|
+
buildId: string().nullable()
|
|
19795
19803
|
});
|
|
19796
19804
|
var LogStreamEntrySchema = object({
|
|
19797
19805
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-import-alexa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Alexa device-import provider for CamStack — imports the smart-home devices in a user's Alexa account via the unofficial alexa-remote2 cookie/token client (the inverse of the Alexa exporter)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|