ultracart_rest_api_v2_typescript 3.10.166 → 3.10.168
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 +30 -0
- package/dist/api.d.ts +30 -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.168
|
|
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.168 --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.168 | 11/01/2023 | customer - do_no_send_mail flag added |
|
|
58
|
+
| 3.10.167 | 10/30/2023 | cart/order fields for health benefit card values in summary expansion objects |
|
|
57
59
|
| 3.10.166 | 10/27/2023 | workflow task object model refinement |
|
|
58
60
|
| 3.10.165 | 10/23/2023 | workflow tasks api |
|
|
59
61
|
| 3.10.164 | 10/23/2023 | workflow tasks api |
|
package/api.ts
CHANGED
|
@@ -5101,6 +5101,18 @@ export interface CartSummary {
|
|
|
5101
5101
|
* @memberof CartSummary
|
|
5102
5102
|
*/
|
|
5103
5103
|
arbitrary_taxable_subtotal?: Currency;
|
|
5104
|
+
/**
|
|
5105
|
+
*
|
|
5106
|
+
* @type {Currency}
|
|
5107
|
+
* @memberof CartSummary
|
|
5108
|
+
*/
|
|
5109
|
+
health_benefit_card_amount?: Currency;
|
|
5110
|
+
/**
|
|
5111
|
+
*
|
|
5112
|
+
* @type {Currency}
|
|
5113
|
+
* @memberof CartSummary
|
|
5114
|
+
*/
|
|
5115
|
+
internal_gift_certificate_amount?: Currency;
|
|
5104
5116
|
/**
|
|
5105
5117
|
*
|
|
5106
5118
|
* @type {Currency}
|
|
@@ -12086,6 +12098,12 @@ export interface Customer {
|
|
|
12086
12098
|
* @memberof Customer
|
|
12087
12099
|
*/
|
|
12088
12100
|
dhl_duty_account_number?: string;
|
|
12101
|
+
/**
|
|
12102
|
+
* Do not send mail (null will not update)
|
|
12103
|
+
* @type {boolean}
|
|
12104
|
+
* @memberof Customer
|
|
12105
|
+
*/
|
|
12106
|
+
do_not_send_mail?: boolean;
|
|
12089
12107
|
/**
|
|
12090
12108
|
*
|
|
12091
12109
|
* @type {CustomerEDI}
|
|
@@ -32765,6 +32783,18 @@ export interface OrderSummary {
|
|
|
32765
32783
|
* @memberof OrderSummary
|
|
32766
32784
|
*/
|
|
32767
32785
|
arbitrary_shipping_handling_total?: Currency;
|
|
32786
|
+
/**
|
|
32787
|
+
*
|
|
32788
|
+
* @type {Currency}
|
|
32789
|
+
* @memberof OrderSummary
|
|
32790
|
+
*/
|
|
32791
|
+
health_benefit_card_amount?: Currency;
|
|
32792
|
+
/**
|
|
32793
|
+
*
|
|
32794
|
+
* @type {Currency}
|
|
32795
|
+
* @memberof OrderSummary
|
|
32796
|
+
*/
|
|
32797
|
+
health_benefit_card_refunded?: Currency;
|
|
32768
32798
|
/**
|
|
32769
32799
|
*
|
|
32770
32800
|
* @type {Currency}
|
package/dist/api.d.ts
CHANGED
|
@@ -4977,6 +4977,18 @@ export interface CartSummary {
|
|
|
4977
4977
|
* @memberof CartSummary
|
|
4978
4978
|
*/
|
|
4979
4979
|
arbitrary_taxable_subtotal?: Currency;
|
|
4980
|
+
/**
|
|
4981
|
+
*
|
|
4982
|
+
* @type {Currency}
|
|
4983
|
+
* @memberof CartSummary
|
|
4984
|
+
*/
|
|
4985
|
+
health_benefit_card_amount?: Currency;
|
|
4986
|
+
/**
|
|
4987
|
+
*
|
|
4988
|
+
* @type {Currency}
|
|
4989
|
+
* @memberof CartSummary
|
|
4990
|
+
*/
|
|
4991
|
+
internal_gift_certificate_amount?: Currency;
|
|
4980
4992
|
/**
|
|
4981
4993
|
*
|
|
4982
4994
|
* @type {Currency}
|
|
@@ -11784,6 +11796,12 @@ export interface Customer {
|
|
|
11784
11796
|
* @memberof Customer
|
|
11785
11797
|
*/
|
|
11786
11798
|
dhl_duty_account_number?: string;
|
|
11799
|
+
/**
|
|
11800
|
+
* Do not send mail (null will not update)
|
|
11801
|
+
* @type {boolean}
|
|
11802
|
+
* @memberof Customer
|
|
11803
|
+
*/
|
|
11804
|
+
do_not_send_mail?: boolean;
|
|
11787
11805
|
/**
|
|
11788
11806
|
*
|
|
11789
11807
|
* @type {CustomerEDI}
|
|
@@ -32078,6 +32096,18 @@ export interface OrderSummary {
|
|
|
32078
32096
|
* @memberof OrderSummary
|
|
32079
32097
|
*/
|
|
32080
32098
|
arbitrary_shipping_handling_total?: Currency;
|
|
32099
|
+
/**
|
|
32100
|
+
*
|
|
32101
|
+
* @type {Currency}
|
|
32102
|
+
* @memberof OrderSummary
|
|
32103
|
+
*/
|
|
32104
|
+
health_benefit_card_amount?: Currency;
|
|
32105
|
+
/**
|
|
32106
|
+
*
|
|
32107
|
+
* @type {Currency}
|
|
32108
|
+
* @memberof OrderSummary
|
|
32109
|
+
*/
|
|
32110
|
+
health_benefit_card_refunded?: Currency;
|
|
32081
32111
|
/**
|
|
32082
32112
|
*
|
|
32083
32113
|
* @type {Currency}
|