ultracart_rest_api_v2_typescript 3.10.160 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.10.160
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.160 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.162 --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.162 | 09/28/2023 | dw bi - add aggregation constant of none |
58
+ | 3.10.161 | 09/22/2023 | dwbi - new option to control order-by of result set |
57
59
  | 3.10.160 | 09/15/2023 | new item fields for additional barcodes |
58
60
  | 3.10.159 | 09/12/2023 | added oids to customer properties |
59
61
  | 3.10.158 | 09/06/2023 | esp condition for survey trigger |
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}
@@ -34449,6 +34455,12 @@ export interface ReportDataSetQuery {
34449
34455
  * @memberof ReportDataSetQuery
34450
34456
  */
34451
34457
  metrics?: Array<ReportPageVisualizationMetric>;
34458
+ /**
34459
+ * The columns to order by in the final result. If not specified the dimensions will be used
34460
+ * @type {Array<ReportDataSetQueryOrderByColumn>}
34461
+ * @memberof ReportDataSetQuery
34462
+ */
34463
+ order_by_columns?: Array<ReportDataSetQueryOrderByColumn>;
34452
34464
  /**
34453
34465
  * Result set page size. The default value is 200 records. Max is 10000.
34454
34466
  * @type {number}
@@ -34491,6 +34503,26 @@ export namespace ReportDataSetQuery {
34491
34503
  }
34492
34504
  }
34493
34505
 
34506
+ /**
34507
+ *
34508
+ * @export
34509
+ * @interface ReportDataSetQueryOrderByColumn
34510
+ */
34511
+ export interface ReportDataSetQueryOrderByColumn {
34512
+ /**
34513
+ *
34514
+ * @type {boolean}
34515
+ * @memberof ReportDataSetQueryOrderByColumn
34516
+ */
34517
+ ascending?: boolean;
34518
+ /**
34519
+ *
34520
+ * @type {string}
34521
+ * @memberof ReportDataSetQueryOrderByColumn
34522
+ */
34523
+ column_name?: string;
34524
+ }
34525
+
34494
34526
  /**
34495
34527
  *
34496
34528
  * @export
@@ -35197,7 +35229,8 @@ export namespace ReportPageVisualizationMetric {
35197
35229
  Count = <any> 'count',
35198
35230
  Min = <any> 'min',
35199
35231
  Max = <any> 'max',
35200
- Avg = <any> 'avg'
35232
+ Avg = <any> 'avg',
35233
+ None = <any> 'none'
35201
35234
  }
35202
35235
  }
35203
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}
@@ -33732,6 +33738,12 @@ export interface ReportDataSetQuery {
33732
33738
  * @memberof ReportDataSetQuery
33733
33739
  */
33734
33740
  metrics?: Array<ReportPageVisualizationMetric>;
33741
+ /**
33742
+ * The columns to order by in the final result. If not specified the dimensions will be used
33743
+ * @type {Array<ReportDataSetQueryOrderByColumn>}
33744
+ * @memberof ReportDataSetQuery
33745
+ */
33746
+ order_by_columns?: Array<ReportDataSetQueryOrderByColumn>;
33735
33747
  /**
33736
33748
  * Result set page size. The default value is 200 records. Max is 10000.
33737
33749
  * @type {number}
@@ -33772,6 +33784,25 @@ export declare namespace ReportDataSetQuery {
33772
33784
  Visualization
33773
33785
  }
33774
33786
  }
33787
+ /**
33788
+ *
33789
+ * @export
33790
+ * @interface ReportDataSetQueryOrderByColumn
33791
+ */
33792
+ export interface ReportDataSetQueryOrderByColumn {
33793
+ /**
33794
+ *
33795
+ * @type {boolean}
33796
+ * @memberof ReportDataSetQueryOrderByColumn
33797
+ */
33798
+ ascending?: boolean;
33799
+ /**
33800
+ *
33801
+ * @type {string}
33802
+ * @memberof ReportDataSetQueryOrderByColumn
33803
+ */
33804
+ column_name?: string;
33805
+ }
33775
33806
  /**
33776
33807
  *
33777
33808
  * @export
@@ -34457,7 +34488,8 @@ export declare namespace ReportPageVisualizationMetric {
34457
34488
  Count,
34458
34489
  Min,
34459
34490
  Max,
34460
- Avg
34491
+ Avg,
34492
+ None
34461
34493
  }
34462
34494
  }
34463
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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.160",
3
+ "version": "3.10.162",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [