ultracart_rest_api_v2_typescript 3.10.161 → 3.10.162
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 +8 -1
- package/dist/api.d.ts +8 -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.162
|
|
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.162 --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.162 | 09/28/2023 | dw bi - add aggregation constant of none |
|
|
57
58
|
| 3.10.161 | 09/22/2023 | dwbi - new option to control order-by of result set |
|
|
58
59
|
| 3.10.160 | 09/15/2023 | new item fields for additional barcodes |
|
|
59
60
|
| 3.10.159 | 09/12/2023 | added oids to customer properties |
|
package/api.ts
CHANGED
|
@@ -20737,6 +20737,12 @@ export interface ExperimentVariationStat {
|
|
|
20737
20737
|
* @memberof ExperimentVariationStat
|
|
20738
20738
|
*/
|
|
20739
20739
|
order_count?: number;
|
|
20740
|
+
/**
|
|
20741
|
+
* Order ID thats converted on this variation
|
|
20742
|
+
* @type {Array<string>}
|
|
20743
|
+
* @memberof ExperimentVariationStat
|
|
20744
|
+
*/
|
|
20745
|
+
order_ids?: Array<string>;
|
|
20740
20746
|
/**
|
|
20741
20747
|
* Total order item count for this variation
|
|
20742
20748
|
* @type {number}
|
|
@@ -35223,7 +35229,8 @@ export namespace ReportPageVisualizationMetric {
|
|
|
35223
35229
|
Count = <any> 'count',
|
|
35224
35230
|
Min = <any> 'min',
|
|
35225
35231
|
Max = <any> 'max',
|
|
35226
|
-
Avg = <any> 'avg'
|
|
35232
|
+
Avg = <any> 'avg',
|
|
35233
|
+
None = <any> 'none'
|
|
35227
35234
|
}
|
|
35228
35235
|
}
|
|
35229
35236
|
|
package/dist/api.d.ts
CHANGED
|
@@ -20277,6 +20277,12 @@ export interface ExperimentVariationStat {
|
|
|
20277
20277
|
* @memberof ExperimentVariationStat
|
|
20278
20278
|
*/
|
|
20279
20279
|
order_count?: number;
|
|
20280
|
+
/**
|
|
20281
|
+
* Order ID thats converted on this variation
|
|
20282
|
+
* @type {Array<string>}
|
|
20283
|
+
* @memberof ExperimentVariationStat
|
|
20284
|
+
*/
|
|
20285
|
+
order_ids?: Array<string>;
|
|
20280
20286
|
/**
|
|
20281
20287
|
* Total order item count for this variation
|
|
20282
20288
|
* @type {number}
|
|
@@ -34482,7 +34488,8 @@ export declare namespace ReportPageVisualizationMetric {
|
|
|
34482
34488
|
Count,
|
|
34483
34489
|
Min,
|
|
34484
34490
|
Max,
|
|
34485
|
-
Avg
|
|
34491
|
+
Avg,
|
|
34492
|
+
None
|
|
34486
34493
|
}
|
|
34487
34494
|
}
|
|
34488
34495
|
/**
|
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
|
/**
|