@cimulate/copilot-sdk 3.13.0 → 3.14.0
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/dist/types/model/AskCim.d.ts +1 -0
- package/dist/types/model/AskCimSuggestions.d.ts +3 -0
- package/dist/types/model/CopilotBrowse.d.ts +1 -0
- package/dist/types/model/CopilotBrowseSuggestions.d.ts +5 -0
- package/dist/types/model/CopilotSearch.d.ts +1 -0
- package/dist/types/model/CopilotSearchSuggestions.d.ts +5 -0
- package/dist/types/model/ProductView.d.ts +1 -0
- package/dist/types/model/ProductViewSuggestions.d.ts +4 -0
- package/dist/types/model/index.d.ts +4 -0
- package/package.json +4 -1
- package/src/model/AskCim.ts +1 -0
- package/src/model/AskCimSuggestions.ts +5 -0
- package/src/model/CopilotBrowse.ts +1 -0
- package/src/model/CopilotBrowseSuggestions.ts +5 -0
- package/src/model/CopilotSearch.ts +1 -0
- package/src/model/CopilotSearchSuggestions.ts +5 -0
- package/src/model/ProductView.ts +1 -0
- package/src/model/ProductViewSuggestions.ts +5 -0
- package/src/model/index.ts +4 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './AskCim';
|
|
2
2
|
export * from './AskCimAck';
|
|
3
|
+
export * from './AskCimSuggestions';
|
|
3
4
|
export * from './Attachments';
|
|
4
5
|
export * from './BrowseParams';
|
|
5
6
|
export * from './Cancel';
|
|
@@ -18,11 +19,13 @@ export * from './CopilotAPIEvent';
|
|
|
18
19
|
export * from './CopilotBrowse';
|
|
19
20
|
export * from './CopilotBrowseAck';
|
|
20
21
|
export * from './CopilotBrowseSuggestion';
|
|
22
|
+
export * from './CopilotBrowseSuggestions';
|
|
21
23
|
export * from './CopilotError';
|
|
22
24
|
export * from './CopilotEvent';
|
|
23
25
|
export * from './CopilotSearch';
|
|
24
26
|
export * from './CopilotSearchAck';
|
|
25
27
|
export * from './CopilotSearchSuggestion';
|
|
28
|
+
export * from './CopilotSearchSuggestions';
|
|
26
29
|
export * from './customization';
|
|
27
30
|
export * from './DisplayProducts';
|
|
28
31
|
export * from './Done';
|
|
@@ -38,6 +41,7 @@ export * from './PartialInquiry';
|
|
|
38
41
|
export * from './ProductView';
|
|
39
42
|
export * from './ProductViewAck';
|
|
40
43
|
export * from './ProductViewSuggestion';
|
|
44
|
+
export * from './ProductViewSuggestions';
|
|
41
45
|
export * from './Progress';
|
|
42
46
|
export * from './ProgressToolKwargs';
|
|
43
47
|
export * from './RefinedBrowse';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cimulate/copilot-sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0",
|
|
4
4
|
"description": "A lightweight API client SDK for Cimulate Copilot",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**",
|
|
@@ -53,5 +53,8 @@
|
|
|
53
53
|
"webpack": "^5.97.1",
|
|
54
54
|
"webpack-cli": "^6.0.1",
|
|
55
55
|
"webpack-node-externals": "^3.0.0"
|
|
56
|
+
},
|
|
57
|
+
"overrides": {
|
|
58
|
+
"brace-expansion": "~2.0.2"
|
|
56
59
|
}
|
|
57
60
|
}
|
package/src/model/AskCim.ts
CHANGED
package/src/model/ProductView.ts
CHANGED
package/src/model/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './AskCim';
|
|
2
2
|
export * from './AskCimAck';
|
|
3
|
+
export * from './AskCimSuggestions';
|
|
3
4
|
export * from './Attachments';
|
|
4
5
|
export * from './BrowseParams';
|
|
5
6
|
export * from './Cancel';
|
|
@@ -18,11 +19,13 @@ export * from './CopilotAPIEvent';
|
|
|
18
19
|
export * from './CopilotBrowse';
|
|
19
20
|
export * from './CopilotBrowseAck';
|
|
20
21
|
export * from './CopilotBrowseSuggestion';
|
|
22
|
+
export * from './CopilotBrowseSuggestions';
|
|
21
23
|
export * from './CopilotError';
|
|
22
24
|
export * from './CopilotEvent';
|
|
23
25
|
export * from './CopilotSearch';
|
|
24
26
|
export * from './CopilotSearchAck';
|
|
25
27
|
export * from './CopilotSearchSuggestion';
|
|
28
|
+
export * from './CopilotSearchSuggestions';
|
|
26
29
|
export * from './customization';
|
|
27
30
|
export * from './DisplayProducts';
|
|
28
31
|
export * from './Done';
|
|
@@ -38,6 +41,7 @@ export * from './PartialInquiry';
|
|
|
38
41
|
export * from './ProductView';
|
|
39
42
|
export * from './ProductViewAck';
|
|
40
43
|
export * from './ProductViewSuggestion';
|
|
44
|
+
export * from './ProductViewSuggestions';
|
|
41
45
|
export * from './Progress';
|
|
42
46
|
export * from './ProgressToolKwargs';
|
|
43
47
|
export * from './RefinedBrowse';
|