mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +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.
13 lines
433 B
TypeScript
13 lines
433 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type ChangeRequestCreateSchemaOneOfSixPayload = {
|
|
/** The new state of the feature. */
|
|
enabled: boolean;
|
|
/** Only relevant when ALL the strategies are disabled. If `true`, all the disabled strategies will be enabled. If `false`, the default strategy will be added */
|
|
shouldActivateDisabledStrategies?: boolean;
|
|
};
|