1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/openapi/models/projectSchema.ts

41 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-01-05 11:57:53 +01:00
/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
2023-01-05 11:57:53 +01:00
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* See `gen:api` script in package.json
2023-01-05 11:57:53 +01:00
*/
2023-03-15 13:30:07 +01:00
import type { ProjectSchemaMode } from './projectSchemaMode';
2023-01-05 11:57:53 +01:00
/**
* A definition of the project used for projects listing purposes
*/
2023-01-05 11:57:53 +01:00
export interface ProjectSchema {
2024-02-13 14:22:08 +01:00
/** The average time from when a feature was created to when it was enabled in the "production" environment during the current window */
avgTimeToProduction?: number;
/** When this project was created. */
createdAt?: string;
/** A default stickiness for the project affecting the default stickiness value for variants and Gradual Rollout strategy */
defaultStickiness?: string;
/** Additional information about the project */
description?: string | null;
/** `true` if the project was favorited, otherwise `false`. */
favorite?: boolean;
/** The number of features this project has */
2023-01-05 11:57:53 +01:00
featureCount?: number;
/** An indicator of the [project's health](https://docs.getunleash.io/reference/technical-debt#health-rating) on a scale from 0 to 100 */
health?: number;
/** The id of this project */
id: string;
/** The number of members this project has */
2023-01-05 11:57:53 +01:00
memberCount?: number;
2023-04-07 11:16:00 +02:00
/** The project's [collaboration mode](https://docs.getunleash.io/reference/project-collaboration-mode). Determines whether non-project members can submit change requests or not. */
2023-03-15 13:30:07 +01:00
mode?: ProjectSchemaMode;
/** The name of this project */
name: string;
/** The number of potentially stale features this project has */
potentiallyStaleFeatureCount?: number;
/** The number of stale features this project has */
staleFeatureCount?: number;
/** When this project was last updated. */
updatedAt?: string | null;
2023-01-05 11:57:53 +01:00
}