mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
updated Orval and configured it to be compatible with v7. --------- Co-authored-by: Thomas Heartman <thomas@getunleash.io>
30 lines
1.6 KiB
TypeScript
30 lines
1.6 KiB
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { InstanceInsightsSchemaEnvironmentTypeTrendsItem } from './instanceInsightsSchemaEnvironmentTypeTrendsItem.js';
|
|
import type { InstanceInsightsSchemaFlagTrendsItem } from './instanceInsightsSchemaFlagTrendsItem.js';
|
|
import type { InstanceInsightsSchemaLifecycleTrends } from './instanceInsightsSchemaLifecycleTrends.js';
|
|
import type { InstanceInsightsSchemaMetricsSummaryTrendsItem } from './instanceInsightsSchemaMetricsSummaryTrendsItem.js';
|
|
import type { InstanceInsightsSchemaProjectFlagTrendsItem } from './instanceInsightsSchemaProjectFlagTrendsItem.js';
|
|
import type { InstanceInsightsSchemaUserTrendsItem } from './instanceInsightsSchemaUserTrendsItem.js';
|
|
|
|
/**
|
|
* A summary of this Unleash instance's usage statistics, including user and flag counts, and trends over time.
|
|
*/
|
|
export interface InstanceInsightsSchema {
|
|
/** How updates per environment type changed over time */
|
|
environmentTypeTrends: InstanceInsightsSchemaEnvironmentTypeTrendsItem[];
|
|
/** How number of flags changed over time */
|
|
flagTrends: InstanceInsightsSchemaFlagTrendsItem[];
|
|
/** Aggregated view of feature flag lifecycle across environments */
|
|
lifecycleTrends: InstanceInsightsSchemaLifecycleTrends;
|
|
/** How metrics data per project changed over time */
|
|
metricsSummaryTrends: InstanceInsightsSchemaMetricsSummaryTrendsItem[];
|
|
/** How number of flags per project changed over time */
|
|
projectFlagTrends: InstanceInsightsSchemaProjectFlagTrendsItem[];
|
|
/** How number of users changed over time */
|
|
userTrends: InstanceInsightsSchemaUserTrendsItem[];
|
|
}
|