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