mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
Connects the lifecycle trends UI to the API and adds a functioning projects filter. This PR also includes the generated orval models. <img width="1534" alt="image" src="https://github.com/user-attachments/assets/6da748d1-3625-4e36-86ee-295ab79e7ccb" />
18 lines
762 B
TypeScript
18 lines
762 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { LifecycleTrendsSchemaLifecycleTrendsCleanup } from './lifecycleTrendsSchemaLifecycleTrendsCleanup.js';
|
|
import type { LifecycleTrendsSchemaLifecycleTrendsDevelop } from './lifecycleTrendsSchemaLifecycleTrendsDevelop.js';
|
|
import type { LifecycleTrendsSchemaLifecycleTrendsProduction } from './lifecycleTrendsSchemaLifecycleTrendsProduction.js';
|
|
|
|
/**
|
|
* Aggregated view of feature flag lifecycle across environments
|
|
*/
|
|
export type LifecycleTrendsSchemaLifecycleTrends = {
|
|
cleanup: LifecycleTrendsSchemaLifecycleTrendsCleanup;
|
|
develop: LifecycleTrendsSchemaLifecycleTrendsDevelop;
|
|
production: LifecycleTrendsSchemaLifecycleTrendsProduction;
|
|
};
|