ultracart_rest_api_v2_typescript 3.10.140 → 3.10.141
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.141
|
|
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.141 --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.141 | 06/08/2023 | customer profile qb tax exempt reason code field |
|
|
57
58
|
| 3.10.140 | 06/06/2023 | auto order add_ons |
|
|
58
59
|
| 3.10.139 | 05/25/2023 | added venmo constants for payment type |
|
|
59
60
|
| 3.10.138 | 05/18/2023 | dw bi - send back the executed SQL |
|
package/api.ts
CHANGED
|
@@ -12097,6 +12097,12 @@ export interface Customer {
|
|
|
12097
12097
|
* @memberof Customer
|
|
12098
12098
|
*/
|
|
12099
12099
|
qb_code?: string;
|
|
12100
|
+
/**
|
|
12101
|
+
* QuickBooks tax exemption reason code
|
|
12102
|
+
* @type {number}
|
|
12103
|
+
* @memberof Customer
|
|
12104
|
+
*/
|
|
12105
|
+
qb_tax_exemption_reason_code?: number;
|
|
12100
12106
|
/**
|
|
12101
12107
|
* Quotes associated with this customer profile
|
|
12102
12108
|
* @type {Array<Order>}
|
package/dist/api.d.ts
CHANGED
|
@@ -11798,6 +11798,12 @@ export interface Customer {
|
|
|
11798
11798
|
* @memberof Customer
|
|
11799
11799
|
*/
|
|
11800
11800
|
qb_code?: string;
|
|
11801
|
+
/**
|
|
11802
|
+
* QuickBooks tax exemption reason code
|
|
11803
|
+
* @type {number}
|
|
11804
|
+
* @memberof Customer
|
|
11805
|
+
*/
|
|
11806
|
+
qb_tax_exemption_reason_code?: number;
|
|
11801
11807
|
/**
|
|
11802
11808
|
* Quotes associated with this customer profile
|
|
11803
11809
|
* @type {Array<Order>}
|