2023-10-09 11:52:41 +02:00
|
|
|
/**
|
|
|
|
* Generated by Orval
|
|
|
|
* Do not edit manually.
|
|
|
|
* See `gen:api` script in package.json
|
|
|
|
*/
|
|
|
|
import type { ChangeRequestOneOrManyCreateSchemaOneOfTwothreeAction } from './changeRequestOneOrManyCreateSchemaOneOfTwothreeAction';
|
|
|
|
import type { CreateDependentFeatureSchema } from './createDependentFeatureSchema';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a parent feature dependency.
|
|
|
|
*/
|
|
|
|
export type ChangeRequestOneOrManyCreateSchemaOneOfTwothree = {
|
|
|
|
/** The name of this action. */
|
|
|
|
action: ChangeRequestOneOrManyCreateSchemaOneOfTwothreeAction;
|
2023-12-04 20:49:49 +01:00
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
2023-10-09 11:52:41 +02:00
|
|
|
payload: CreateDependentFeatureSchema;
|
|
|
|
};
|