ultracart_rest_api_v2_typescript 3.10.146 → 3.10.148
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 +4 -2
- package/api.ts +3 -1
- package/dist/api.d.ts +3 -1
- package/dist/api.js +2 -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.148
|
|
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.148 --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
|
+
| 3.10.148 | 07/03/2023 | chart constant for dw report tool |
|
|
58
|
+
| 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
|
|
57
59
|
| 3.10.146 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
|
|
58
60
|
| 3.10.145 | 06/20/2023 | coupon add allowed values for usable_by and new OncePerNewCustomerForItem flag |
|
|
59
61
|
| 3.10.144 | 06/15/2023 | add pickup_dts to order.shipping object |
|
package/api.ts
CHANGED
|
@@ -34851,7 +34851,9 @@ export namespace ReportPageVisualization {
|
|
|
34851
34851
|
LineChart = <any> 'line chart',
|
|
34852
34852
|
BarChart = <any> 'bar chart',
|
|
34853
34853
|
Text = <any> 'text',
|
|
34854
|
-
Table = <any> 'table'
|
|
34854
|
+
Table = <any> 'table',
|
|
34855
|
+
Gauge = <any> 'gauge',
|
|
34856
|
+
PieChart = <any> 'pie chart'
|
|
34855
34857
|
}
|
|
34856
34858
|
}
|
|
34857
34859
|
|
package/dist/api.d.ts
CHANGED
|
@@ -34118,7 +34118,9 @@ export declare namespace ReportPageVisualization {
|
|
|
34118
34118
|
LineChart,
|
|
34119
34119
|
BarChart,
|
|
34120
34120
|
Text,
|
|
34121
|
-
Table
|
|
34121
|
+
Table,
|
|
34122
|
+
Gauge,
|
|
34123
|
+
PieChart
|
|
34122
34124
|
}
|
|
34123
34125
|
}
|
|
34124
34126
|
/**
|
package/dist/api.js
CHANGED
|
@@ -1460,6 +1460,8 @@ var ReportPageVisualization;
|
|
|
1460
1460
|
TypeEnum[TypeEnum["BarChart"] = 'bar chart'] = "BarChart";
|
|
1461
1461
|
TypeEnum[TypeEnum["Text"] = 'text'] = "Text";
|
|
1462
1462
|
TypeEnum[TypeEnum["Table"] = 'table'] = "Table";
|
|
1463
|
+
TypeEnum[TypeEnum["Gauge"] = 'gauge'] = "Gauge";
|
|
1464
|
+
TypeEnum[TypeEnum["PieChart"] = 'pie chart'] = "PieChart";
|
|
1463
1465
|
})(TypeEnum = ReportPageVisualization.TypeEnum || (ReportPageVisualization.TypeEnum = {}));
|
|
1464
1466
|
})(ReportPageVisualization = exports.ReportPageVisualization || (exports.ReportPageVisualization = {}));
|
|
1465
1467
|
/**
|