ultracart_rest_api_v2_typescript 3.10.167 → 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 +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.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,7 @@ 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 |
|
|
57
58
|
| 3.10.167 | 10/30/2023 | cart/order fields for health benefit card values in summary expansion objects |
|
|
58
59
|
| 3.10.166 | 10/27/2023 | workflow task object model refinement |
|
|
59
60
|
| 3.10.165 | 10/23/2023 | workflow tasks api |
|
package/api.ts
CHANGED
|
@@ -12098,6 +12098,12 @@ export interface Customer {
|
|
|
12098
12098
|
* @memberof Customer
|
|
12099
12099
|
*/
|
|
12100
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;
|
|
12101
12107
|
/**
|
|
12102
12108
|
*
|
|
12103
12109
|
* @type {CustomerEDI}
|
package/dist/api.d.ts
CHANGED
|
@@ -11796,6 +11796,12 @@ export interface Customer {
|
|
|
11796
11796
|
* @memberof Customer
|
|
11797
11797
|
*/
|
|
11798
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;
|
|
11799
11805
|
/**
|
|
11800
11806
|
*
|
|
11801
11807
|
* @type {CustomerEDI}
|