Skip to content

Commit

Permalink
update services/api
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 8, 2024
1 parent f0b7776 commit e887a31
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions services/api/generated/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@
},
"description": "One ore more timeseries identifiers to get data for."
},
{
"name": "reduceSamples",
"in": "query",
"required": false,
"schema": {
"type": "boolean",
"description": "Activated by default. This function will try to reduce the number of samples returned by removing consecutive samples that change less than 0.5% as they are not visible in the UI any how.",
"default": true,
"title": "Reducesamples"
},
"description": "Activated by default. This function will try to reduce the number of samples returned by removing consecutive samples that change less than 0.5% as they are not visible in the UI any how."
},
{
"name": "startAtUtc",
"in": "query",
Expand Down
2 changes: 2 additions & 0 deletions services/frontend/src/api/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@ export interface operations {
query: {
/** @description One ore more timeseries identifiers to get data for. */
timeseriesId: number[];
/** @description Activated by default. This function will try to reduce the number of samples returned by removing consecutive samples that change less than 0.5% as they are not visible in the UI any how. */
reduceSamples?: boolean;
/** @description The start of range. Must be timezone aware. */
startAtUtc: string;
/** @description The end of the range. Must be timezone aware. */
Expand Down

0 comments on commit e887a31

Please sign in to comment.