1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00
unleash.unleash/frontend/src/openapi/models/projectFeatureEnvironmentSchema.ts
Tymoteusz Czech 76ffdb2cd3
chore: update Frontend schema (#8037)
update types, fix frontend types issues in insights and archive
2024-09-02 14:41:17 +02:00

31 lines
940 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* A detailed description of the feature environment
*/
export interface ProjectFeatureEnvironmentSchema {
/** `true` if the feature is enabled for the environment, otherwise `false`. */
enabled: boolean;
/** Whether the feature has any enabled strategies defined. */
hasEnabledStrategies?: boolean;
/** Whether the feature has any strategies defined. */
hasStrategies?: boolean;
/**
* The date when metrics where last collected for the feature environment
* @nullable
*/
lastSeenAt: string | null;
/** The name of the environment */
name: string;
/** The sort order of the feature environment in the feature environments list */
sortOrder: number;
/** The type of the environment */
type: string;
/** The number of defined variants */
variantCount: number;
}