mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
20 lines
822 B
TypeScript
20 lines
822 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The [change request](https://docs.getunleash.io/reference/change-requests) configuration for a specific environment.
|
|
*/
|
|
export interface ChangeRequestEnvironmentConfigSchema {
|
|
/** `true` if this environment has change requests enabled, otherwise `false`. */
|
|
changeRequestEnabled: boolean;
|
|
/** The environment that this configuration applies to. */
|
|
environment: string;
|
|
/** The number of approvals that are required for a change request to be fully approved and ready to be applied in this environment. */
|
|
requiredApprovals: number | null;
|
|
/** The [type of the environment](https://docs.getunleash.io/reference/environments#environment-types) listed in `environment`. */
|
|
type: string;
|
|
}
|