@xapp/stentor-service-lex 1.58.31 → 1.60.0
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/lib/LexService.d.ts +0 -1
- package/lib/LexV2/models/LexRequestModel.js +6 -6
- package/lib/LexV2/models/LexRequestModel.js.map +1 -1
- package/lib/LexV2/translators/utils.js +1 -2
- package/lib/LexV2/translators/utils.js.map +1 -1
- package/lib/LexV2/utils/ConvertName.js +9 -9
- package/lib/LexV2/utils/ConvertName.js.map +1 -1
- package/lib/LexV2/utils/CreatePostFix.js +1 -2
- package/lib/LexV2/utils/CreatePostFix.js.map +1 -1
- package/lib/LexV2/utils/slugForLex.js +1 -2
- package/lib/LexV2/utils/slugForLex.js.map +1 -1
- package/package.json +12 -12
package/lib/LexService.d.ts
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.LEX_V2_INTENT_SUFFIX = void 0;
|
|
4
|
+
exports.modDate = modDate;
|
|
5
|
+
exports.unModDate = unModDate;
|
|
6
|
+
exports.adopt = adopt;
|
|
7
|
+
exports.tagIntent = tagIntent;
|
|
8
|
+
exports.untagIntent = untagIntent;
|
|
4
9
|
exports.LEX_V2_INTENT_SUFFIX = "_intent";
|
|
5
10
|
function modDate(request, lastUpdatedDateTime) {
|
|
6
11
|
if (!lastUpdatedDateTime) {
|
|
@@ -8,24 +13,19 @@ function modDate(request, lastUpdatedDateTime) {
|
|
|
8
13
|
}
|
|
9
14
|
return Object.assign(request, { lastUpdatedDateTime });
|
|
10
15
|
}
|
|
11
|
-
exports.modDate = modDate;
|
|
12
16
|
function unModDate(request) {
|
|
13
17
|
return Object.assign(Object.assign({}, request), { lastUpdatedDateTime: undefined });
|
|
14
18
|
}
|
|
15
|
-
exports.unModDate = unModDate;
|
|
16
19
|
function adopt(o, parentId) {
|
|
17
20
|
return Object.assign(o, { parentId });
|
|
18
21
|
}
|
|
19
|
-
exports.adopt = adopt;
|
|
20
22
|
function tagIntent(intent) {
|
|
21
23
|
return `${intent}${exports.LEX_V2_INTENT_SUFFIX}`;
|
|
22
24
|
}
|
|
23
|
-
exports.tagIntent = tagIntent;
|
|
24
25
|
function untagIntent(intent) {
|
|
25
26
|
if (!intent || !intent.endsWith(exports.LEX_V2_INTENT_SUFFIX)) {
|
|
26
27
|
return intent;
|
|
27
28
|
}
|
|
28
29
|
return intent.substring(0, intent.length - exports.LEX_V2_INTENT_SUFFIX.length);
|
|
29
30
|
}
|
|
30
|
-
exports.untagIntent = untagIntent;
|
|
31
31
|
//# sourceMappingURL=LexRequestModel.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LexRequestModel.js","sourceRoot":"","sources":["../../../src/LexV2/models/LexRequestModel.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"LexRequestModel.js","sourceRoot":"","sources":["../../../src/LexV2/models/LexRequestModel.ts"],"names":[],"mappings":";;;AAmEA,0BAMC;AAED,8BAEC;AAMD,sBAEC;AAED,8BAEC;AAED,kCAMC;AAjFY,QAAA,oBAAoB,GAAG,SAAS,CAAC;AAmD9C,SAAgB,OAAO,CAAI,OAAU,EAAE,mBAA0B;IAC7D,IAAI,CAAC,mBAAmB,EAAE,CAAC;QACvB,mBAAmB,GAAG,IAAI,IAAI,EAAE,CAAC,CAAC,MAAM;IAC5C,CAAC;IAED,OAAO,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE,EAAE,mBAAmB,EAAE,CAAC,CAAC;AAC3D,CAAC;AAED,SAAgB,SAAS,CAAI,OAAoB;IAC7C,uCAAY,OAAO,KAAE,mBAAmB,EAAE,SAAS,IAAG;AAC1D,CAAC;AAMD,SAAgB,KAAK,CAAI,CAAI,EAAE,QAAiB;IAC5C,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,QAAQ,EAAE,CAAC,CAAC;AAC1C,CAAC;AAED,SAAgB,SAAS,CAAC,MAAc;IACpC,OAAO,GAAG,MAAM,GAAG,4BAAoB,EAAE,CAAC;AAC9C,CAAC;AAED,SAAgB,WAAW,CAAC,MAAc;IACtC,IAAI,CAAC,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,4BAAoB,CAAC,EAAE,CAAC;QACpD,OAAO,MAAM,CAAC;IAClB,CAAC;IAED,OAAO,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,4BAAoB,CAAC,MAAM,CAAC,CAAC;AAC5E,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*! Copyright (c) 2020, XAPPmedia */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.stringEqual =
|
|
4
|
+
exports.stringEqual = stringEqual;
|
|
5
5
|
/**
|
|
6
6
|
* Null safe comparison (null == undefined)
|
|
7
7
|
*
|
|
@@ -11,5 +11,4 @@ exports.stringEqual = void 0;
|
|
|
11
11
|
function stringEqual(s1, s2) {
|
|
12
12
|
return (s1 || "") === (s2 || "");
|
|
13
13
|
}
|
|
14
|
-
exports.stringEqual = stringEqual;
|
|
15
14
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/LexV2/translators/utils.ts"],"names":[],"mappings":";AAAA,oCAAoC
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/LexV2/translators/utils.ts"],"names":[],"mappings":";AAAA,oCAAoC;;AAQpC,kCAEC;AARD;;;;;GAKG;AACH,SAAgB,WAAW,CAAC,EAAU,EAAE,EAAU;IAC9C,OAAO,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;AACrC,CAAC"}
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*! Copyright (c) 2020, XAPPmedia */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.
|
|
4
|
+
exports.MAX_LEX_BOT_SLOT_TYPE_LENGTH = exports.MIN_LEX_BOT_SLOT_TYPE_LENGTH = exports.MAX_LEX_BOT_INTENT_NAME_LENGTH = exports.MIN_LEX_BOT_INTENT_NAME_LENGTH = exports.MAX_LEX_BOT_NAME_LENGTH = exports.MIN_LEX_BOT_NAME_LENGTH = void 0;
|
|
5
|
+
exports.convertLexBotName = convertLexBotName;
|
|
6
|
+
exports.convertLexIntentName = convertLexIntentName;
|
|
7
|
+
exports.convertLexSlotTypeName = convertLexSlotTypeName;
|
|
8
|
+
exports.convertName = convertName;
|
|
9
|
+
exports.removeEmoji = removeEmoji;
|
|
10
|
+
exports.replaceNumbers = replaceNumbers;
|
|
11
|
+
exports.growUntil = growUntil;
|
|
12
|
+
exports.cleanUtterance = cleanUtterance;
|
|
5
13
|
exports.MIN_LEX_BOT_NAME_LENGTH = 2;
|
|
6
14
|
exports.MAX_LEX_BOT_NAME_LENGTH = 50;
|
|
7
15
|
exports.MIN_LEX_BOT_INTENT_NAME_LENGTH = 1;
|
|
@@ -18,7 +26,6 @@ exports.MAX_LEX_BOT_SLOT_TYPE_LENGTH = 100;
|
|
|
18
26
|
function convertLexBotName(name) {
|
|
19
27
|
return convertName(name, exports.MIN_LEX_BOT_NAME_LENGTH, exports.MAX_LEX_BOT_NAME_LENGTH);
|
|
20
28
|
}
|
|
21
|
-
exports.convertLexBotName = convertLexBotName;
|
|
22
29
|
/**
|
|
23
30
|
* converts the name of a lex bot intent to the standards that lex allows.
|
|
24
31
|
*
|
|
@@ -29,7 +36,6 @@ exports.convertLexBotName = convertLexBotName;
|
|
|
29
36
|
function convertLexIntentName(name) {
|
|
30
37
|
return convertName(name, exports.MIN_LEX_BOT_INTENT_NAME_LENGTH, exports.MAX_LEX_BOT_INTENT_NAME_LENGTH);
|
|
31
38
|
}
|
|
32
|
-
exports.convertLexIntentName = convertLexIntentName;
|
|
33
39
|
/**
|
|
34
40
|
* Converts the name of the lex bot slot type to the standards that lex allows.
|
|
35
41
|
*
|
|
@@ -40,7 +46,6 @@ exports.convertLexIntentName = convertLexIntentName;
|
|
|
40
46
|
function convertLexSlotTypeName(name) {
|
|
41
47
|
return convertName(name, exports.MIN_LEX_BOT_SLOT_TYPE_LENGTH, exports.MAX_LEX_BOT_SLOT_TYPE_LENGTH);
|
|
42
48
|
}
|
|
43
|
-
exports.convertLexSlotTypeName = convertLexSlotTypeName;
|
|
44
49
|
/**
|
|
45
50
|
* Converts the name to a lex allowed name.
|
|
46
51
|
*
|
|
@@ -57,7 +62,6 @@ function convertName(name = "", minChars = 0, maxChars = Number.MAX_SAFE_INTEGER
|
|
|
57
62
|
newName = growUntil(minChars, newName, "_");
|
|
58
63
|
return newName.slice(0, maxChars);
|
|
59
64
|
}
|
|
60
|
-
exports.convertName = convertName;
|
|
61
65
|
/**
|
|
62
66
|
* A regex pattern which can be used to match all emoji.
|
|
63
67
|
*
|
|
@@ -73,7 +77,6 @@ const emojiPattern = /(\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83
|
|
|
73
77
|
function removeEmoji(stringValue) {
|
|
74
78
|
return stringValue.replace(emojiPattern, "");
|
|
75
79
|
}
|
|
76
|
-
exports.removeEmoji = removeEmoji;
|
|
77
80
|
const nameMap = {
|
|
78
81
|
"1": "a",
|
|
79
82
|
"2": "b",
|
|
@@ -100,7 +103,6 @@ function replaceNumbers(name = "") {
|
|
|
100
103
|
}
|
|
101
104
|
return returnValue;
|
|
102
105
|
}
|
|
103
|
-
exports.replaceNumbers = replaceNumbers;
|
|
104
106
|
/**
|
|
105
107
|
* Appends characters to a string until it's finished length.
|
|
106
108
|
*
|
|
@@ -118,7 +120,6 @@ function growUntil(length, name = "", prefix = "") {
|
|
|
118
120
|
}
|
|
119
121
|
return name.length === 0 ? postFix : postFix.length === 0 ? name : name + prefix + postFix;
|
|
120
122
|
}
|
|
121
|
-
exports.growUntil = growUntil;
|
|
122
123
|
/**
|
|
123
124
|
* Try to please the LEX Gods. This function will grow...
|
|
124
125
|
*
|
|
@@ -133,5 +134,4 @@ function cleanUtterance(value) {
|
|
|
133
134
|
finalValue = finalValue.replace("}?", "}");
|
|
134
135
|
return finalValue;
|
|
135
136
|
}
|
|
136
|
-
exports.cleanUtterance = cleanUtterance;
|
|
137
137
|
//# sourceMappingURL=ConvertName.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConvertName.js","sourceRoot":"","sources":["../../../src/LexV2/utils/ConvertName.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;
|
|
1
|
+
{"version":3,"file":"ConvertName.js","sourceRoot":"","sources":["../../../src/LexV2/utils/ConvertName.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createPostFix =
|
|
3
|
+
exports.createPostFix = createPostFix;
|
|
4
4
|
/*! Copyright (c) 2020, XAPPmedia */
|
|
5
5
|
const stentor_utils_1 = require("stentor-utils");
|
|
6
6
|
const ConvertName_1 = require("./ConvertName");
|
|
@@ -16,5 +16,4 @@ const ConvertName_1 = require("./ConvertName");
|
|
|
16
16
|
function createPostFix(app, postFixSize = 4) {
|
|
17
17
|
return (0, ConvertName_1.convertName)(`_${(0, stentor_utils_1.md5)(app.appId)}`.slice(0, postFixSize));
|
|
18
18
|
}
|
|
19
|
-
exports.createPostFix = createPostFix;
|
|
20
19
|
//# sourceMappingURL=CreatePostFix.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreatePostFix.js","sourceRoot":"","sources":["../../../src/LexV2/utils/CreatePostFix.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CreatePostFix.js","sourceRoot":"","sources":["../../../src/LexV2/utils/CreatePostFix.ts"],"names":[],"mappings":";;AAaA,sCAEC;AAfD,oCAAoC;AACpC,iDAAoC;AACpC,+CAA4C;AAE5C;;;;;;;;GAQG;AACH,SAAgB,aAAa,CAAC,GAAsB,EAAE,cAAsB,CAAC;IACzE,OAAO,IAAA,yBAAW,EAAC,IAAI,IAAA,mBAAG,EAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC;AACnE,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*! Copyright (c) 2020, XAPPmedia */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.slugForLex =
|
|
4
|
+
exports.slugForLex = slugForLex;
|
|
5
5
|
/**
|
|
6
6
|
* Generates a name that is acceptable for LEX.
|
|
7
7
|
*
|
|
@@ -20,5 +20,4 @@ function slugForLex(name) {
|
|
|
20
20
|
name = name.replace(/_{2,}/g, "_");
|
|
21
21
|
return name;
|
|
22
22
|
}
|
|
23
|
-
exports.slugForLex = slugForLex;
|
|
24
23
|
//# sourceMappingURL=slugForLex.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slugForLex.js","sourceRoot":"","sources":["../../../src/LexV2/utils/slugForLex.ts"],"names":[],"mappings":";AAAA,oCAAoC
|
|
1
|
+
{"version":3,"file":"slugForLex.js","sourceRoot":"","sources":["../../../src/LexV2/utils/slugForLex.ts"],"names":[],"mappings":";AAAA,oCAAoC;;AASpC,gCAYC;AAnBD;;;;;;GAMG;AACH,SAAgB,UAAU,CAAC,IAAY;IACnC,4CAA4C;IAC5C,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,EAAE,CAAC,CAAC;IACzC,mBAAmB;IACnB,IAAI,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC;IACnB,6CAA6C;IAC7C,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC;IACnC,yCAAyC;IACzC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC;IAEnC,OAAO,IAAI,CAAC;AAEhB,CAAC"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.60.0",
|
|
8
8
|
"description": "Service to communicate with AWS LEX for :mega: stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -21,21 +21,21 @@
|
|
|
21
21
|
"@types/sinon-chai": "3.2.12",
|
|
22
22
|
"@types/uuid": "9.0.8",
|
|
23
23
|
"@xapp/config": "0.2.3",
|
|
24
|
-
"aws-sdk": "2.
|
|
24
|
+
"aws-sdk": "2.1650.0",
|
|
25
25
|
"chai": "4.4.1",
|
|
26
|
-
"mocha": "10.
|
|
26
|
+
"mocha": "10.5.2",
|
|
27
27
|
"sinon": "18.0.0",
|
|
28
28
|
"sinon-chai": "3.7.0",
|
|
29
|
-
"stentor-constants": "1.59.
|
|
30
|
-
"stentor-handler": "1.59.
|
|
31
|
-
"stentor-history": "1.59.
|
|
32
|
-
"stentor-media": "1.59.
|
|
33
|
-
"stentor-models": "1.59.
|
|
34
|
-
"typescript": "5.
|
|
29
|
+
"stentor-constants": "1.59.73",
|
|
30
|
+
"stentor-handler": "1.59.74",
|
|
31
|
+
"stentor-history": "1.59.73",
|
|
32
|
+
"stentor-media": "1.59.73",
|
|
33
|
+
"stentor-models": "1.59.75",
|
|
34
|
+
"typescript": "5.5.2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xapp/stentor-alexa-lib": "1.
|
|
38
|
-
"@xapp/stentor-lex-lib": "1.
|
|
37
|
+
"@xapp/stentor-alexa-lib": "1.60.0",
|
|
38
|
+
"@xapp/stentor-lex-lib": "1.60.0",
|
|
39
39
|
"lodash.merge": "4.6.2",
|
|
40
40
|
"uuid": "10.0.0"
|
|
41
41
|
},
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"clean": "rm -rf ./lib/*",
|
|
53
53
|
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "33641e97bc24c6670cba8c94ae7563c1c2445786"
|
|
56
56
|
}
|