ultracart_rest_api_v2_typescript 3.10.149 → 3.10.150
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.150
|
|
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.150 --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.150 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
|
|
57
58
|
| 3.10.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
58
59
|
| 3.10.148 | 07/03/2023 | chart constant for dw report tool |
|
|
59
60
|
| 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
|
package/api.ts
CHANGED
|
@@ -34805,6 +34805,12 @@ export interface ReportPageVisualization {
|
|
|
34805
34805
|
* @memberof ReportPageVisualization
|
|
34806
34806
|
*/
|
|
34807
34807
|
data_source_name?: string;
|
|
34808
|
+
/**
|
|
34809
|
+
* A unique identifier assigned to the data source.
|
|
34810
|
+
* @type {string}
|
|
34811
|
+
* @memberof ReportPageVisualization
|
|
34812
|
+
*/
|
|
34813
|
+
data_source_uuid?: string;
|
|
34808
34814
|
/**
|
|
34809
34815
|
*
|
|
34810
34816
|
* @type {Array<ReportPageVisualizationDimension>}
|
package/dist/api.d.ts
CHANGED
|
@@ -34073,6 +34073,12 @@ export interface ReportPageVisualization {
|
|
|
34073
34073
|
* @memberof ReportPageVisualization
|
|
34074
34074
|
*/
|
|
34075
34075
|
data_source_name?: string;
|
|
34076
|
+
/**
|
|
34077
|
+
* A unique identifier assigned to the data source.
|
|
34078
|
+
* @type {string}
|
|
34079
|
+
* @memberof ReportPageVisualization
|
|
34080
|
+
*/
|
|
34081
|
+
data_source_uuid?: string;
|
|
34076
34082
|
/**
|
|
34077
34083
|
*
|
|
34078
34084
|
* @type {Array<ReportPageVisualizationDimension>}
|