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 +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/models/GraphTypeEnum.d.ts +8 -0
- package/dist/models/GraphTypeEnum.js +10 -0
- package/models/GraphTypeEnum.ts +9 -0
- package/package.json +1 -1
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
|
-
|
|
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
|
|
8105
|
+
readonly StackedArea: "stacked-area";
|
|
8106
8106
|
};
|
|
8107
8107
|
export type ReportRequestDTOGraphTypeEnum = typeof ReportRequestDTOGraphTypeEnum[keyof typeof ReportRequestDTOGraphTypeEnum];
|
|
8108
8108
|
/**
|
package/dist/api.js
CHANGED