ultracart_rest_api_v2_typescript 4.0.167 → 4.0.168
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.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@4.0.168
|
|
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.168 --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.168 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
|
|
57
58
|
| 4.0.167 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
|
|
58
59
|
| 4.0.166 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
59
60
|
| 4.0.165 | 07/03/2023 | chart constant for dw report tool |
|
|
@@ -27,6 +27,12 @@ export interface ReportFilterConnection {
|
|
|
27
27
|
* @memberof ReportFilterConnection
|
|
28
28
|
*/
|
|
29
29
|
data_source_name?: string;
|
|
30
|
+
/**
|
|
31
|
+
* A unique identifier assigned to the data source.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ReportFilterConnection
|
|
34
|
+
*/
|
|
35
|
+
data_source_uuid?: string;
|
|
30
36
|
}
|
|
31
37
|
export declare function ReportFilterConnectionFromJSON(json: any): ReportFilterConnection;
|
|
32
38
|
export declare function ReportFilterConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportFilterConnection;
|
|
@@ -26,6 +26,7 @@ function ReportFilterConnectionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
return {
|
|
27
27
|
'column': !(0, runtime_1.exists)(json, 'column') ? undefined : json['column'],
|
|
28
28
|
'data_source_name': !(0, runtime_1.exists)(json, 'data_source_name') ? undefined : json['data_source_name'],
|
|
29
|
+
'data_source_uuid': !(0, runtime_1.exists)(json, 'data_source_uuid') ? undefined : json['data_source_uuid'],
|
|
29
30
|
};
|
|
30
31
|
}
|
|
31
32
|
exports.ReportFilterConnectionFromJSONTyped = ReportFilterConnectionFromJSONTyped;
|
|
@@ -39,6 +40,7 @@ function ReportFilterConnectionToJSON(value) {
|
|
|
39
40
|
return {
|
|
40
41
|
'column': value.column,
|
|
41
42
|
'data_source_name': value.data_source_name,
|
|
43
|
+
'data_source_uuid': value.data_source_uuid,
|
|
42
44
|
};
|
|
43
45
|
}
|
|
44
46
|
exports.ReportFilterConnectionToJSON = ReportFilterConnectionToJSON;
|
package/package.json
CHANGED
|
@@ -31,6 +31,12 @@ export interface ReportFilterConnection {
|
|
|
31
31
|
* @memberof ReportFilterConnection
|
|
32
32
|
*/
|
|
33
33
|
data_source_name?: string;
|
|
34
|
+
/**
|
|
35
|
+
* A unique identifier assigned to the data source.
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof ReportFilterConnection
|
|
38
|
+
*/
|
|
39
|
+
data_source_uuid?: string;
|
|
34
40
|
}
|
|
35
41
|
|
|
36
42
|
export function ReportFilterConnectionFromJSON(json: any): ReportFilterConnection {
|
|
@@ -45,6 +51,7 @@ export function ReportFilterConnectionFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
45
51
|
|
|
46
52
|
'column': !exists(json, 'column') ? undefined : json['column'],
|
|
47
53
|
'data_source_name': !exists(json, 'data_source_name') ? undefined : json['data_source_name'],
|
|
54
|
+
'data_source_uuid': !exists(json, 'data_source_uuid') ? undefined : json['data_source_uuid'],
|
|
48
55
|
};
|
|
49
56
|
}
|
|
50
57
|
|
|
@@ -59,6 +66,7 @@ export function ReportFilterConnectionToJSON(value?: ReportFilterConnection | nu
|
|
|
59
66
|
|
|
60
67
|
'column': value.column,
|
|
61
68
|
'data_source_name': value.data_source_name,
|
|
69
|
+
'data_source_uuid': value.data_source_uuid,
|
|
62
70
|
};
|
|
63
71
|
}
|
|
64
72
|
|