mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-24 20:06:55 +01:00
19 lines
632 B
TypeScript
19 lines
632 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ChangeRequestCreateSchemaOneOfTwosevenAction } from './changeRequestCreateSchemaOneOfTwosevenAction';
|
|
import type { ReleasePlanTemplateIdSchema } from './releasePlanTemplateIdSchema';
|
|
|
|
/**
|
|
* Add a release plan to this feature environment.
|
|
*/
|
|
export type ChangeRequestCreateSchemaOneOfTwoseven = {
|
|
/** The name of this action. */
|
|
action: ChangeRequestCreateSchemaOneOfTwosevenAction;
|
|
/** The name of the feature that this change applies to. */
|
|
feature: string;
|
|
payload: ReleasePlanTemplateIdSchema;
|
|
};
|