ultracart_rest_api_v2_typescript 3.10.150 → 3.10.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/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.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@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.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
|
+
| 3.10.151 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
|
|
57
58
|
| 3.10.150 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
|
|
58
59
|
| 3.10.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
59
60
|
| 3.10.148 | 07/03/2023 | chart constant for dw report tool |
|
package/api.ts
CHANGED
|
@@ -34715,6 +34715,12 @@ export interface ReportFilterConnection {
|
|
|
34715
34715
|
* @memberof ReportFilterConnection
|
|
34716
34716
|
*/
|
|
34717
34717
|
data_source_name?: string;
|
|
34718
|
+
/**
|
|
34719
|
+
* A unique identifier assigned to the data source.
|
|
34720
|
+
* @type {string}
|
|
34721
|
+
* @memberof ReportFilterConnection
|
|
34722
|
+
*/
|
|
34723
|
+
data_source_uuid?: string;
|
|
34718
34724
|
}
|
|
34719
34725
|
|
|
34720
34726
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -33986,6 +33986,12 @@ export interface ReportFilterConnection {
|
|
|
33986
33986
|
* @memberof ReportFilterConnection
|
|
33987
33987
|
*/
|
|
33988
33988
|
data_source_name?: string;
|
|
33989
|
+
/**
|
|
33990
|
+
* A unique identifier assigned to the data source.
|
|
33991
|
+
* @type {string}
|
|
33992
|
+
* @memberof ReportFilterConnection
|
|
33993
|
+
*/
|
|
33994
|
+
data_source_uuid?: string;
|
|
33989
33995
|
}
|
|
33990
33996
|
/**
|
|
33991
33997
|
*
|