ultracart_rest_api_v2_typescript 3.11.35 → 3.11.36
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 +3 -2
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.11.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.11.36
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@3.11.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.11.36 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.11.36 | 12/22/2025 | conversation - agent auth worker token v2 |
|
|
57
58
|
| 3.11.35 | 12/02/2025 | caching option added to getCustomers, created new method searchCustomers |
|
|
58
59
|
| 3.11.34 | 12/02/2025 | coupons - added optional free specific shipping method to two coupons |
|
|
59
60
|
| 3.11.33 | 11/26/2025 | conversation - AI agent profile fields |
|
package/api.ts
CHANGED
|
@@ -7041,6 +7041,12 @@ export interface ConversationAgentAuth {
|
|
|
7041
7041
|
* @memberof ConversationAgentAuth
|
|
7042
7042
|
*/
|
|
7043
7043
|
pbx_worker_token?: string;
|
|
7044
|
+
/**
|
|
7045
|
+
*
|
|
7046
|
+
* @type {string}
|
|
7047
|
+
* @memberof ConversationAgentAuth
|
|
7048
|
+
*/
|
|
7049
|
+
pbx_worker_token_v2?: string;
|
|
7044
7050
|
/**
|
|
7045
7051
|
*
|
|
7046
7052
|
* @type {Array<ConversationTwilioAccount>}
|
package/dist/api.d.ts
CHANGED
|
@@ -6882,6 +6882,12 @@ export interface ConversationAgentAuth {
|
|
|
6882
6882
|
* @memberof ConversationAgentAuth
|
|
6883
6883
|
*/
|
|
6884
6884
|
pbx_worker_token?: string;
|
|
6885
|
+
/**
|
|
6886
|
+
*
|
|
6887
|
+
* @type {string}
|
|
6888
|
+
* @memberof ConversationAgentAuth
|
|
6889
|
+
*/
|
|
6890
|
+
pbx_worker_token_v2?: string;
|
|
6885
6891
|
/**
|
|
6886
6892
|
*
|
|
6887
6893
|
* @type {Array<ConversationTwilioAccount>}
|