mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-18 01:18:23 +02:00
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.
17 lines
442 B
TypeScript
17 lines
442 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 ChangeRequestSchemaOneOfFourState =
|
|
typeof ChangeRequestSchemaOneOfFourState[keyof typeof ChangeRequestSchemaOneOfFourState];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const ChangeRequestSchemaOneOfFourState = {
|
|
Scheduled: 'Scheduled',
|
|
} as const;
|