stentor-models 1.59.9 → 1.59.13
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/App/AppStatus.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export type AppStatusLiveAndRequiresAttention = "Live: Requires Attention";
|
|
|
31
31
|
export declare const APP_STATUS_LIVE_AND_REQUIRES_ATTENTION: AppStatusLiveAndRequiresAttention;
|
|
32
32
|
export type AppStatusUninstalled = "Uninstalled";
|
|
33
33
|
export declare const APP_STATUS_UNINSTALLED: AppStatusUninstalled;
|
|
34
|
-
export type AppStatusType = AppStatusUnknown | AppStatusIncomplete | AppStatusSubmittedForReview | AppStatusUnderReview | AppStatusInCertification | AppStatusRequiresPublish | AppStatusLive | AppStatusRequiresAttention | AppStatusArchived | AppStatusLiveRequiresCert | AppStatusLiveInCert | AppStatusLiveAndRequiresPublish | AppStatusLiveAndRequiresAttention | AppStatusUninstalled;
|
|
34
|
+
export type AppStatusType = AppStatusUnknown | AppStatusIncomplete | AppStatusSubmittedForReview | AppStatusUnderReview | AppStatusInCertification | AppStatusRequiresPublish | AppStatusLive | AppStatusRequiresAttention | AppStatusArchived | AppStatusLiveRequiresCert | AppStatusLiveInCert | AppStatusLiveAndRequiresPublish | AppStatusLiveAndRequiresAttention | AppStatusCancelled | AppStatusUninstalled;
|
|
35
35
|
/**
|
|
36
36
|
* The status of the App
|
|
37
37
|
*/
|
package/lib/NLU/NLUService.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/*! Copyright (c) 2019, XAPPmedia */
|
|
2
|
+
import { Message } from "../Message";
|
|
2
3
|
import { IntentRequest, InputUnknownRequest } from "../Request";
|
|
3
4
|
import { ActiveContext } from "../Response";
|
|
4
5
|
import { KnowledgeBaseServiceFilters } from "../Services";
|
|
@@ -44,6 +45,10 @@ export interface NLURequestProps {
|
|
|
44
45
|
* Optional request attributes.
|
|
45
46
|
*/
|
|
46
47
|
requestAttributes?: Record<string, string>;
|
|
48
|
+
/**
|
|
49
|
+
* Current session transcript
|
|
50
|
+
*/
|
|
51
|
+
transcript?: Message[];
|
|
47
52
|
/**
|
|
48
53
|
* Optional filters for knowledge base service calls
|
|
49
54
|
*/
|
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.13",
|
|
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": "4a7a7929db0905178dd84b72ab6203f6a9436943"
|
|
37
37
|
}
|