ultracart_rest_api_v2_typescript 3.10.132 → 3.10.134
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 +45 -15
- package/dist/api.d.ts +45 -15
- 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.134
|
|
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.134 --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.134 | 04/24/2023 | internal development - data warehouse |
|
|
58
|
+
| 3.10.133 | 04/21/2023 | internal development - data warehouse |
|
|
57
59
|
| 3.10.132 | 04/19/2023 | internal development - data warehouse |
|
|
58
60
|
| 3.10.131 | 04/19/2023 | internal dev - data warehouse |
|
|
59
61
|
| 3.10.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
|
package/api.ts
CHANGED
|
@@ -33588,7 +33588,7 @@ export interface ReportDataSet {
|
|
|
33588
33588
|
*/
|
|
33589
33589
|
merchant_id?: string;
|
|
33590
33590
|
/**
|
|
33591
|
-
* The
|
|
33591
|
+
* The total number of pages in the result set
|
|
33592
33592
|
* @type {number}
|
|
33593
33593
|
* @memberof ReportDataSet
|
|
33594
33594
|
*/
|
|
@@ -33647,12 +33647,42 @@ export namespace ReportDataSet {
|
|
|
33647
33647
|
* @interface ReportDataSetColumn
|
|
33648
33648
|
*/
|
|
33649
33649
|
export interface ReportDataSetColumn {
|
|
33650
|
+
/**
|
|
33651
|
+
*
|
|
33652
|
+
* @type {boolean}
|
|
33653
|
+
* @memberof ReportDataSetColumn
|
|
33654
|
+
*/
|
|
33655
|
+
_in?: boolean;
|
|
33650
33656
|
/**
|
|
33651
33657
|
*
|
|
33652
33658
|
* @type {string}
|
|
33653
33659
|
* @memberof ReportDataSetColumn
|
|
33654
33660
|
*/
|
|
33655
|
-
|
|
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;
|
|
33656
33686
|
}
|
|
33657
33687
|
|
|
33658
33688
|
/**
|
|
@@ -33906,7 +33936,7 @@ export interface ReportDataSetRow {
|
|
|
33906
33936
|
* @type {Array<ReportDataSetColumn>}
|
|
33907
33937
|
* @memberof ReportDataSetRow
|
|
33908
33938
|
*/
|
|
33909
|
-
|
|
33939
|
+
c?: Array<ReportDataSetColumn>;
|
|
33910
33940
|
}
|
|
33911
33941
|
|
|
33912
33942
|
/**
|
|
@@ -33915,6 +33945,12 @@ export interface ReportDataSetRow {
|
|
|
33915
33945
|
* @interface ReportDataSetSchema
|
|
33916
33946
|
*/
|
|
33917
33947
|
export interface ReportDataSetSchema {
|
|
33948
|
+
/**
|
|
33949
|
+
* A JSON representation of the configuration for this visualization
|
|
33950
|
+
* @type {string}
|
|
33951
|
+
* @memberof ReportDataSetSchema
|
|
33952
|
+
*/
|
|
33953
|
+
config?: string;
|
|
33918
33954
|
/**
|
|
33919
33955
|
*
|
|
33920
33956
|
* @type {string}
|
|
@@ -34003,6 +34039,12 @@ export interface ReportDataSource {
|
|
|
34003
34039
|
* @interface ReportDataSourceSchema
|
|
34004
34040
|
*/
|
|
34005
34041
|
export interface ReportDataSourceSchema {
|
|
34042
|
+
/**
|
|
34043
|
+
* A JSON representation of the configuration for this visualization
|
|
34044
|
+
* @type {string}
|
|
34045
|
+
* @memberof ReportDataSourceSchema
|
|
34046
|
+
*/
|
|
34047
|
+
config?: string;
|
|
34006
34048
|
/**
|
|
34007
34049
|
* Whether or not this column can be used as a dimension within a visualization
|
|
34008
34050
|
* @type {boolean}
|
|
@@ -34198,12 +34240,6 @@ export namespace ReportExecuteQueriesRequest {
|
|
|
34198
34240
|
* @interface ReportFilter
|
|
34199
34241
|
*/
|
|
34200
34242
|
export interface ReportFilter {
|
|
34201
|
-
/**
|
|
34202
|
-
* A JSON representation of the configuration for this visualization
|
|
34203
|
-
* @type {string}
|
|
34204
|
-
* @memberof ReportFilter
|
|
34205
|
-
*/
|
|
34206
|
-
config?: string;
|
|
34207
34243
|
/**
|
|
34208
34244
|
* How this filter connects to the data sources and columns
|
|
34209
34245
|
* @type {Array<ReportFilterConnection>}
|
|
@@ -34216,12 +34252,6 @@ export interface ReportFilter {
|
|
|
34216
34252
|
* @memberof ReportFilter
|
|
34217
34253
|
*/
|
|
34218
34254
|
name?: string;
|
|
34219
|
-
/**
|
|
34220
|
-
* A JSON representation of the style configuration for this visualization
|
|
34221
|
-
* @type {string}
|
|
34222
|
-
* @memberof ReportFilter
|
|
34223
|
-
*/
|
|
34224
|
-
styles?: string;
|
|
34225
34255
|
/**
|
|
34226
34256
|
* The timezone that the date range is querying on.
|
|
34227
34257
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -32888,7 +32888,7 @@ export interface ReportDataSet {
|
|
|
32888
32888
|
*/
|
|
32889
32889
|
merchant_id?: string;
|
|
32890
32890
|
/**
|
|
32891
|
-
* The
|
|
32891
|
+
* The total number of pages in the result set
|
|
32892
32892
|
* @type {number}
|
|
32893
32893
|
* @memberof ReportDataSet
|
|
32894
32894
|
*/
|
|
@@ -32945,12 +32945,42 @@ export declare namespace ReportDataSet {
|
|
|
32945
32945
|
* @interface ReportDataSetColumn
|
|
32946
32946
|
*/
|
|
32947
32947
|
export interface ReportDataSetColumn {
|
|
32948
|
+
/**
|
|
32949
|
+
*
|
|
32950
|
+
* @type {boolean}
|
|
32951
|
+
* @memberof ReportDataSetColumn
|
|
32952
|
+
*/
|
|
32953
|
+
_in?: boolean;
|
|
32948
32954
|
/**
|
|
32949
32955
|
*
|
|
32950
32956
|
* @type {string}
|
|
32951
32957
|
* @memberof ReportDataSetColumn
|
|
32952
32958
|
*/
|
|
32953
|
-
|
|
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;
|
|
32954
32984
|
}
|
|
32955
32985
|
/**
|
|
32956
32986
|
*
|
|
@@ -33198,7 +33228,7 @@ export interface ReportDataSetRow {
|
|
|
33198
33228
|
* @type {Array<ReportDataSetColumn>}
|
|
33199
33229
|
* @memberof ReportDataSetRow
|
|
33200
33230
|
*/
|
|
33201
|
-
|
|
33231
|
+
c?: Array<ReportDataSetColumn>;
|
|
33202
33232
|
}
|
|
33203
33233
|
/**
|
|
33204
33234
|
*
|
|
@@ -33206,6 +33236,12 @@ export interface ReportDataSetRow {
|
|
|
33206
33236
|
* @interface ReportDataSetSchema
|
|
33207
33237
|
*/
|
|
33208
33238
|
export interface ReportDataSetSchema {
|
|
33239
|
+
/**
|
|
33240
|
+
* A JSON representation of the configuration for this visualization
|
|
33241
|
+
* @type {string}
|
|
33242
|
+
* @memberof ReportDataSetSchema
|
|
33243
|
+
*/
|
|
33244
|
+
config?: string;
|
|
33209
33245
|
/**
|
|
33210
33246
|
*
|
|
33211
33247
|
* @type {string}
|
|
@@ -33291,6 +33327,12 @@ export interface ReportDataSource {
|
|
|
33291
33327
|
* @interface ReportDataSourceSchema
|
|
33292
33328
|
*/
|
|
33293
33329
|
export interface ReportDataSourceSchema {
|
|
33330
|
+
/**
|
|
33331
|
+
* A JSON representation of the configuration for this visualization
|
|
33332
|
+
* @type {string}
|
|
33333
|
+
* @memberof ReportDataSourceSchema
|
|
33334
|
+
*/
|
|
33335
|
+
config?: string;
|
|
33294
33336
|
/**
|
|
33295
33337
|
* Whether or not this column can be used as a dimension within a visualization
|
|
33296
33338
|
* @type {boolean}
|
|
@@ -33479,12 +33521,6 @@ export declare namespace ReportExecuteQueriesRequest {
|
|
|
33479
33521
|
* @interface ReportFilter
|
|
33480
33522
|
*/
|
|
33481
33523
|
export interface ReportFilter {
|
|
33482
|
-
/**
|
|
33483
|
-
* A JSON representation of the configuration for this visualization
|
|
33484
|
-
* @type {string}
|
|
33485
|
-
* @memberof ReportFilter
|
|
33486
|
-
*/
|
|
33487
|
-
config?: string;
|
|
33488
33524
|
/**
|
|
33489
33525
|
* How this filter connects to the data sources and columns
|
|
33490
33526
|
* @type {Array<ReportFilterConnection>}
|
|
@@ -33497,12 +33533,6 @@ export interface ReportFilter {
|
|
|
33497
33533
|
* @memberof ReportFilter
|
|
33498
33534
|
*/
|
|
33499
33535
|
name?: string;
|
|
33500
|
-
/**
|
|
33501
|
-
* A JSON representation of the style configuration for this visualization
|
|
33502
|
-
* @type {string}
|
|
33503
|
-
* @memberof ReportFilter
|
|
33504
|
-
*/
|
|
33505
|
-
styles?: string;
|
|
33506
33536
|
/**
|
|
33507
33537
|
* The timezone that the date range is querying on.
|
|
33508
33538
|
* @type {string}
|