ultracart_rest_api_v2_typescript 3.10.130 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.10.130
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.130 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.132 --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.132 | 04/19/2023 | internal development - data warehouse |
58
+ | 3.10.131 | 04/19/2023 | internal dev - data warehouse |
57
59
  | 3.10.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
58
60
  | 3.10.129 | 04/11/2023 | missing sezzle payment constant |
59
61
  | 3.10.128 | 04/10/2023 | data warehouse internal dev |
package/api.ts CHANGED
@@ -34198,6 +34198,12 @@ export namespace ReportExecuteQueriesRequest {
34198
34198
  * @interface ReportFilter
34199
34199
  */
34200
34200
  export interface ReportFilter {
34201
+ /**
34202
+ * A JSON representation of the configuration for this visualization
34203
+ * @type {string}
34204
+ * @memberof ReportFilter
34205
+ */
34206
+ config?: string;
34201
34207
  /**
34202
34208
  * How this filter connects to the data sources and columns
34203
34209
  * @type {Array<ReportFilterConnection>}
@@ -34210,6 +34216,12 @@ export interface ReportFilter {
34210
34216
  * @memberof ReportFilter
34211
34217
  */
34212
34218
  name?: string;
34219
+ /**
34220
+ * A JSON representation of the style configuration for this visualization
34221
+ * @type {string}
34222
+ * @memberof ReportFilter
34223
+ */
34224
+ styles?: string;
34213
34225
  /**
34214
34226
  * The timezone that the date range is querying on.
34215
34227
  * @type {string}
@@ -34279,6 +34291,12 @@ export interface ReportFilterConnection {
34279
34291
  * @interface ReportPage
34280
34292
  */
34281
34293
  export interface ReportPage {
34294
+ /**
34295
+ *
34296
+ * @type {Array<ReportPageFilter>}
34297
+ * @memberof ReportPage
34298
+ */
34299
+ filters?: Array<ReportPageFilter>;
34282
34300
  /**
34283
34301
  * Height of the report page in inches
34284
34302
  * @type {number}
@@ -34305,6 +34323,38 @@ export interface ReportPage {
34305
34323
  width?: number;
34306
34324
  }
34307
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
+
34308
34358
  /**
34309
34359
  *
34310
34360
  * @export
package/dist/api.d.ts CHANGED
@@ -33479,6 +33479,12 @@ export declare namespace ReportExecuteQueriesRequest {
33479
33479
  * @interface ReportFilter
33480
33480
  */
33481
33481
  export interface ReportFilter {
33482
+ /**
33483
+ * A JSON representation of the configuration for this visualization
33484
+ * @type {string}
33485
+ * @memberof ReportFilter
33486
+ */
33487
+ config?: string;
33482
33488
  /**
33483
33489
  * How this filter connects to the data sources and columns
33484
33490
  * @type {Array<ReportFilterConnection>}
@@ -33491,6 +33497,12 @@ export interface ReportFilter {
33491
33497
  * @memberof ReportFilter
33492
33498
  */
33493
33499
  name?: string;
33500
+ /**
33501
+ * A JSON representation of the style configuration for this visualization
33502
+ * @type {string}
33503
+ * @memberof ReportFilter
33504
+ */
33505
+ styles?: string;
33494
33506
  /**
33495
33507
  * The timezone that the date range is querying on.
33496
33508
  * @type {string}
@@ -33557,6 +33569,12 @@ export interface ReportFilterConnection {
33557
33569
  * @interface ReportPage
33558
33570
  */
33559
33571
  export interface ReportPage {
33572
+ /**
33573
+ *
33574
+ * @type {Array<ReportPageFilter>}
33575
+ * @memberof ReportPage
33576
+ */
33577
+ filters?: Array<ReportPageFilter>;
33560
33578
  /**
33561
33579
  * Height of the report page in inches
33562
33580
  * @type {number}
@@ -33582,6 +33600,37 @@ export interface ReportPage {
33582
33600
  */
33583
33601
  width?: number;
33584
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
+ }
33585
33634
  /**
33586
33635
  *
33587
33636
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.130",
3
+ "version": "3.10.132",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [