@xapp/stentor-lex-lib 1.43.35 → 1.43.38
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.
|
@@ -3,9 +3,9 @@ import { Translator } from "@xapp/patterns";
|
|
|
3
3
|
import { Entity, Handler, Intent } from "stentor-models";
|
|
4
4
|
import { LexImportExportResource, LexImportExportBot } from "../models";
|
|
5
5
|
import { BotApp } from "./types";
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
6
|
+
export type IDlessHandler = Omit<Handler, "appId" | "organizationId">;
|
|
7
|
+
export type IDlessIntent = Omit<Intent, "appId" | "organizationId">;
|
|
8
|
+
export type IDlessEntity = Omit<Entity, "appId" | "entityId">;
|
|
9
9
|
export interface TranslatedBot {
|
|
10
10
|
app: BotApp;
|
|
11
11
|
intents: IDlessIntent[];
|
package/lib/types.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! Copyright (c) 2019, XAPPmedia */
|
|
2
|
-
export
|
|
2
|
+
export type LexConnectPlatform = "lex-connect";
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.43.
|
|
7
|
+
"version": "1.43.38",
|
|
8
8
|
"description": "Shared AWS LEX Library for :mega: stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"chai": "4.3.7",
|
|
23
23
|
"mocha": "10.2.0",
|
|
24
24
|
"sinon": "14.0.2",
|
|
25
|
-
"stentor-interaction-model": "1.57.
|
|
26
|
-
"stentor-locales": "1.57.
|
|
27
|
-
"stentor-models": "1.57.
|
|
28
|
-
"stentor-request": "1.57.
|
|
29
|
-
"stentor-utils": "1.57.
|
|
25
|
+
"stentor-interaction-model": "1.57.39",
|
|
26
|
+
"stentor-locales": "1.57.39",
|
|
27
|
+
"stentor-models": "1.57.39",
|
|
28
|
+
"stentor-request": "1.57.39",
|
|
29
|
+
"stentor-utils": "1.57.39",
|
|
30
30
|
"ts-node": "10.9.1",
|
|
31
|
-
"typescript": "4.
|
|
31
|
+
"typescript": "4.9.4"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@xapp/stentor-alexa-lib": "1.43.
|
|
34
|
+
"@xapp/stentor-alexa-lib": "1.43.38",
|
|
35
35
|
"lodash.merge": "4.6.2"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"clean": "rm -rf ./lib/*",
|
|
47
47
|
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "20cf1f5889cc4a3ac7531b91178bc1ba63e1decd"
|
|
50
50
|
}
|