1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/projectCreatedSchemaChangeRequestEnvironmentsItem.ts
Thomas Heartman 9f532834c8
chore: update orval schemas (#7010)
Main purpose is to get the new deprecated `id` property in the project
creation payload required for
https://github.com/Unleash/unleash/pull/7009 to pass.
2024-05-08 14:44:27 +02:00

16 lines
578 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type ProjectCreatedSchemaChangeRequestEnvironmentsItem = {
/** The name of the environment this change request configuration applies to. */
name: string;
/**
* The number of approvals required for a change request to be fully approved and ready to applied in this environment. If no value is provided, it will be set to the default number, which is 1. The value must be greater than or equal to 1.
* @minimum 1
*/
requiredApprovals: number;
};