ultracart_rest_api_v2_typescript 3.10.129 → 3.10.131

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.129
1
+ ## ultracart_rest_api_v2_typescript@3.10.131
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.129 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.131 --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.131 | 04/19/2023 | internal dev - data warehouse |
58
+ | 3.10.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
57
59
  | 3.10.129 | 04/11/2023 | missing sezzle payment constant |
58
60
  | 3.10.128 | 04/10/2023 | data warehouse internal dev |
59
61
  | 3.10.127 | 03/29/2023 | internal development |
package/api.ts CHANGED
@@ -31086,6 +31086,12 @@ export interface OrderPaymentTransaction {
31086
31086
  * @memberof OrderPaymentTransaction
31087
31087
  */
31088
31088
  transaction_gateway?: string;
31089
+ /**
31090
+ * Transaction ID
31091
+ * @type {number}
31092
+ * @memberof OrderPaymentTransaction
31093
+ */
31094
+ transaction_id?: number;
31089
31095
  /**
31090
31096
  * Transaction date/time
31091
31097
  * @type {string}
@@ -33396,12 +33402,6 @@ export interface Report {
33396
33402
  * @memberof Report
33397
33403
  */
33398
33404
  default_project_id?: string;
33399
- /**
33400
- *
33401
- * @type {Array<ReportFilter>}
33402
- * @memberof Report
33403
- */
33404
- filters?: Array<ReportFilter>;
33405
33405
  /**
33406
33406
  *
33407
33407
  * @type {string}
@@ -34192,6 +34192,12 @@ export namespace ReportExecuteQueriesRequest {
34192
34192
  * @interface ReportFilter
34193
34193
  */
34194
34194
  export interface ReportFilter {
34195
+ /**
34196
+ * A JSON representation of the configuration for this visualization
34197
+ * @type {string}
34198
+ * @memberof ReportFilter
34199
+ */
34200
+ config?: string;
34195
34201
  /**
34196
34202
  * How this filter connects to the data sources and columns
34197
34203
  * @type {Array<ReportFilterConnection>}
@@ -34204,6 +34210,12 @@ export interface ReportFilter {
34204
34210
  * @memberof ReportFilter
34205
34211
  */
34206
34212
  name?: string;
34213
+ /**
34214
+ * A JSON representation of the style configuration for this visualization
34215
+ * @type {string}
34216
+ * @memberof ReportFilter
34217
+ */
34218
+ styles?: string;
34207
34219
  /**
34208
34220
  * The timezone that the date range is querying on.
34209
34221
  * @type {string}
@@ -34273,6 +34285,12 @@ export interface ReportFilterConnection {
34273
34285
  * @interface ReportPage
34274
34286
  */
34275
34287
  export interface ReportPage {
34288
+ /**
34289
+ *
34290
+ * @type {Array<ReportFilter>}
34291
+ * @memberof ReportPage
34292
+ */
34293
+ filters?: Array<ReportFilter>;
34276
34294
  /**
34277
34295
  * Height of the report page in inches
34278
34296
  * @type {number}
package/dist/api.d.ts CHANGED
@@ -30429,6 +30429,12 @@ export interface OrderPaymentTransaction {
30429
30429
  * @memberof OrderPaymentTransaction
30430
30430
  */
30431
30431
  transaction_gateway?: string;
30432
+ /**
30433
+ * Transaction ID
30434
+ * @type {number}
30435
+ * @memberof OrderPaymentTransaction
30436
+ */
30437
+ transaction_id?: number;
30432
30438
  /**
30433
30439
  * Transaction date/time
30434
30440
  * @type {string}
@@ -32700,12 +32706,6 @@ export interface Report {
32700
32706
  * @memberof Report
32701
32707
  */
32702
32708
  default_project_id?: string;
32703
- /**
32704
- *
32705
- * @type {Array<ReportFilter>}
32706
- * @memberof Report
32707
- */
32708
- filters?: Array<ReportFilter>;
32709
32709
  /**
32710
32710
  *
32711
32711
  * @type {string}
@@ -33473,6 +33473,12 @@ export declare namespace ReportExecuteQueriesRequest {
33473
33473
  * @interface ReportFilter
33474
33474
  */
33475
33475
  export interface ReportFilter {
33476
+ /**
33477
+ * A JSON representation of the configuration for this visualization
33478
+ * @type {string}
33479
+ * @memberof ReportFilter
33480
+ */
33481
+ config?: string;
33476
33482
  /**
33477
33483
  * How this filter connects to the data sources and columns
33478
33484
  * @type {Array<ReportFilterConnection>}
@@ -33485,6 +33491,12 @@ export interface ReportFilter {
33485
33491
  * @memberof ReportFilter
33486
33492
  */
33487
33493
  name?: string;
33494
+ /**
33495
+ * A JSON representation of the style configuration for this visualization
33496
+ * @type {string}
33497
+ * @memberof ReportFilter
33498
+ */
33499
+ styles?: string;
33488
33500
  /**
33489
33501
  * The timezone that the date range is querying on.
33490
33502
  * @type {string}
@@ -33551,6 +33563,12 @@ export interface ReportFilterConnection {
33551
33563
  * @interface ReportPage
33552
33564
  */
33553
33565
  export interface ReportPage {
33566
+ /**
33567
+ *
33568
+ * @type {Array<ReportFilter>}
33569
+ * @memberof ReportPage
33570
+ */
33571
+ filters?: Array<ReportFilter>;
33554
33572
  /**
33555
33573
  * Height of the report page in inches
33556
33574
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.129",
3
+ "version": "3.10.131",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [