ultracart_rest_api_v2_typescript 3.10.119 → 3.10.120
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.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.120
|
|
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.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.120 --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.10.120 | 02/22/2023 | convo - customer initiated flag on engagement |
|
|
57
58
|
| 3.10.119 | 02/20/2023 | refund reasons |
|
|
58
59
|
| 3.10.118 | 02/17/2023 | convo api - smsUnsubscribeConversation method |
|
|
59
60
|
| 3.10.117 | 02/15/2023 | added auto order sorting by next_shipment_dts |
|
package/api.ts
CHANGED
|
@@ -7304,6 +7304,12 @@ export interface ConversationEngagement {
|
|
|
7304
7304
|
* @memberof ConversationEngagement
|
|
7305
7305
|
*/
|
|
7306
7306
|
customer_greeting?: string;
|
|
7307
|
+
/**
|
|
7308
|
+
*
|
|
7309
|
+
* @type {boolean}
|
|
7310
|
+
* @memberof ConversationEngagement
|
|
7311
|
+
*/
|
|
7312
|
+
customer_initiated?: boolean;
|
|
7307
7313
|
/**
|
|
7308
7314
|
*
|
|
7309
7315
|
* @type {Array<number>}
|
package/dist/api.d.ts
CHANGED
|
@@ -7131,6 +7131,12 @@ export interface ConversationEngagement {
|
|
|
7131
7131
|
* @memberof ConversationEngagement
|
|
7132
7132
|
*/
|
|
7133
7133
|
customer_greeting?: string;
|
|
7134
|
+
/**
|
|
7135
|
+
*
|
|
7136
|
+
* @type {boolean}
|
|
7137
|
+
* @memberof ConversationEngagement
|
|
7138
|
+
*/
|
|
7139
|
+
customer_initiated?: boolean;
|
|
7134
7140
|
/**
|
|
7135
7141
|
*
|
|
7136
7142
|
* @type {Array<number>}
|