ultracart_rest_api_v2_typescript 4.0.163 → 4.0.164

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.163
1
+ ## ultracart_rest_api_v2_typescript@4.0.164
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.163 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.164 --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.164 | 06/23/2023 | gauge constant for page visualization library |
57
58
  | 4.0.163 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
58
59
  | 4.0.162 | 06/20/2023 | coupon add allowed values for usable_by and new OncePerNewCustomerForItem flag |
59
60
  | 4.0.161 | 06/15/2023 | add pickup_dts to order.shipping object |
@@ -81,6 +81,7 @@ export declare const ReportPageVisualizationTypeEnum: {
81
81
  readonly BarChart: "bar chart";
82
82
  readonly Text: "text";
83
83
  readonly Table: "table";
84
+ readonly Gauge: "gauge";
84
85
  };
85
86
  export type ReportPageVisualizationTypeEnum = typeof ReportPageVisualizationTypeEnum[keyof typeof ReportPageVisualizationTypeEnum];
86
87
  export declare function ReportPageVisualizationFromJSON(json: any): ReportPageVisualization;
@@ -25,7 +25,8 @@ 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'
29
30
  };
30
31
  function ReportPageVisualizationFromJSON(json) {
31
32
  return ReportPageVisualizationFromJSONTyped(json, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.163",
3
+ "version": "4.0.164",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -97,7 +97,8 @@ 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'
101
102
  } as const;
102
103
  export type ReportPageVisualizationTypeEnum = typeof ReportPageVisualizationTypeEnum[keyof typeof ReportPageVisualizationTypeEnum];
103
104