stentor-models 1.59.30 → 1.59.32

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.
@@ -88,9 +88,15 @@ export interface KnowledgeBaseSuggested extends KnowledgeBaseDocument {
88
88
  */
89
89
  export interface KnowledgeBaseFAQ {
90
90
  /**
91
- * The question
91
+ * The question that is the closest match
92
92
  */
93
93
  question: string;
94
+ /**
95
+ * Optional, some FAQ based systems can return multiple questions that match to the same answer. This will be populated if they exist.
96
+ *
97
+ * There most likely be a duplicate of the question field.
98
+ */
99
+ questions?: string[];
94
100
  /**
95
101
  * URI, either the source or a location where more information can be found.
96
102
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.59.30",
7
+ "version": "1.59.32",
8
8
  "description": "Models for 📣 stentor",
9
9
  "types": "lib/index",
10
10
  "typings": "lib/index",
@@ -17,7 +17,7 @@
17
17
  "node": "^12 || ^14 || ^16 || ^18 || ^20.0.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@microsoft/api-extractor": "7.36.4",
20
+ "@microsoft/api-extractor": "7.43.0",
21
21
  "@rollup/plugin-typescript": "11.1.6",
22
22
  "@xapp/config": "0.2.3",
23
23
  "rollup": "3.29.4",
@@ -33,5 +33,5 @@
33
33
  "dependencies": {
34
34
  "@xapp/patterns": "2.0.2"
35
35
  },
36
- "gitHead": "05bf370da4a79021ee287716651295bd98c18f30"
36
+ "gitHead": "ce119ad29f21cd3a8b911111b40c7f6aff546ce1"
37
37
  }