mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
We're migrating to ESM, which will allow us to import the latest versions of our dependencies. Co-Authored-By: Christopher Kolstad <chriswk@getunleash.io>
21 lines
915 B
TypeScript
21 lines
915 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { MeteredRequestsSchemaApiDataItem } from './meteredRequestsSchemaApiDataItem.js';
|
|
import type { MeteredRequestsSchemaDateRange } from './meteredRequestsSchemaDateRange.js';
|
|
import type { MeteredRequestsSchemaGrouping } from './meteredRequestsSchemaGrouping.js';
|
|
|
|
/**
|
|
* Contains the recorded metered groups requests segmented by day/month
|
|
*/
|
|
export interface MeteredRequestsSchema {
|
|
/** Contains the recorded daily/monthly requests for each metered group */
|
|
apiData: MeteredRequestsSchemaApiDataItem[];
|
|
/** The date range there is data for. The range is inclusive and goes from the start of the `from` date to the end of the `to` date */
|
|
dateRange: MeteredRequestsSchemaDateRange;
|
|
/** Whether the data is aggregated by month or by day. */
|
|
grouping: MeteredRequestsSchemaGrouping;
|
|
}
|