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