ultracart_rest_api_v2_typescript 3.10.159 → 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 +4 -2
- package/api.ts +74 -0
- package/dist/api.d.ts +73 -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,8 @@ 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 |
|
|
58
|
+
| 3.10.160 | 09/15/2023 | new item fields for additional barcodes |
|
|
57
59
|
| 3.10.159 | 09/12/2023 | added oids to customer properties |
|
|
58
60
|
| 3.10.158 | 09/06/2023 | esp condition for survey trigger |
|
|
59
61
|
| 3.10.157 | 09/05/2023 | auto order schedule - add intervals for 4 6 and 8 weeks |
|
package/api.ts
CHANGED
|
@@ -25166,6 +25166,30 @@ export interface ItemIdentifiers {
|
|
|
25166
25166
|
* @memberof ItemIdentifiers
|
|
25167
25167
|
*/
|
|
25168
25168
|
barcode?: string;
|
|
25169
|
+
/**
|
|
25170
|
+
* Barcode - GTIN 12
|
|
25171
|
+
* @type {string}
|
|
25172
|
+
* @memberof ItemIdentifiers
|
|
25173
|
+
*/
|
|
25174
|
+
barcode_gtin12?: string;
|
|
25175
|
+
/**
|
|
25176
|
+
* Barcode - GTIN 14
|
|
25177
|
+
* @type {string}
|
|
25178
|
+
* @memberof ItemIdentifiers
|
|
25179
|
+
*/
|
|
25180
|
+
barcode_gtin14?: string;
|
|
25181
|
+
/**
|
|
25182
|
+
* Barcode - UPC 11
|
|
25183
|
+
* @type {string}
|
|
25184
|
+
* @memberof ItemIdentifiers
|
|
25185
|
+
*/
|
|
25186
|
+
barcode_upc11?: string;
|
|
25187
|
+
/**
|
|
25188
|
+
* Barcode - UPC 12
|
|
25189
|
+
* @type {string}
|
|
25190
|
+
* @memberof ItemIdentifiers
|
|
25191
|
+
*/
|
|
25192
|
+
barcode_upc12?: string;
|
|
25169
25193
|
/**
|
|
25170
25194
|
* Manufacturer Name
|
|
25171
25195
|
* @type {string}
|
|
@@ -30391,6 +30415,30 @@ export interface OrderItem {
|
|
|
30391
30415
|
* @memberof OrderItem
|
|
30392
30416
|
*/
|
|
30393
30417
|
barcode?: string;
|
|
30418
|
+
/**
|
|
30419
|
+
* Barcode - GTIN 12
|
|
30420
|
+
* @type {string}
|
|
30421
|
+
* @memberof OrderItem
|
|
30422
|
+
*/
|
|
30423
|
+
barcode_gtin12?: string;
|
|
30424
|
+
/**
|
|
30425
|
+
* Barcode - GTIN 14
|
|
30426
|
+
* @type {string}
|
|
30427
|
+
* @memberof OrderItem
|
|
30428
|
+
*/
|
|
30429
|
+
barcode_gtin14?: string;
|
|
30430
|
+
/**
|
|
30431
|
+
* Barcode - UPC 11
|
|
30432
|
+
* @type {string}
|
|
30433
|
+
* @memberof OrderItem
|
|
30434
|
+
*/
|
|
30435
|
+
barcode_upc11?: string;
|
|
30436
|
+
/**
|
|
30437
|
+
* Barcode - UPC 12
|
|
30438
|
+
* @type {string}
|
|
30439
|
+
* @memberof OrderItem
|
|
30440
|
+
*/
|
|
30441
|
+
barcode_upc12?: string;
|
|
30394
30442
|
/**
|
|
30395
30443
|
* Channel partner item id if this order came through a channel partner and the channel partner item id was mapped to an internal item id
|
|
30396
30444
|
* @type {string}
|
|
@@ -34401,6 +34449,12 @@ export interface ReportDataSetQuery {
|
|
|
34401
34449
|
* @memberof ReportDataSetQuery
|
|
34402
34450
|
*/
|
|
34403
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>;
|
|
34404
34458
|
/**
|
|
34405
34459
|
* Result set page size. The default value is 200 records. Max is 10000.
|
|
34406
34460
|
* @type {number}
|
|
@@ -34443,6 +34497,26 @@ export namespace ReportDataSetQuery {
|
|
|
34443
34497
|
}
|
|
34444
34498
|
}
|
|
34445
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
|
+
|
|
34446
34520
|
/**
|
|
34447
34521
|
*
|
|
34448
34522
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -24634,6 +24634,30 @@ export interface ItemIdentifiers {
|
|
|
24634
24634
|
* @memberof ItemIdentifiers
|
|
24635
24635
|
*/
|
|
24636
24636
|
barcode?: string;
|
|
24637
|
+
/**
|
|
24638
|
+
* Barcode - GTIN 12
|
|
24639
|
+
* @type {string}
|
|
24640
|
+
* @memberof ItemIdentifiers
|
|
24641
|
+
*/
|
|
24642
|
+
barcode_gtin12?: string;
|
|
24643
|
+
/**
|
|
24644
|
+
* Barcode - GTIN 14
|
|
24645
|
+
* @type {string}
|
|
24646
|
+
* @memberof ItemIdentifiers
|
|
24647
|
+
*/
|
|
24648
|
+
barcode_gtin14?: string;
|
|
24649
|
+
/**
|
|
24650
|
+
* Barcode - UPC 11
|
|
24651
|
+
* @type {string}
|
|
24652
|
+
* @memberof ItemIdentifiers
|
|
24653
|
+
*/
|
|
24654
|
+
barcode_upc11?: string;
|
|
24655
|
+
/**
|
|
24656
|
+
* Barcode - UPC 12
|
|
24657
|
+
* @type {string}
|
|
24658
|
+
* @memberof ItemIdentifiers
|
|
24659
|
+
*/
|
|
24660
|
+
barcode_upc12?: string;
|
|
24637
24661
|
/**
|
|
24638
24662
|
* Manufacturer Name
|
|
24639
24663
|
* @type {string}
|
|
@@ -29748,6 +29772,30 @@ export interface OrderItem {
|
|
|
29748
29772
|
* @memberof OrderItem
|
|
29749
29773
|
*/
|
|
29750
29774
|
barcode?: string;
|
|
29775
|
+
/**
|
|
29776
|
+
* Barcode - GTIN 12
|
|
29777
|
+
* @type {string}
|
|
29778
|
+
* @memberof OrderItem
|
|
29779
|
+
*/
|
|
29780
|
+
barcode_gtin12?: string;
|
|
29781
|
+
/**
|
|
29782
|
+
* Barcode - GTIN 14
|
|
29783
|
+
* @type {string}
|
|
29784
|
+
* @memberof OrderItem
|
|
29785
|
+
*/
|
|
29786
|
+
barcode_gtin14?: string;
|
|
29787
|
+
/**
|
|
29788
|
+
* Barcode - UPC 11
|
|
29789
|
+
* @type {string}
|
|
29790
|
+
* @memberof OrderItem
|
|
29791
|
+
*/
|
|
29792
|
+
barcode_upc11?: string;
|
|
29793
|
+
/**
|
|
29794
|
+
* Barcode - UPC 12
|
|
29795
|
+
* @type {string}
|
|
29796
|
+
* @memberof OrderItem
|
|
29797
|
+
*/
|
|
29798
|
+
barcode_upc12?: string;
|
|
29751
29799
|
/**
|
|
29752
29800
|
* Channel partner item id if this order came through a channel partner and the channel partner item id was mapped to an internal item id
|
|
29753
29801
|
* @type {string}
|
|
@@ -33684,6 +33732,12 @@ export interface ReportDataSetQuery {
|
|
|
33684
33732
|
* @memberof ReportDataSetQuery
|
|
33685
33733
|
*/
|
|
33686
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>;
|
|
33687
33741
|
/**
|
|
33688
33742
|
* Result set page size. The default value is 200 records. Max is 10000.
|
|
33689
33743
|
* @type {number}
|
|
@@ -33724,6 +33778,25 @@ export declare namespace ReportDataSetQuery {
|
|
|
33724
33778
|
Visualization
|
|
33725
33779
|
}
|
|
33726
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
|
+
}
|
|
33727
33800
|
/**
|
|
33728
33801
|
*
|
|
33729
33802
|
* @export
|