ultracart_rest_api_v2_typescript 3.10.131 → 3.10.133
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 +72 -16
- package/dist/api.d.ts +71 -16
- 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.133
|
|
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.133 --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.133 | 04/21/2023 | internal development - data warehouse |
|
|
58
|
+
| 3.10.132 | 04/19/2023 | internal development - data warehouse |
|
|
57
59
|
| 3.10.131 | 04/19/2023 | internal dev - data warehouse |
|
|
58
60
|
| 3.10.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
|
|
59
61
|
| 3.10.129 | 04/11/2023 | missing sezzle payment constant |
|
package/api.ts
CHANGED
|
@@ -33402,6 +33402,12 @@ export interface Report {
|
|
|
33402
33402
|
* @memberof Report
|
|
33403
33403
|
*/
|
|
33404
33404
|
default_project_id?: string;
|
|
33405
|
+
/**
|
|
33406
|
+
*
|
|
33407
|
+
* @type {Array<ReportFilter>}
|
|
33408
|
+
* @memberof Report
|
|
33409
|
+
*/
|
|
33410
|
+
filters?: Array<ReportFilter>;
|
|
33405
33411
|
/**
|
|
33406
33412
|
*
|
|
33407
33413
|
* @type {string}
|
|
@@ -33641,12 +33647,42 @@ export namespace ReportDataSet {
|
|
|
33641
33647
|
* @interface ReportDataSetColumn
|
|
33642
33648
|
*/
|
|
33643
33649
|
export interface ReportDataSetColumn {
|
|
33650
|
+
/**
|
|
33651
|
+
*
|
|
33652
|
+
* @type {boolean}
|
|
33653
|
+
* @memberof ReportDataSetColumn
|
|
33654
|
+
*/
|
|
33655
|
+
_in?: boolean;
|
|
33644
33656
|
/**
|
|
33645
33657
|
*
|
|
33646
33658
|
* @type {string}
|
|
33647
33659
|
* @memberof ReportDataSetColumn
|
|
33648
33660
|
*/
|
|
33649
|
-
|
|
33661
|
+
n?: string;
|
|
33662
|
+
/**
|
|
33663
|
+
*
|
|
33664
|
+
* @type {string}
|
|
33665
|
+
* @memberof ReportDataSetColumn
|
|
33666
|
+
*/
|
|
33667
|
+
vd?: string;
|
|
33668
|
+
/**
|
|
33669
|
+
*
|
|
33670
|
+
* @type {string}
|
|
33671
|
+
* @memberof ReportDataSetColumn
|
|
33672
|
+
*/
|
|
33673
|
+
vdt?: string;
|
|
33674
|
+
/**
|
|
33675
|
+
*
|
|
33676
|
+
* @type {number}
|
|
33677
|
+
* @memberof ReportDataSetColumn
|
|
33678
|
+
*/
|
|
33679
|
+
vn?: number;
|
|
33680
|
+
/**
|
|
33681
|
+
*
|
|
33682
|
+
* @type {string}
|
|
33683
|
+
* @memberof ReportDataSetColumn
|
|
33684
|
+
*/
|
|
33685
|
+
vs?: string;
|
|
33650
33686
|
}
|
|
33651
33687
|
|
|
33652
33688
|
/**
|
|
@@ -33900,7 +33936,7 @@ export interface ReportDataSetRow {
|
|
|
33900
33936
|
* @type {Array<ReportDataSetColumn>}
|
|
33901
33937
|
* @memberof ReportDataSetRow
|
|
33902
33938
|
*/
|
|
33903
|
-
|
|
33939
|
+
c?: Array<ReportDataSetColumn>;
|
|
33904
33940
|
}
|
|
33905
33941
|
|
|
33906
33942
|
/**
|
|
@@ -34192,12 +34228,6 @@ export namespace ReportExecuteQueriesRequest {
|
|
|
34192
34228
|
* @interface ReportFilter
|
|
34193
34229
|
*/
|
|
34194
34230
|
export interface ReportFilter {
|
|
34195
|
-
/**
|
|
34196
|
-
* A JSON representation of the configuration for this visualization
|
|
34197
|
-
* @type {string}
|
|
34198
|
-
* @memberof ReportFilter
|
|
34199
|
-
*/
|
|
34200
|
-
config?: string;
|
|
34201
34231
|
/**
|
|
34202
34232
|
* How this filter connects to the data sources and columns
|
|
34203
34233
|
* @type {Array<ReportFilterConnection>}
|
|
@@ -34210,12 +34240,6 @@ export interface ReportFilter {
|
|
|
34210
34240
|
* @memberof ReportFilter
|
|
34211
34241
|
*/
|
|
34212
34242
|
name?: string;
|
|
34213
|
-
/**
|
|
34214
|
-
* A JSON representation of the style configuration for this visualization
|
|
34215
|
-
* @type {string}
|
|
34216
|
-
* @memberof ReportFilter
|
|
34217
|
-
*/
|
|
34218
|
-
styles?: string;
|
|
34219
34243
|
/**
|
|
34220
34244
|
* The timezone that the date range is querying on.
|
|
34221
34245
|
* @type {string}
|
|
@@ -34287,10 +34311,10 @@ export interface ReportFilterConnection {
|
|
|
34287
34311
|
export interface ReportPage {
|
|
34288
34312
|
/**
|
|
34289
34313
|
*
|
|
34290
|
-
* @type {Array<
|
|
34314
|
+
* @type {Array<ReportPageFilter>}
|
|
34291
34315
|
* @memberof ReportPage
|
|
34292
34316
|
*/
|
|
34293
|
-
filters?: Array<
|
|
34317
|
+
filters?: Array<ReportPageFilter>;
|
|
34294
34318
|
/**
|
|
34295
34319
|
* Height of the report page in inches
|
|
34296
34320
|
* @type {number}
|
|
@@ -34317,6 +34341,38 @@ export interface ReportPage {
|
|
|
34317
34341
|
width?: number;
|
|
34318
34342
|
}
|
|
34319
34343
|
|
|
34344
|
+
/**
|
|
34345
|
+
*
|
|
34346
|
+
* @export
|
|
34347
|
+
* @interface ReportPageFilter
|
|
34348
|
+
*/
|
|
34349
|
+
export interface ReportPageFilter {
|
|
34350
|
+
/**
|
|
34351
|
+
* A JSON representation of the configuration for this visualization
|
|
34352
|
+
* @type {string}
|
|
34353
|
+
* @memberof ReportPageFilter
|
|
34354
|
+
*/
|
|
34355
|
+
config?: string;
|
|
34356
|
+
/**
|
|
34357
|
+
*
|
|
34358
|
+
* @type {string}
|
|
34359
|
+
* @memberof ReportPageFilter
|
|
34360
|
+
*/
|
|
34361
|
+
name?: string;
|
|
34362
|
+
/**
|
|
34363
|
+
* A JSON representation of the style configuration for this visualization
|
|
34364
|
+
* @type {string}
|
|
34365
|
+
* @memberof ReportPageFilter
|
|
34366
|
+
*/
|
|
34367
|
+
styles?: string;
|
|
34368
|
+
/**
|
|
34369
|
+
* Unique UUID assigned to the filter. Assists when returning values that the filter can use.
|
|
34370
|
+
* @type {string}
|
|
34371
|
+
* @memberof ReportPageFilter
|
|
34372
|
+
*/
|
|
34373
|
+
uuid?: string;
|
|
34374
|
+
}
|
|
34375
|
+
|
|
34320
34376
|
/**
|
|
34321
34377
|
*
|
|
34322
34378
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -32706,6 +32706,12 @@ export interface Report {
|
|
|
32706
32706
|
* @memberof Report
|
|
32707
32707
|
*/
|
|
32708
32708
|
default_project_id?: string;
|
|
32709
|
+
/**
|
|
32710
|
+
*
|
|
32711
|
+
* @type {Array<ReportFilter>}
|
|
32712
|
+
* @memberof Report
|
|
32713
|
+
*/
|
|
32714
|
+
filters?: Array<ReportFilter>;
|
|
32709
32715
|
/**
|
|
32710
32716
|
*
|
|
32711
32717
|
* @type {string}
|
|
@@ -32939,12 +32945,42 @@ export declare namespace ReportDataSet {
|
|
|
32939
32945
|
* @interface ReportDataSetColumn
|
|
32940
32946
|
*/
|
|
32941
32947
|
export interface ReportDataSetColumn {
|
|
32948
|
+
/**
|
|
32949
|
+
*
|
|
32950
|
+
* @type {boolean}
|
|
32951
|
+
* @memberof ReportDataSetColumn
|
|
32952
|
+
*/
|
|
32953
|
+
_in?: boolean;
|
|
32942
32954
|
/**
|
|
32943
32955
|
*
|
|
32944
32956
|
* @type {string}
|
|
32945
32957
|
* @memberof ReportDataSetColumn
|
|
32946
32958
|
*/
|
|
32947
|
-
|
|
32959
|
+
n?: string;
|
|
32960
|
+
/**
|
|
32961
|
+
*
|
|
32962
|
+
* @type {string}
|
|
32963
|
+
* @memberof ReportDataSetColumn
|
|
32964
|
+
*/
|
|
32965
|
+
vd?: string;
|
|
32966
|
+
/**
|
|
32967
|
+
*
|
|
32968
|
+
* @type {string}
|
|
32969
|
+
* @memberof ReportDataSetColumn
|
|
32970
|
+
*/
|
|
32971
|
+
vdt?: string;
|
|
32972
|
+
/**
|
|
32973
|
+
*
|
|
32974
|
+
* @type {number}
|
|
32975
|
+
* @memberof ReportDataSetColumn
|
|
32976
|
+
*/
|
|
32977
|
+
vn?: number;
|
|
32978
|
+
/**
|
|
32979
|
+
*
|
|
32980
|
+
* @type {string}
|
|
32981
|
+
* @memberof ReportDataSetColumn
|
|
32982
|
+
*/
|
|
32983
|
+
vs?: string;
|
|
32948
32984
|
}
|
|
32949
32985
|
/**
|
|
32950
32986
|
*
|
|
@@ -33192,7 +33228,7 @@ export interface ReportDataSetRow {
|
|
|
33192
33228
|
* @type {Array<ReportDataSetColumn>}
|
|
33193
33229
|
* @memberof ReportDataSetRow
|
|
33194
33230
|
*/
|
|
33195
|
-
|
|
33231
|
+
c?: Array<ReportDataSetColumn>;
|
|
33196
33232
|
}
|
|
33197
33233
|
/**
|
|
33198
33234
|
*
|
|
@@ -33473,12 +33509,6 @@ export declare namespace ReportExecuteQueriesRequest {
|
|
|
33473
33509
|
* @interface ReportFilter
|
|
33474
33510
|
*/
|
|
33475
33511
|
export interface ReportFilter {
|
|
33476
|
-
/**
|
|
33477
|
-
* A JSON representation of the configuration for this visualization
|
|
33478
|
-
* @type {string}
|
|
33479
|
-
* @memberof ReportFilter
|
|
33480
|
-
*/
|
|
33481
|
-
config?: string;
|
|
33482
33512
|
/**
|
|
33483
33513
|
* How this filter connects to the data sources and columns
|
|
33484
33514
|
* @type {Array<ReportFilterConnection>}
|
|
@@ -33491,12 +33521,6 @@ export interface ReportFilter {
|
|
|
33491
33521
|
* @memberof ReportFilter
|
|
33492
33522
|
*/
|
|
33493
33523
|
name?: string;
|
|
33494
|
-
/**
|
|
33495
|
-
* A JSON representation of the style configuration for this visualization
|
|
33496
|
-
* @type {string}
|
|
33497
|
-
* @memberof ReportFilter
|
|
33498
|
-
*/
|
|
33499
|
-
styles?: string;
|
|
33500
33524
|
/**
|
|
33501
33525
|
* The timezone that the date range is querying on.
|
|
33502
33526
|
* @type {string}
|
|
@@ -33565,10 +33589,10 @@ export interface ReportFilterConnection {
|
|
|
33565
33589
|
export interface ReportPage {
|
|
33566
33590
|
/**
|
|
33567
33591
|
*
|
|
33568
|
-
* @type {Array<
|
|
33592
|
+
* @type {Array<ReportPageFilter>}
|
|
33569
33593
|
* @memberof ReportPage
|
|
33570
33594
|
*/
|
|
33571
|
-
filters?: Array<
|
|
33595
|
+
filters?: Array<ReportPageFilter>;
|
|
33572
33596
|
/**
|
|
33573
33597
|
* Height of the report page in inches
|
|
33574
33598
|
* @type {number}
|
|
@@ -33594,6 +33618,37 @@ export interface ReportPage {
|
|
|
33594
33618
|
*/
|
|
33595
33619
|
width?: number;
|
|
33596
33620
|
}
|
|
33621
|
+
/**
|
|
33622
|
+
*
|
|
33623
|
+
* @export
|
|
33624
|
+
* @interface ReportPageFilter
|
|
33625
|
+
*/
|
|
33626
|
+
export interface ReportPageFilter {
|
|
33627
|
+
/**
|
|
33628
|
+
* A JSON representation of the configuration for this visualization
|
|
33629
|
+
* @type {string}
|
|
33630
|
+
* @memberof ReportPageFilter
|
|
33631
|
+
*/
|
|
33632
|
+
config?: string;
|
|
33633
|
+
/**
|
|
33634
|
+
*
|
|
33635
|
+
* @type {string}
|
|
33636
|
+
* @memberof ReportPageFilter
|
|
33637
|
+
*/
|
|
33638
|
+
name?: string;
|
|
33639
|
+
/**
|
|
33640
|
+
* A JSON representation of the style configuration for this visualization
|
|
33641
|
+
* @type {string}
|
|
33642
|
+
* @memberof ReportPageFilter
|
|
33643
|
+
*/
|
|
33644
|
+
styles?: string;
|
|
33645
|
+
/**
|
|
33646
|
+
* Unique UUID assigned to the filter. Assists when returning values that the filter can use.
|
|
33647
|
+
* @type {string}
|
|
33648
|
+
* @memberof ReportPageFilter
|
|
33649
|
+
*/
|
|
33650
|
+
uuid?: string;
|
|
33651
|
+
}
|
|
33597
33652
|
/**
|
|
33598
33653
|
*
|
|
33599
33654
|
* @export
|