mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
Renames everything related to `executive dashboard` to `insights` Closes: # [1-2213](https://linear.app/unleash/issue/1-2213/rename-in-fe) --------- Signed-off-by: andreas-unleash <andreas@getunleash.ai>
19 lines
614 B
TypeScript
19 lines
614 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type InstanceInsightsSchemaFlagTrendsItem = {
|
|
/** The number of active flags on a particular day */
|
|
active: number;
|
|
/** A UTC date when the stats were captured. Time is the very end of a given day. */
|
|
date: string;
|
|
/** The number of time calculated potentially stale flags on a particular day */
|
|
potentiallyStale: number;
|
|
/** The number of user marked stale flags on a particular day */
|
|
stale: number;
|
|
/** The number of all flags on a particular day */
|
|
total: number;
|
|
};
|