ultracart_rest_api_v2_typescript 4.0.150 → 4.0.151

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@4.0.150
1
+ ## ultracart_rest_api_v2_typescript@4.0.151
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@4.0.150 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.151 --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
+ | 4.0.151 | 04/24/2023 | internal development - data warehouse |
57
58
  | 4.0.150 | 04/21/2023 | internal development - data warehouse |
58
59
  | 4.0.149 | 04/19/2023 | internal development - data warehouse |
59
60
  | 4.0.148 | 04/19/2023 | internal dev - data warehouse |
@@ -72,7 +72,7 @@ export interface ReportDataSet {
72
72
  */
73
73
  merchant_id?: string;
74
74
  /**
75
- * The size of the pages
75
+ * The total number of pages in the result set
76
76
  * @type {number}
77
77
  * @memberof ReportDataSet
78
78
  */
@@ -15,6 +15,12 @@
15
15
  * @interface ReportDataSetSchema
16
16
  */
17
17
  export interface ReportDataSetSchema {
18
+ /**
19
+ * A JSON representation of the configuration for this visualization
20
+ * @type {string}
21
+ * @memberof ReportDataSetSchema
22
+ */
23
+ config?: string;
18
24
  /**
19
25
  *
20
26
  * @type {string}
@@ -40,6 +40,7 @@ function ReportDataSetSchemaFromJSONTyped(json, ignoreDiscriminator) {
40
40
  return json;
41
41
  }
42
42
  return {
43
+ 'config': !(0, runtime_1.exists)(json, 'config') ? undefined : json['config'],
43
44
  'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
44
45
  'type': !(0, runtime_1.exists)(json, 'type') ? undefined : json['type'],
45
46
  };
@@ -53,6 +54,7 @@ function ReportDataSetSchemaToJSON(value) {
53
54
  return null;
54
55
  }
55
56
  return {
57
+ 'config': value.config,
56
58
  'name': value.name,
57
59
  'type': value.type,
58
60
  };
@@ -15,6 +15,12 @@
15
15
  * @interface ReportDataSourceSchema
16
16
  */
17
17
  export interface ReportDataSourceSchema {
18
+ /**
19
+ * A JSON representation of the configuration for this visualization
20
+ * @type {string}
21
+ * @memberof ReportDataSourceSchema
22
+ */
23
+ config?: string;
18
24
  /**
19
25
  * Whether or not this column can be used as a dimension within a visualization
20
26
  * @type {boolean}
@@ -40,6 +40,7 @@ function ReportDataSourceSchemaFromJSONTyped(json, ignoreDiscriminator) {
40
40
  return json;
41
41
  }
42
42
  return {
43
+ 'config': !(0, runtime_1.exists)(json, 'config') ? undefined : json['config'],
43
44
  'dimension': !(0, runtime_1.exists)(json, 'dimension') ? undefined : json['dimension'],
44
45
  'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
45
46
  'type': !(0, runtime_1.exists)(json, 'type') ? undefined : json['type'],
@@ -54,6 +55,7 @@ function ReportDataSourceSchemaToJSON(value) {
54
55
  return null;
55
56
  }
56
57
  return {
58
+ 'config': value.config,
57
59
  'dimension': value.dimension,
58
60
  'name': value.name,
59
61
  'type': value.type,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.150",
3
+ "version": "4.0.151",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -87,7 +87,7 @@ export interface ReportDataSet {
87
87
  */
88
88
  merchant_id?: string;
89
89
  /**
90
- * The size of the pages
90
+ * The total number of pages in the result set
91
91
  * @type {number}
92
92
  * @memberof ReportDataSet
93
93
  */
@@ -19,6 +19,12 @@ import { exists, mapValues } from '../runtime';
19
19
  * @interface ReportDataSetSchema
20
20
  */
21
21
  export interface ReportDataSetSchema {
22
+ /**
23
+ * A JSON representation of the configuration for this visualization
24
+ * @type {string}
25
+ * @memberof ReportDataSetSchema
26
+ */
27
+ config?: string;
22
28
  /**
23
29
  *
24
30
  * @type {string}
@@ -63,6 +69,7 @@ export function ReportDataSetSchemaFromJSONTyped(json: any, ignoreDiscriminator:
63
69
  }
64
70
  return {
65
71
 
72
+ 'config': !exists(json, 'config') ? undefined : json['config'],
66
73
  'name': !exists(json, 'name') ? undefined : json['name'],
67
74
  'type': !exists(json, 'type') ? undefined : json['type'],
68
75
  };
@@ -77,6 +84,7 @@ export function ReportDataSetSchemaToJSON(value?: ReportDataSetSchema | null): a
77
84
  }
78
85
  return {
79
86
 
87
+ 'config': value.config,
80
88
  'name': value.name,
81
89
  'type': value.type,
82
90
  };
@@ -19,6 +19,12 @@ import { exists, mapValues } from '../runtime';
19
19
  * @interface ReportDataSourceSchema
20
20
  */
21
21
  export interface ReportDataSourceSchema {
22
+ /**
23
+ * A JSON representation of the configuration for this visualization
24
+ * @type {string}
25
+ * @memberof ReportDataSourceSchema
26
+ */
27
+ config?: string;
22
28
  /**
23
29
  * Whether or not this column can be used as a dimension within a visualization
24
30
  * @type {boolean}
@@ -69,6 +75,7 @@ export function ReportDataSourceSchemaFromJSONTyped(json: any, ignoreDiscriminat
69
75
  }
70
76
  return {
71
77
 
78
+ 'config': !exists(json, 'config') ? undefined : json['config'],
72
79
  'dimension': !exists(json, 'dimension') ? undefined : json['dimension'],
73
80
  'name': !exists(json, 'name') ? undefined : json['name'],
74
81
  'type': !exists(json, 'type') ? undefined : json['type'],
@@ -84,6 +91,7 @@ export function ReportDataSourceSchemaToJSON(value?: ReportDataSourceSchema | nu
84
91
  }
85
92
  return {
86
93
 
94
+ 'config': value.config,
87
95
  'dimension': value.dimension,
88
96
  'name': value.name,
89
97
  'type': value.type,