ultracart_rest_api_v2_typescript 3.10.160 → 3.10.161
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 +26 -0
- package/dist/api.d.ts +25 -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.161
|
|
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.161 --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.161 | 09/22/2023 | dwbi - new option to control order-by of result set |
|
|
57
58
|
| 3.10.160 | 09/15/2023 | new item fields for additional barcodes |
|
|
58
59
|
| 3.10.159 | 09/12/2023 | added oids to customer properties |
|
|
59
60
|
| 3.10.158 | 09/06/2023 | esp condition for survey trigger |
|
package/api.ts
CHANGED
|
@@ -34449,6 +34449,12 @@ export interface ReportDataSetQuery {
|
|
|
34449
34449
|
* @memberof ReportDataSetQuery
|
|
34450
34450
|
*/
|
|
34451
34451
|
metrics?: Array<ReportPageVisualizationMetric>;
|
|
34452
|
+
/**
|
|
34453
|
+
* The columns to order by in the final result. If not specified the dimensions will be used
|
|
34454
|
+
* @type {Array<ReportDataSetQueryOrderByColumn>}
|
|
34455
|
+
* @memberof ReportDataSetQuery
|
|
34456
|
+
*/
|
|
34457
|
+
order_by_columns?: Array<ReportDataSetQueryOrderByColumn>;
|
|
34452
34458
|
/**
|
|
34453
34459
|
* Result set page size. The default value is 200 records. Max is 10000.
|
|
34454
34460
|
* @type {number}
|
|
@@ -34491,6 +34497,26 @@ export namespace ReportDataSetQuery {
|
|
|
34491
34497
|
}
|
|
34492
34498
|
}
|
|
34493
34499
|
|
|
34500
|
+
/**
|
|
34501
|
+
*
|
|
34502
|
+
* @export
|
|
34503
|
+
* @interface ReportDataSetQueryOrderByColumn
|
|
34504
|
+
*/
|
|
34505
|
+
export interface ReportDataSetQueryOrderByColumn {
|
|
34506
|
+
/**
|
|
34507
|
+
*
|
|
34508
|
+
* @type {boolean}
|
|
34509
|
+
* @memberof ReportDataSetQueryOrderByColumn
|
|
34510
|
+
*/
|
|
34511
|
+
ascending?: boolean;
|
|
34512
|
+
/**
|
|
34513
|
+
*
|
|
34514
|
+
* @type {string}
|
|
34515
|
+
* @memberof ReportDataSetQueryOrderByColumn
|
|
34516
|
+
*/
|
|
34517
|
+
column_name?: string;
|
|
34518
|
+
}
|
|
34519
|
+
|
|
34494
34520
|
/**
|
|
34495
34521
|
*
|
|
34496
34522
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -33732,6 +33732,12 @@ export interface ReportDataSetQuery {
|
|
|
33732
33732
|
* @memberof ReportDataSetQuery
|
|
33733
33733
|
*/
|
|
33734
33734
|
metrics?: Array<ReportPageVisualizationMetric>;
|
|
33735
|
+
/**
|
|
33736
|
+
* The columns to order by in the final result. If not specified the dimensions will be used
|
|
33737
|
+
* @type {Array<ReportDataSetQueryOrderByColumn>}
|
|
33738
|
+
* @memberof ReportDataSetQuery
|
|
33739
|
+
*/
|
|
33740
|
+
order_by_columns?: Array<ReportDataSetQueryOrderByColumn>;
|
|
33735
33741
|
/**
|
|
33736
33742
|
* Result set page size. The default value is 200 records. Max is 10000.
|
|
33737
33743
|
* @type {number}
|
|
@@ -33772,6 +33778,25 @@ export declare namespace ReportDataSetQuery {
|
|
|
33772
33778
|
Visualization
|
|
33773
33779
|
}
|
|
33774
33780
|
}
|
|
33781
|
+
/**
|
|
33782
|
+
*
|
|
33783
|
+
* @export
|
|
33784
|
+
* @interface ReportDataSetQueryOrderByColumn
|
|
33785
|
+
*/
|
|
33786
|
+
export interface ReportDataSetQueryOrderByColumn {
|
|
33787
|
+
/**
|
|
33788
|
+
*
|
|
33789
|
+
* @type {boolean}
|
|
33790
|
+
* @memberof ReportDataSetQueryOrderByColumn
|
|
33791
|
+
*/
|
|
33792
|
+
ascending?: boolean;
|
|
33793
|
+
/**
|
|
33794
|
+
*
|
|
33795
|
+
* @type {string}
|
|
33796
|
+
* @memberof ReportDataSetQueryOrderByColumn
|
|
33797
|
+
*/
|
|
33798
|
+
column_name?: string;
|
|
33799
|
+
}
|
|
33775
33800
|
/**
|
|
33776
33801
|
*
|
|
33777
33802
|
* @export
|