ultracart_rest_api_v2_typescript 3.10.226 → 3.10.228
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 +26 -0
- package/dist/api.d.ts +25 -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.228
|
|
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.228 --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.10.228 | 02/20/2025 | automation fix |
|
|
58
|
+
| 3.10.227 | 02/20/2025 | no change, revving sdk to troubleshoot java deployment automation |
|
|
57
59
|
| 3.10.226 | 02/20/2025 | no change, revving sdk to troubleshoot java deployment automation |
|
|
58
60
|
| 3.10.225 | 02/18/2025 | small bug fixes for incorrect return types on several methods |
|
|
59
61
|
| 3.10.224 | 02/06/2025 | added storefront_host_name to channel partner order object |
|
package/api.ts
CHANGED
|
@@ -34307,6 +34307,12 @@ export interface OrderPayment {
|
|
|
34307
34307
|
* @memberof OrderPayment
|
|
34308
34308
|
*/
|
|
34309
34309
|
payment_status?: OrderPayment.PaymentStatusEnum;
|
|
34310
|
+
/**
|
|
34311
|
+
*
|
|
34312
|
+
* @type {OrderPaymentPayPal}
|
|
34313
|
+
* @memberof OrderPayment
|
|
34314
|
+
*/
|
|
34315
|
+
paypal?: OrderPaymentPayPal;
|
|
34310
34316
|
/**
|
|
34311
34317
|
*
|
|
34312
34318
|
* @type {OrderPaymentPurchaseOrder}
|
|
@@ -34737,6 +34743,26 @@ export interface OrderPaymentInsurance {
|
|
|
34737
34743
|
refund_claim_id?: string;
|
|
34738
34744
|
}
|
|
34739
34745
|
|
|
34746
|
+
/**
|
|
34747
|
+
*
|
|
34748
|
+
* @export
|
|
34749
|
+
* @interface OrderPaymentPayPal
|
|
34750
|
+
*/
|
|
34751
|
+
export interface OrderPaymentPayPal {
|
|
34752
|
+
/**
|
|
34753
|
+
* PayPal Customer ID
|
|
34754
|
+
* @type {string}
|
|
34755
|
+
* @memberof OrderPaymentPayPal
|
|
34756
|
+
*/
|
|
34757
|
+
customer_id?: string;
|
|
34758
|
+
/**
|
|
34759
|
+
* PayPal Vault ID
|
|
34760
|
+
* @type {string}
|
|
34761
|
+
* @memberof OrderPaymentPayPal
|
|
34762
|
+
*/
|
|
34763
|
+
vault_id?: string;
|
|
34764
|
+
}
|
|
34765
|
+
|
|
34740
34766
|
/**
|
|
34741
34767
|
*
|
|
34742
34768
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -33589,6 +33589,12 @@ export interface OrderPayment {
|
|
|
33589
33589
|
* @memberof OrderPayment
|
|
33590
33590
|
*/
|
|
33591
33591
|
payment_status?: OrderPayment.PaymentStatusEnum;
|
|
33592
|
+
/**
|
|
33593
|
+
*
|
|
33594
|
+
* @type {OrderPaymentPayPal}
|
|
33595
|
+
* @memberof OrderPayment
|
|
33596
|
+
*/
|
|
33597
|
+
paypal?: OrderPaymentPayPal;
|
|
33592
33598
|
/**
|
|
33593
33599
|
*
|
|
33594
33600
|
* @type {OrderPaymentPurchaseOrder}
|
|
@@ -34008,6 +34014,25 @@ export interface OrderPaymentInsurance {
|
|
|
34008
34014
|
*/
|
|
34009
34015
|
refund_claim_id?: string;
|
|
34010
34016
|
}
|
|
34017
|
+
/**
|
|
34018
|
+
*
|
|
34019
|
+
* @export
|
|
34020
|
+
* @interface OrderPaymentPayPal
|
|
34021
|
+
*/
|
|
34022
|
+
export interface OrderPaymentPayPal {
|
|
34023
|
+
/**
|
|
34024
|
+
* PayPal Customer ID
|
|
34025
|
+
* @type {string}
|
|
34026
|
+
* @memberof OrderPaymentPayPal
|
|
34027
|
+
*/
|
|
34028
|
+
customer_id?: string;
|
|
34029
|
+
/**
|
|
34030
|
+
* PayPal Vault ID
|
|
34031
|
+
* @type {string}
|
|
34032
|
+
* @memberof OrderPaymentPayPal
|
|
34033
|
+
*/
|
|
34034
|
+
vault_id?: string;
|
|
34035
|
+
}
|
|
34011
34036
|
/**
|
|
34012
34037
|
*
|
|
34013
34038
|
* @export
|