mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
19 lines
764 B
TypeScript
19 lines
764 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ChangeRequestDefaultChangeSchemaPayload } from './changeRequestDefaultChangeSchemaPayload';
|
|
|
|
/**
|
|
* A description of a default change that will be applied with the change request to prevent invalid states.
|
|
|
|
Default changes are changes that are applied in addition to explicit user-specified changes when a change request is applied. Any default changes are applied in the background and are not a real part of the change request.
|
|
*/
|
|
export interface ChangeRequestDefaultChangeSchema {
|
|
/** The kind of action this is. */
|
|
action: string;
|
|
/** The necessary data to perform this change. */
|
|
payload: ChangeRequestDefaultChangeSchemaPayload;
|
|
}
|