stentor-models 1.59.13 → 1.59.18

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.
@@ -6,11 +6,11 @@ import { KnowledgeBaseServiceFilters } from "../Services";
6
6
  /**
7
7
  * Slightly smaller intent request without the sessionId and other identifying information. It also doesn't pass through the original raw query.
8
8
  */
9
- export type NLUIntentRequest = Pick<IntentRequest, "type" | "intentId" | "slots" | "matchConfidence" | "knowledgeAnswer" | "knowledgeBaseResult" | "sentimentAnalysis">;
9
+ export type NLUIntentRequest = Pick<IntentRequest, "type" | "intentId" | "slots" | "matchConfidence" | "knowledgeAnswer" | "knowledgeBaseResult" | "sentimentAnalysis" | "attributes">;
10
10
  /**
11
11
  * Slightly smaller input unknown request without a sessionId and other identifying information. It also doesn't pass through the original raw query.
12
12
  */
13
- export type NLUInputUnknownRequest = Pick<InputUnknownRequest, "type" | "intentId" | "knowledgeBaseResult" | "sentimentAnalysis">;
13
+ export type NLUInputUnknownRequest = Pick<InputUnknownRequest, "type" | "intentId" | "knowledgeBaseResult" | "sentimentAnalysis" | "attributes">;
14
14
  /**
15
15
  * Response from the NLU
16
16
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.59.13",
7
+ "version": "1.59.18",
8
8
  "description": "Models for 📣 stentor",
9
9
  "types": "lib/index",
10
10
  "typings": "lib/index",
@@ -22,7 +22,7 @@
22
22
  "@xapp/config": "0.2.3",
23
23
  "rollup": "3.29.4",
24
24
  "tslib": "2.6.2",
25
- "typescript": "5.3.3"
25
+ "typescript": "5.4.2"
26
26
  },
27
27
  "scripts": {
28
28
  "api": "api-extractor run --local",
@@ -33,5 +33,5 @@
33
33
  "dependencies": {
34
34
  "@xapp/patterns": "2.0.2"
35
35
  },
36
- "gitHead": "4a7a7929db0905178dd84b72ab6203f6a9436943"
36
+ "gitHead": "128793cb955ea2f9e9b63e3eb2bb66ef3f9b7d8b"
37
37
  }