ultracart_rest_api_v2_typescript 3.10.131 → 3.10.132
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 +40 -2
- package/dist/api.d.ts +39 -2
- 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.132
|
|
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.132 --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.132 | 04/19/2023 | internal development - data warehouse |
|
|
57
58
|
| 3.10.131 | 04/19/2023 | internal dev - data warehouse |
|
|
58
59
|
| 3.10.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
|
|
59
60
|
| 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}
|
|
@@ -34287,10 +34293,10 @@ export interface ReportFilterConnection {
|
|
|
34287
34293
|
export interface ReportPage {
|
|
34288
34294
|
/**
|
|
34289
34295
|
*
|
|
34290
|
-
* @type {Array<
|
|
34296
|
+
* @type {Array<ReportPageFilter>}
|
|
34291
34297
|
* @memberof ReportPage
|
|
34292
34298
|
*/
|
|
34293
|
-
filters?: Array<
|
|
34299
|
+
filters?: Array<ReportPageFilter>;
|
|
34294
34300
|
/**
|
|
34295
34301
|
* Height of the report page in inches
|
|
34296
34302
|
* @type {number}
|
|
@@ -34317,6 +34323,38 @@ export interface ReportPage {
|
|
|
34317
34323
|
width?: number;
|
|
34318
34324
|
}
|
|
34319
34325
|
|
|
34326
|
+
/**
|
|
34327
|
+
*
|
|
34328
|
+
* @export
|
|
34329
|
+
* @interface ReportPageFilter
|
|
34330
|
+
*/
|
|
34331
|
+
export interface ReportPageFilter {
|
|
34332
|
+
/**
|
|
34333
|
+
* A JSON representation of the configuration for this visualization
|
|
34334
|
+
* @type {string}
|
|
34335
|
+
* @memberof ReportPageFilter
|
|
34336
|
+
*/
|
|
34337
|
+
config?: string;
|
|
34338
|
+
/**
|
|
34339
|
+
*
|
|
34340
|
+
* @type {string}
|
|
34341
|
+
* @memberof ReportPageFilter
|
|
34342
|
+
*/
|
|
34343
|
+
name?: string;
|
|
34344
|
+
/**
|
|
34345
|
+
* A JSON representation of the style configuration for this visualization
|
|
34346
|
+
* @type {string}
|
|
34347
|
+
* @memberof ReportPageFilter
|
|
34348
|
+
*/
|
|
34349
|
+
styles?: string;
|
|
34350
|
+
/**
|
|
34351
|
+
* Unique UUID assigned to the filter. Assists when returning values that the filter can use.
|
|
34352
|
+
* @type {string}
|
|
34353
|
+
* @memberof ReportPageFilter
|
|
34354
|
+
*/
|
|
34355
|
+
uuid?: string;
|
|
34356
|
+
}
|
|
34357
|
+
|
|
34320
34358
|
/**
|
|
34321
34359
|
*
|
|
34322
34360
|
* @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}
|
|
@@ -33565,10 +33571,10 @@ export interface ReportFilterConnection {
|
|
|
33565
33571
|
export interface ReportPage {
|
|
33566
33572
|
/**
|
|
33567
33573
|
*
|
|
33568
|
-
* @type {Array<
|
|
33574
|
+
* @type {Array<ReportPageFilter>}
|
|
33569
33575
|
* @memberof ReportPage
|
|
33570
33576
|
*/
|
|
33571
|
-
filters?: Array<
|
|
33577
|
+
filters?: Array<ReportPageFilter>;
|
|
33572
33578
|
/**
|
|
33573
33579
|
* Height of the report page in inches
|
|
33574
33580
|
* @type {number}
|
|
@@ -33594,6 +33600,37 @@ export interface ReportPage {
|
|
|
33594
33600
|
*/
|
|
33595
33601
|
width?: number;
|
|
33596
33602
|
}
|
|
33603
|
+
/**
|
|
33604
|
+
*
|
|
33605
|
+
* @export
|
|
33606
|
+
* @interface ReportPageFilter
|
|
33607
|
+
*/
|
|
33608
|
+
export interface ReportPageFilter {
|
|
33609
|
+
/**
|
|
33610
|
+
* A JSON representation of the configuration for this visualization
|
|
33611
|
+
* @type {string}
|
|
33612
|
+
* @memberof ReportPageFilter
|
|
33613
|
+
*/
|
|
33614
|
+
config?: string;
|
|
33615
|
+
/**
|
|
33616
|
+
*
|
|
33617
|
+
* @type {string}
|
|
33618
|
+
* @memberof ReportPageFilter
|
|
33619
|
+
*/
|
|
33620
|
+
name?: string;
|
|
33621
|
+
/**
|
|
33622
|
+
* A JSON representation of the style configuration for this visualization
|
|
33623
|
+
* @type {string}
|
|
33624
|
+
* @memberof ReportPageFilter
|
|
33625
|
+
*/
|
|
33626
|
+
styles?: string;
|
|
33627
|
+
/**
|
|
33628
|
+
* Unique UUID assigned to the filter. Assists when returning values that the filter can use.
|
|
33629
|
+
* @type {string}
|
|
33630
|
+
* @memberof ReportPageFilter
|
|
33631
|
+
*/
|
|
33632
|
+
uuid?: string;
|
|
33633
|
+
}
|
|
33597
33634
|
/**
|
|
33598
33635
|
*
|
|
33599
33636
|
* @export
|