ultracart_rest_api_v2_typescript 3.10.162 → 3.10.163
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.163
|
|
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.163 --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.163 | 10/16/2023 | CartSettingsPaymentCreditCard - add collect_credit_card_verification_number_minimum |
|
|
57
58
|
| 3.10.162 | 09/28/2023 | dw bi - add aggregation constant of none |
|
|
58
59
|
| 3.10.161 | 09/22/2023 | dwbi - new option to control order-by of result set |
|
|
59
60
|
| 3.10.160 | 09/15/2023 | new item fields for additional barcodes |
|
package/api.ts
CHANGED
|
@@ -4619,6 +4619,12 @@ export interface CartSettingsPaymentCreditCard {
|
|
|
4619
4619
|
* @memberof CartSettingsPaymentCreditCard
|
|
4620
4620
|
*/
|
|
4621
4621
|
collect_credit_card_verification_number?: boolean;
|
|
4622
|
+
/**
|
|
4623
|
+
* If this field is null or the total is greater than or equal to this value then collect the CVV2.
|
|
4624
|
+
* @type {number}
|
|
4625
|
+
* @memberof CartSettingsPaymentCreditCard
|
|
4626
|
+
*/
|
|
4627
|
+
collect_credit_card_verification_number_minimum?: number;
|
|
4622
4628
|
/**
|
|
4623
4629
|
* Available credit card types
|
|
4624
4630
|
* @type {Array<string>}
|
package/dist/api.d.ts
CHANGED
|
@@ -4505,6 +4505,12 @@ export interface CartSettingsPaymentCreditCard {
|
|
|
4505
4505
|
* @memberof CartSettingsPaymentCreditCard
|
|
4506
4506
|
*/
|
|
4507
4507
|
collect_credit_card_verification_number?: boolean;
|
|
4508
|
+
/**
|
|
4509
|
+
* If this field is null or the total is greater than or equal to this value then collect the CVV2.
|
|
4510
|
+
* @type {number}
|
|
4511
|
+
* @memberof CartSettingsPaymentCreditCard
|
|
4512
|
+
*/
|
|
4513
|
+
collect_credit_card_verification_number_minimum?: number;
|
|
4508
4514
|
/**
|
|
4509
4515
|
* Available credit card types
|
|
4510
4516
|
* @type {Array<string>}
|