yellowgrid-api-ts 3.2.201-dev.0 → 3.2.202-dev.0

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/api.ts CHANGED
@@ -8167,7 +8167,7 @@ export const ReportRequestDTOReportEnum = {
8167
8167
 
8168
8168
  export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
8169
8169
  export const ReportRequestDTOGraphTypeEnum = {
8170
- Stacked: 'stacked'
8170
+ StackedArea: 'stacked-area'
8171
8171
  } as const;
8172
8172
 
8173
8173
  export type ReportRequestDTOGraphTypeEnum = typeof ReportRequestDTOGraphTypeEnum[keyof typeof ReportRequestDTOGraphTypeEnum];
package/dist/api.d.ts CHANGED
@@ -8102,7 +8102,7 @@ export declare const ReportRequestDTOReportEnum: {
8102
8102
  };
8103
8103
  export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
8104
8104
  export declare const ReportRequestDTOGraphTypeEnum: {
8105
- readonly Stacked: "stacked";
8105
+ readonly StackedArea: "stacked-area";
8106
8106
  };
8107
8107
  export type ReportRequestDTOGraphTypeEnum = typeof ReportRequestDTOGraphTypeEnum[keyof typeof ReportRequestDTOGraphTypeEnum];
8108
8108
  /**
package/dist/api.js CHANGED
@@ -335,7 +335,7 @@ exports.ReportRequestDTOReportEnum = {
335
335
  _8: '8'
336
336
  };
337
337
  exports.ReportRequestDTOGraphTypeEnum = {
338
- Stacked: 'stacked'
338
+ StackedArea: 'stacked-area'
339
339
  };
340
340
  exports.SeriesDTOTypeEnum = {
341
341
  Line: 'line'
@@ -0,0 +1,8 @@
1
+ export declare const GraphTypeEnum: {
2
+ readonly STACKED: {
3
+ readonly name: "STACKED";
4
+ readonly value: "stacked-area";
5
+ readonly publicValue: "Stacked Area";
6
+ };
7
+ };
8
+ export type GraphTypeEnum = typeof GraphTypeEnum;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GraphTypeEnum = void 0;
4
+ exports.GraphTypeEnum = {
5
+ "STACKED": {
6
+ "name": "STACKED",
7
+ "value": "stacked-area",
8
+ "publicValue": "Stacked Area"
9
+ }
10
+ };
@@ -0,0 +1,9 @@
1
+ export const GraphTypeEnum = {
2
+ "STACKED": {
3
+ "name": "STACKED",
4
+ "value": "stacked-area",
5
+ "publicValue": "Stacked Area"
6
+ }
7
+ } as const;
8
+
9
+ export type GraphTypeEnum = typeof GraphTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.201-dev.0",
3
+ "version": "3.2.202-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {