@camstack/addon-export-alexa 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.
|
@@ -16851,7 +16851,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16851
16851
|
latestVersion: string().nullable(),
|
|
16852
16852
|
hasUpdate: boolean(),
|
|
16853
16853
|
/** Optional manifest description for the row tooltip. */
|
|
16854
|
-
description: string().optional()
|
|
16854
|
+
description: string().optional(),
|
|
16855
|
+
/**
|
|
16856
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16857
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16858
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16859
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16860
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16861
|
+
*/
|
|
16862
|
+
buildId: string().nullable()
|
|
16855
16863
|
});
|
|
16856
16864
|
var LogStreamEntrySchema = object({
|
|
16857
16865
|
timestamp: string(),
|
|
@@ -16825,7 +16825,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16825
16825
|
latestVersion: string().nullable(),
|
|
16826
16826
|
hasUpdate: boolean(),
|
|
16827
16827
|
/** Optional manifest description for the row tooltip. */
|
|
16828
|
-
description: string().optional()
|
|
16828
|
+
description: string().optional(),
|
|
16829
|
+
/**
|
|
16830
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16831
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16832
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16833
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16834
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16835
|
+
*/
|
|
16836
|
+
buildId: string().nullable()
|
|
16829
16837
|
});
|
|
16830
16838
|
var LogStreamEntrySchema = object({
|
|
16831
16839
|
timestamp: string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-alexa",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.19",
|
|
4
4
|
"description": "Alexa Smart Home Skill export — hub-side OAuth provider + directive handler. The companion AWS Lambda forwards Alexa directives to this addon's /addon/export-alexa/directive endpoint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|