ultracart_rest_api_v2_typescript 3.10.146 → 3.10.147
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.147
|
|
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.147 --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.147 | 06/23/2023 | gauge constant for page visualization library |
|
|
57
58
|
| 3.10.146 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
|
|
58
59
|
| 3.10.145 | 06/20/2023 | coupon add allowed values for usable_by and new OncePerNewCustomerForItem flag |
|
|
59
60
|
| 3.10.144 | 06/15/2023 | add pickup_dts to order.shipping object |
|
package/api.ts
CHANGED
|
@@ -34851,7 +34851,8 @@ 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'
|
|
34855
34856
|
}
|
|
34856
34857
|
}
|
|
34857
34858
|
|
package/dist/api.d.ts
CHANGED
|
@@ -34118,7 +34118,8 @@ export declare namespace ReportPageVisualization {
|
|
|
34118
34118
|
LineChart,
|
|
34119
34119
|
BarChart,
|
|
34120
34120
|
Text,
|
|
34121
|
-
Table
|
|
34121
|
+
Table,
|
|
34122
|
+
Gauge
|
|
34122
34123
|
}
|
|
34123
34124
|
}
|
|
34124
34125
|
/**
|
package/dist/api.js
CHANGED
|
@@ -1460,6 +1460,7 @@ 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";
|
|
1463
1464
|
})(TypeEnum = ReportPageVisualization.TypeEnum || (ReportPageVisualization.TypeEnum = {}));
|
|
1464
1465
|
})(ReportPageVisualization = exports.ReportPageVisualization || (exports.ReportPageVisualization = {}));
|
|
1465
1466
|
/**
|