stentor-models 1.58.106 → 1.58.108
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.
|
@@ -4,6 +4,7 @@ import { Data } from "../Handler";
|
|
|
4
4
|
import { BaseRequest, SentimentedRequest } from "./Request";
|
|
5
5
|
import { IntentRequestType } from "./Types";
|
|
6
6
|
import { KnowledgeAnswer, KnowledgeBaseResult } from "./KnowledgeBase";
|
|
7
|
+
import { ActiveContext } from "../Response";
|
|
7
8
|
export type RequestSlotValues = string | number | object | DateTimeRange | DateTime | Duration | (string)[];
|
|
8
9
|
export interface RequestAttachment {
|
|
9
10
|
/**
|
|
@@ -103,6 +104,10 @@ export interface IntentRequest extends BaseRequest, SentimentedRequest {
|
|
|
103
104
|
* {@link https://cloud.google.com/dialogflow/es/docs/intents-matching#confidence}
|
|
104
105
|
*/
|
|
105
106
|
matchConfidence?: number;
|
|
107
|
+
/**
|
|
108
|
+
* Current active contexts.
|
|
109
|
+
*/
|
|
110
|
+
activeContexts?: ActiveContext[];
|
|
106
111
|
/**
|
|
107
112
|
* Is the request a barge-in, did the user interupt the assistants response.
|
|
108
113
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.58.
|
|
7
|
+
"version": "1.58.108",
|
|
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.1"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "e40636881924b0610294ef007b35f07682df9d5f"
|
|
37
37
|
}
|