ultracart_rest_api_v2_typescript 4.0.164 → 4.0.165
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.165
|
|
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.165 --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.165 | 07/03/2023 | chart constant for dw report tool |
|
|
57
58
|
| 4.0.164 | 06/23/2023 | gauge constant for page visualization library |
|
|
58
59
|
| 4.0.163 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
|
|
59
60
|
| 4.0.162 | 06/20/2023 | coupon add allowed values for usable_by and new OncePerNewCustomerForItem flag |
|
|
@@ -82,6 +82,7 @@ export declare const ReportPageVisualizationTypeEnum: {
|
|
|
82
82
|
readonly Text: "text";
|
|
83
83
|
readonly Table: "table";
|
|
84
84
|
readonly Gauge: "gauge";
|
|
85
|
+
readonly PieChart: "pie chart";
|
|
85
86
|
};
|
|
86
87
|
export type ReportPageVisualizationTypeEnum = typeof ReportPageVisualizationTypeEnum[keyof typeof ReportPageVisualizationTypeEnum];
|
|
87
88
|
export declare function ReportPageVisualizationFromJSON(json: any): ReportPageVisualization;
|
|
@@ -26,7 +26,8 @@ exports.ReportPageVisualizationTypeEnum = {
|
|
|
26
26
|
BarChart: 'bar chart',
|
|
27
27
|
Text: 'text',
|
|
28
28
|
Table: 'table',
|
|
29
|
-
Gauge: 'gauge'
|
|
29
|
+
Gauge: 'gauge',
|
|
30
|
+
PieChart: 'pie chart'
|
|
30
31
|
};
|
|
31
32
|
function ReportPageVisualizationFromJSON(json) {
|
|
32
33
|
return ReportPageVisualizationFromJSONTyped(json, false);
|
package/package.json
CHANGED
|
@@ -98,7 +98,8 @@ export const ReportPageVisualizationTypeEnum = {
|
|
|
98
98
|
BarChart: 'bar chart',
|
|
99
99
|
Text: 'text',
|
|
100
100
|
Table: 'table',
|
|
101
|
-
Gauge: 'gauge'
|
|
101
|
+
Gauge: 'gauge',
|
|
102
|
+
PieChart: 'pie chart'
|
|
102
103
|
} as const;
|
|
103
104
|
export type ReportPageVisualizationTypeEnum = typeof ReportPageVisualizationTypeEnum[keyof typeof ReportPageVisualizationTypeEnum];
|
|
104
105
|
|