ultracart_rest_api_v2_typescript 4.1.148 → 4.1.150

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/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # UltraCart Typescript SDK
2
- ## ultracart_rest_api_v2_typescript@4.1.148
2
+ ## ultracart_rest_api_v2_typescript@4.1.150
3
3
 
4
4
  Every API method call has a sample for every language SDK. See https://github.com/UltraCart/sdk_samples
5
5
 
6
6
  Installation
7
7
 
8
8
  ```
9
- npm install ultracart_rest_api_v2_typescript@4.1.148 --save
9
+ npm install ultracart_rest_api_v2_typescript@4.1.150 --save
10
10
  ```
11
11
 
12
12
  ```typescript
@@ -85,6 +85,8 @@ Not every change is committed to every SDK.
85
85
 
86
86
  | Version | Date | Comments |
87
87
  | --: | :-: | --- |
88
+ | 4.1.150 | 09/04/2026 | conversations - add ai agent capabilities |
89
+ | 4.1.149 | 09/04/2026 | conversations - added ai agent capabilities |
88
90
  | 4.1.148 | 09/04/2026 | conversations - added ai agent capabilities |
89
91
  | 4.1.147 | 09/04/2026 | sfvb - internal testing |
90
92
  | 4.1.146 | 09/03/2026 | sfvb - internal testing |
@@ -37,10 +37,10 @@ export interface ConversationVirtualAgentCapabilities {
37
37
  cancel_subscription?: boolean;
38
38
  /**
39
39
  * The custom collections this Agent is allowed to search. Empty means none, even when access_custom_collections is true.
40
- * @type {object}
40
+ * @type {Array<number>}
41
41
  * @memberof ConversationVirtualAgentCapabilities
42
42
  */
43
- custom_collection_oids?: object;
43
+ custom_collection_oids?: Array<number>;
44
44
  /**
45
45
  * Read only. All of the merchant's custom collections, to populate the selection list for custom_collection_oids. Changes here are ignored.
46
46
  * @type {Array<ConversationVirtualAgentCapabilityCustomCollection>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.1.148",
3
+ "version": "4.1.150",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -52,10 +52,10 @@ export interface ConversationVirtualAgentCapabilities {
52
52
  cancel_subscription?: boolean;
53
53
  /**
54
54
  * The custom collections this Agent is allowed to search. Empty means none, even when access_custom_collections is true.
55
- * @type {object}
55
+ * @type {Array<number>}
56
56
  * @memberof ConversationVirtualAgentCapabilities
57
57
  */
58
- custom_collection_oids?: object;
58
+ custom_collection_oids?: Array<number>;
59
59
  /**
60
60
  * Read only. All of the merchant's custom collections, to populate the selection list for custom_collection_oids. Changes here are ignored.
61
61
  * @type {Array<ConversationVirtualAgentCapabilityCustomCollection>}