ultracart_rest_api_v2_typescript 3.10.123 → 3.10.124
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.124
|
|
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.124 --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.124 | 03/22/2023 | order api - refundable response added manual_because_multiple_charges boolean field |
|
|
57
58
|
| 3.10.123 | 03/21/2023 | order api - new stage named Hold |
|
|
58
59
|
| 3.10.122 | 03/14/2023 | order.getOrderEdiDocuments |
|
|
59
60
|
| 3.10.121 | 03/01/2023 | convo - add sentiment record to conversation obj |
|
package/api.ts
CHANGED
|
@@ -31546,6 +31546,12 @@ export interface OrderRefundableResponse {
|
|
|
31546
31546
|
* @memberof OrderRefundableResponse
|
|
31547
31547
|
*/
|
|
31548
31548
|
item_level_return_reasons?: Array<OrderReason>;
|
|
31549
|
+
/**
|
|
31550
|
+
* If true, this refund will have to be manually done because of additional charges with the virtual terminal were made
|
|
31551
|
+
* @type {boolean}
|
|
31552
|
+
* @memberof OrderRefundableResponse
|
|
31553
|
+
*/
|
|
31554
|
+
manual_because_multiple_charges?: boolean;
|
|
31549
31555
|
/**
|
|
31550
31556
|
*
|
|
31551
31557
|
* @type {ResponseMetadata}
|
package/dist/api.d.ts
CHANGED
|
@@ -30879,6 +30879,12 @@ export interface OrderRefundableResponse {
|
|
|
30879
30879
|
* @memberof OrderRefundableResponse
|
|
30880
30880
|
*/
|
|
30881
30881
|
item_level_return_reasons?: Array<OrderReason>;
|
|
30882
|
+
/**
|
|
30883
|
+
* If true, this refund will have to be manually done because of additional charges with the virtual terminal were made
|
|
30884
|
+
* @type {boolean}
|
|
30885
|
+
* @memberof OrderRefundableResponse
|
|
30886
|
+
*/
|
|
30887
|
+
manual_because_multiple_charges?: boolean;
|
|
30882
30888
|
/**
|
|
30883
30889
|
*
|
|
30884
30890
|
* @type {ResponseMetadata}
|