ultracart_rest_api_v2_typescript 3.10.132 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.10.132
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.132 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.133 --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.133 | 04/21/2023 | internal development - data warehouse |
57
58
  | 3.10.132 | 04/19/2023 | internal development - data warehouse |
58
59
  | 3.10.131 | 04/19/2023 | internal dev - data warehouse |
59
60
  | 3.10.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
package/api.ts CHANGED
@@ -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
- name?: string;
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
- columns?: Array<ReportDataSetColumn>;
33939
+ c?: Array<ReportDataSetColumn>;
33910
33940
  }
33911
33941
 
33912
33942
  /**
@@ -34198,12 +34228,6 @@ export namespace ReportExecuteQueriesRequest {
34198
34228
  * @interface ReportFilter
34199
34229
  */
34200
34230
  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
34231
  /**
34208
34232
  * How this filter connects to the data sources and columns
34209
34233
  * @type {Array<ReportFilterConnection>}
@@ -34216,12 +34240,6 @@ export interface ReportFilter {
34216
34240
  * @memberof ReportFilter
34217
34241
  */
34218
34242
  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
34243
  /**
34226
34244
  * The timezone that the date range is querying on.
34227
34245
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -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
- name?: string;
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
- columns?: Array<ReportDataSetColumn>;
33231
+ c?: Array<ReportDataSetColumn>;
33202
33232
  }
33203
33233
  /**
33204
33234
  *
@@ -33479,12 +33509,6 @@ export declare namespace ReportExecuteQueriesRequest {
33479
33509
  * @interface ReportFilter
33480
33510
  */
33481
33511
  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
33512
  /**
33489
33513
  * How this filter connects to the data sources and columns
33490
33514
  * @type {Array<ReportFilterConnection>}
@@ -33497,12 +33521,6 @@ export interface ReportFilter {
33497
33521
  * @memberof ReportFilter
33498
33522
  */
33499
33523
  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
33524
  /**
33507
33525
  * The timezone that the date range is querying on.
33508
33526
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.132",
3
+ "version": "3.10.133",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [