mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
e471c0c62e
This PR updates the orval schemas in prep for working with scheduled CRs on the front end. Also contains a whole host of other orval updates.
22 lines
550 B
TypeScript
22 lines
550 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The current state of the change request.
|
|
*/
|
|
export type ChangeRequestSchemaOneOfState =
|
|
typeof ChangeRequestSchemaOneOfState[keyof typeof ChangeRequestSchemaOneOfState];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const ChangeRequestSchemaOneOfState = {
|
|
Draft: 'Draft',
|
|
In_review: 'In review',
|
|
Approved: 'Approved',
|
|
Applied: 'Applied',
|
|
Cancelled: 'Cancelled',
|
|
Rejected: 'Rejected',
|
|
} as const;
|