ultracart_rest_api_v2_typescript 3.10.161 → 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 +4 -2
- package/api.ts +14 -1
- package/dist/api.d.ts +14 -1
- package/dist/api.js +1 -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,8 @@ 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 |
|
|
58
|
+
| 3.10.162 | 09/28/2023 | dw bi - add aggregation constant of none |
|
|
57
59
|
| 3.10.161 | 09/22/2023 | dwbi - new option to control order-by of result set |
|
|
58
60
|
| 3.10.160 | 09/15/2023 | new item fields for additional barcodes |
|
|
59
61
|
| 3.10.159 | 09/12/2023 | added oids to customer properties |
|
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>}
|
|
@@ -20737,6 +20743,12 @@ export interface ExperimentVariationStat {
|
|
|
20737
20743
|
* @memberof ExperimentVariationStat
|
|
20738
20744
|
*/
|
|
20739
20745
|
order_count?: number;
|
|
20746
|
+
/**
|
|
20747
|
+
* Order ID thats converted on this variation
|
|
20748
|
+
* @type {Array<string>}
|
|
20749
|
+
* @memberof ExperimentVariationStat
|
|
20750
|
+
*/
|
|
20751
|
+
order_ids?: Array<string>;
|
|
20740
20752
|
/**
|
|
20741
20753
|
* Total order item count for this variation
|
|
20742
20754
|
* @type {number}
|
|
@@ -35223,7 +35235,8 @@ export namespace ReportPageVisualizationMetric {
|
|
|
35223
35235
|
Count = <any> 'count',
|
|
35224
35236
|
Min = <any> 'min',
|
|
35225
35237
|
Max = <any> 'max',
|
|
35226
|
-
Avg = <any> 'avg'
|
|
35238
|
+
Avg = <any> 'avg',
|
|
35239
|
+
None = <any> 'none'
|
|
35227
35240
|
}
|
|
35228
35241
|
}
|
|
35229
35242
|
|
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>}
|
|
@@ -20277,6 +20283,12 @@ export interface ExperimentVariationStat {
|
|
|
20277
20283
|
* @memberof ExperimentVariationStat
|
|
20278
20284
|
*/
|
|
20279
20285
|
order_count?: number;
|
|
20286
|
+
/**
|
|
20287
|
+
* Order ID thats converted on this variation
|
|
20288
|
+
* @type {Array<string>}
|
|
20289
|
+
* @memberof ExperimentVariationStat
|
|
20290
|
+
*/
|
|
20291
|
+
order_ids?: Array<string>;
|
|
20280
20292
|
/**
|
|
20281
20293
|
* Total order item count for this variation
|
|
20282
20294
|
* @type {number}
|
|
@@ -34482,7 +34494,8 @@ export declare namespace ReportPageVisualizationMetric {
|
|
|
34482
34494
|
Count,
|
|
34483
34495
|
Min,
|
|
34484
34496
|
Max,
|
|
34485
|
-
Avg
|
|
34497
|
+
Avg,
|
|
34498
|
+
None
|
|
34486
34499
|
}
|
|
34487
34500
|
}
|
|
34488
34501
|
/**
|
package/dist/api.js
CHANGED
|
@@ -1495,6 +1495,7 @@ var ReportPageVisualizationMetric;
|
|
|
1495
1495
|
AggregationEnum[AggregationEnum["Min"] = 'min'] = "Min";
|
|
1496
1496
|
AggregationEnum[AggregationEnum["Max"] = 'max'] = "Max";
|
|
1497
1497
|
AggregationEnum[AggregationEnum["Avg"] = 'avg'] = "Avg";
|
|
1498
|
+
AggregationEnum[AggregationEnum["None"] = 'none'] = "None";
|
|
1498
1499
|
})(AggregationEnum = ReportPageVisualizationMetric.AggregationEnum || (ReportPageVisualizationMetric.AggregationEnum = {}));
|
|
1499
1500
|
})(ReportPageVisualizationMetric = exports.ReportPageVisualizationMetric || (exports.ReportPageVisualizationMetric = {}));
|
|
1500
1501
|
/**
|