ultracart_rest_api_v2_typescript 3.11.1 → 3.11.2
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.2
|
|
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.2 --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.2 | 03/05/2025 | added ChannelPartnerOrder.use_prior_payment_information_from_order_id |
|
|
57
58
|
| 3.11.1 | 02/28/2025 | auto order pause method |
|
|
58
59
|
| 3.11.0 | 02/21/2025 | ItemApi.getInventorySnapshot had bad nickname causing bad sdk method name |
|
|
59
60
|
| 3.10.228 | 02/20/2025 | automation fix |
|
package/api.ts
CHANGED
|
@@ -6122,6 +6122,12 @@ export interface ChannelPartnerOrder {
|
|
|
6122
6122
|
* @memberof ChannelPartnerOrder
|
|
6123
6123
|
*/
|
|
6124
6124
|
treat_warnings_as_errors?: boolean;
|
|
6125
|
+
/**
|
|
6126
|
+
* An Order Id from a prior purchase of this customer which is used to retrieve vaulted payment information in order to pay for this current order.
|
|
6127
|
+
* @type {string}
|
|
6128
|
+
* @memberof ChannelPartnerOrder
|
|
6129
|
+
*/
|
|
6130
|
+
use_prior_payment_information_from_order_id?: string;
|
|
6125
6131
|
}
|
|
6126
6132
|
|
|
6127
6133
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -5987,6 +5987,12 @@ export interface ChannelPartnerOrder {
|
|
|
5987
5987
|
* @memberof ChannelPartnerOrder
|
|
5988
5988
|
*/
|
|
5989
5989
|
treat_warnings_as_errors?: boolean;
|
|
5990
|
+
/**
|
|
5991
|
+
* An Order Id from a prior purchase of this customer which is used to retrieve vaulted payment information in order to pay for this current order.
|
|
5992
|
+
* @type {string}
|
|
5993
|
+
* @memberof ChannelPartnerOrder
|
|
5994
|
+
*/
|
|
5995
|
+
use_prior_payment_information_from_order_id?: string;
|
|
5990
5996
|
}
|
|
5991
5997
|
/**
|
|
5992
5998
|
* @export
|