stentor-models 1.59.54 → 1.59.57
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.
|
@@ -83,6 +83,8 @@ export interface IntentRequest extends BaseRequest, SentimentedRequest {
|
|
|
83
83
|
type: IntentRequestType;
|
|
84
84
|
/**
|
|
85
85
|
* The ID of the matched intent.
|
|
86
|
+
*
|
|
87
|
+
* A value of NLU_RESULT_PLACEHOLDER will send the IntentRequest through an NLU service if one is provided.
|
|
86
88
|
*/
|
|
87
89
|
intentId: string;
|
|
88
90
|
/**
|
|
@@ -11,4 +11,11 @@ export interface RawQueryRequest extends BaseRequest {
|
|
|
11
11
|
* The request from the user
|
|
12
12
|
*/
|
|
13
13
|
rawQuery: string;
|
|
14
|
+
/**
|
|
15
|
+
* The ID of the user's current session.
|
|
16
|
+
*
|
|
17
|
+
* A session is typically defined by the channel is on but it is typically a set
|
|
18
|
+
* of requests and responses that are linked together.
|
|
19
|
+
*/
|
|
20
|
+
sessionId: string;
|
|
14
21
|
}
|
package/lib/Request/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from "./NotificationPermissionRequest";
|
|
|
9
9
|
export * from "./OptionSelectRequest";
|
|
10
10
|
export * from "./PermissionRequest";
|
|
11
11
|
export * from "./PlaybackControlRequest";
|
|
12
|
+
export * from "./RawQueryRequest";
|
|
12
13
|
export * from "./Request";
|
|
13
14
|
export * from "./RequestDependent";
|
|
14
15
|
export * from "./SessionEndedRequest";
|
package/lib/Request/index.js
CHANGED
|
@@ -25,6 +25,7 @@ __exportStar(require("./NotificationPermissionRequest"), exports);
|
|
|
25
25
|
__exportStar(require("./OptionSelectRequest"), exports);
|
|
26
26
|
__exportStar(require("./PermissionRequest"), exports);
|
|
27
27
|
__exportStar(require("./PlaybackControlRequest"), exports);
|
|
28
|
+
__exportStar(require("./RawQueryRequest"), exports);
|
|
28
29
|
__exportStar(require("./Request"), exports);
|
|
29
30
|
__exportStar(require("./RequestDependent"), exports);
|
|
30
31
|
__exportStar(require("./SessionEndedRequest"), exports);
|
package/lib/Request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Request/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,uDAAqC;AACrC,yDAAuC;AACvC,wDAAsC;AACtC,kDAAgC;AAChC,kDAAgC;AAChC,kDAAgC;AAChC,kEAAgD;AAChD,wDAAsC;AACtC,sDAAoC;AACpC,2DAAyC;AACzC,4CAA0B;AAC1B,qDAAmC;AACnC,wDAAsC;AACtC,kDAAgC;AAChC,yDAAuC;AACvC,oDAAkC;AAClC,0CAAwB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Request/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,uDAAqC;AACrC,yDAAuC;AACvC,wDAAsC;AACtC,kDAAgC;AAChC,kDAAgC;AAChC,kDAAgC;AAChC,kEAAgD;AAChD,wDAAsC;AACtC,sDAAoC;AACpC,2DAAyC;AACzC,oDAAkC;AAClC,4CAA0B;AAC1B,qDAAmC;AACnC,wDAAsC;AACtC,kDAAgC;AAChC,yDAAuC;AACvC,oDAAkC;AAClC,0CAAwB"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.59.
|
|
7
|
+
"version": "1.59.57",
|
|
8
8
|
"description": "Models for 📣 stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"typings": "lib/index",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@xapp/patterns": "2.0.2"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "f5668535d932c141aa844f540cd1275c63691660"
|
|
37
37
|
}
|