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 +3 -2
- package/dist/models/ReportDataSet.d.ts +1 -1
- package/dist/models/ReportDataSetSchema.d.ts +6 -0
- package/dist/models/ReportDataSetSchema.js +2 -0
- package/dist/models/ReportDataSourceSchema.d.ts +6 -0
- package/dist/models/ReportDataSourceSchema.js +2 -0
- package/package.json +1 -1
- package/src/models/ReportDataSet.ts +1 -1
- package/src/models/ReportDataSetSchema.ts +8 -0
- package/src/models/ReportDataSourceSchema.ts +8 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@4.0.
|
|
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.
|
|
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 |
|
|
@@ -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
|
@@ -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,
|