ultracart_rest_api_v2_typescript 3.11.1 → 3.11.3
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 +4 -2
- package/api.ts +11 -5
- package/dist/api.d.ts +11 -5
- package/dist/api.js +4 -4
- 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.3
|
|
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.3 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.11.3 | 03/07/2025 | updated github readme.md files |
|
|
58
|
+
| 3.11.2 | 03/05/2025 | added ChannelPartnerOrder.use_prior_payment_information_from_order_id |
|
|
57
59
|
| 3.11.1 | 02/28/2025 | auto order pause method |
|
|
58
60
|
| 3.11.0 | 02/21/2025 | ItemApi.getInventorySnapshot had bad nickname causing bad sdk method name |
|
|
59
61
|
| 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
|
/**
|
|
@@ -46142,7 +46148,7 @@ export const AutoOrderApiFetchParamCreator = function (configuration?: Configura
|
|
|
46142
46148
|
/**
|
|
46143
46149
|
* Completely pause an auto order
|
|
46144
46150
|
* @summary Pause auto order
|
|
46145
|
-
* @param {AutoOrder} auto_order Auto
|
|
46151
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
46146
46152
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
46147
46153
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
46148
46154
|
* @param {*} [options] Override http request option.
|
|
@@ -46559,7 +46565,7 @@ export const AutoOrderApiFp = function(configuration?: Configuration) {
|
|
|
46559
46565
|
/**
|
|
46560
46566
|
* Completely pause an auto order
|
|
46561
46567
|
* @summary Pause auto order
|
|
46562
|
-
* @param {AutoOrder} auto_order Auto
|
|
46568
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
46563
46569
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
46564
46570
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
46565
46571
|
* @param {*} [options] Override http request option.
|
|
@@ -46752,7 +46758,7 @@ export const AutoOrderApiFactory = function (configuration?: Configuration, fetc
|
|
|
46752
46758
|
/**
|
|
46753
46759
|
* Completely pause an auto order
|
|
46754
46760
|
* @summary Pause auto order
|
|
46755
|
-
* @param {AutoOrder} auto_order Auto
|
|
46761
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
46756
46762
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
46757
46763
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
46758
46764
|
* @param {*} [options] Override http request option.
|
|
@@ -46912,7 +46918,7 @@ export interface AutoOrderApiInterface {
|
|
|
46912
46918
|
/**
|
|
46913
46919
|
* Completely pause an auto order
|
|
46914
46920
|
* @summary Pause auto order
|
|
46915
|
-
* @param {AutoOrder} auto_order Auto
|
|
46921
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
46916
46922
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
46917
46923
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
46918
46924
|
* @param {*} [options] Override http request option.
|
|
@@ -47088,7 +47094,7 @@ export class AutoOrderApi extends BaseAPI implements AutoOrderApiInterface {
|
|
|
47088
47094
|
/**
|
|
47089
47095
|
* Completely pause an auto order
|
|
47090
47096
|
* @summary Pause auto order
|
|
47091
|
-
* @param {AutoOrder} auto_order Auto
|
|
47097
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
47092
47098
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
47093
47099
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
47094
47100
|
* @param {*} [options] Override http request option.
|
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
|
|
@@ -44526,7 +44532,7 @@ export declare const AutoOrderApiFetchParamCreator: (configuration?: Configurati
|
|
|
44526
44532
|
/**
|
|
44527
44533
|
* Completely pause an auto order
|
|
44528
44534
|
* @summary Pause auto order
|
|
44529
|
-
* @param {AutoOrder} auto_order Auto
|
|
44535
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
44530
44536
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
44531
44537
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
44532
44538
|
* @param {*} [options] Override http request option.
|
|
@@ -44661,7 +44667,7 @@ export declare const AutoOrderApiFp: (configuration?: Configuration) => {
|
|
|
44661
44667
|
/**
|
|
44662
44668
|
* Completely pause an auto order
|
|
44663
44669
|
* @summary Pause auto order
|
|
44664
|
-
* @param {AutoOrder} auto_order Auto
|
|
44670
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
44665
44671
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
44666
44672
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
44667
44673
|
* @param {*} [options] Override http request option.
|
|
@@ -44796,7 +44802,7 @@ export declare const AutoOrderApiFactory: (configuration?: Configuration, fetch?
|
|
|
44796
44802
|
/**
|
|
44797
44803
|
* Completely pause an auto order
|
|
44798
44804
|
* @summary Pause auto order
|
|
44799
|
-
* @param {AutoOrder} auto_order Auto
|
|
44805
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
44800
44806
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
44801
44807
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
44802
44808
|
* @param {*} [options] Override http request option.
|
|
@@ -44940,7 +44946,7 @@ export interface AutoOrderApiInterface {
|
|
|
44940
44946
|
/**
|
|
44941
44947
|
* Completely pause an auto order
|
|
44942
44948
|
* @summary Pause auto order
|
|
44943
|
-
* @param {AutoOrder} auto_order Auto
|
|
44949
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
44944
44950
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
44945
44951
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
44946
44952
|
* @param {*} [options] Override http request option.
|
|
@@ -45088,7 +45094,7 @@ export declare class AutoOrderApi extends BaseAPI implements AutoOrderApiInterfa
|
|
|
45088
45094
|
/**
|
|
45089
45095
|
* Completely pause an auto order
|
|
45090
45096
|
* @summary Pause auto order
|
|
45091
|
-
* @param {AutoOrder} auto_order Auto
|
|
45097
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
45092
45098
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
45093
45099
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
45094
45100
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -2689,7 +2689,7 @@ var AutoOrderApiFetchParamCreator = function (configuration) {
|
|
|
2689
2689
|
/**
|
|
2690
2690
|
* Completely pause an auto order
|
|
2691
2691
|
* @summary Pause auto order
|
|
2692
|
-
* @param {AutoOrder} auto_order Auto
|
|
2692
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
2693
2693
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
2694
2694
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
2695
2695
|
* @param {*} [options] Override http request option.
|
|
@@ -3087,7 +3087,7 @@ var AutoOrderApiFp = function (configuration) {
|
|
|
3087
3087
|
/**
|
|
3088
3088
|
* Completely pause an auto order
|
|
3089
3089
|
* @summary Pause auto order
|
|
3090
|
-
* @param {AutoOrder} auto_order Auto
|
|
3090
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
3091
3091
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
3092
3092
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
3093
3093
|
* @param {*} [options] Override http request option.
|
|
@@ -3283,7 +3283,7 @@ var AutoOrderApiFactory = function (configuration, fetch, basePath) {
|
|
|
3283
3283
|
/**
|
|
3284
3284
|
* Completely pause an auto order
|
|
3285
3285
|
* @summary Pause auto order
|
|
3286
|
-
* @param {AutoOrder} auto_order Auto
|
|
3286
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
3287
3287
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
3288
3288
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
3289
3289
|
* @param {*} [options] Override http request option.
|
|
@@ -3456,7 +3456,7 @@ var AutoOrderApi = /** @class */ (function (_super) {
|
|
|
3456
3456
|
/**
|
|
3457
3457
|
* Completely pause an auto order
|
|
3458
3458
|
* @summary Pause auto order
|
|
3459
|
-
* @param {AutoOrder} auto_order Auto
|
|
3459
|
+
* @param {AutoOrder} auto_order Auto order to pause
|
|
3460
3460
|
* @param {number} auto_order_oid The auto order oid to pause.
|
|
3461
3461
|
* @param {string} [_expand] The object expansion to perform on the result. See documentation for examples
|
|
3462
3462
|
* @param {*} [options] Override http request option.
|