2023-08-03 15:05:20 +02:00
|
|
|
/**
|
|
|
|
* Generated by Orval
|
|
|
|
* Do not edit manually.
|
|
|
|
* See `gen:api` script in package.json
|
|
|
|
*/
|
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOf } from './changeRequestCreateFeatureSchemaOneOf';
|
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOfFour } from './changeRequestCreateFeatureSchemaOneOfFour';
|
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOfSix } from './changeRequestCreateFeatureSchemaOneOfSix';
|
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOfEight } from './changeRequestCreateFeatureSchemaOneOfEight';
|
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOfOneone } from './changeRequestCreateFeatureSchemaOneOfOneone';
|
2023-09-13 15:50:42 +02:00
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOfOnethree } from './changeRequestCreateFeatureSchemaOneOfOnethree';
|
|
|
|
import type { ChangeRequestCreateFeatureSchemaOneOfOnesix } from './changeRequestCreateFeatureSchemaOneOfOnesix';
|
2023-08-03 15:05:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Data used to create a [change request](https://docs.getunleash.io/reference/change-requests) for a single feature change.
|
|
|
|
*/
|
|
|
|
export type ChangeRequestCreateFeatureSchema =
|
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOf & {
|
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
})
|
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOfFour & {
|
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
})
|
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOfSix & {
|
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
})
|
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOfEight & {
|
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
})
|
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOfOneone & {
|
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
})
|
2023-09-13 15:50:42 +02:00
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOfOnethree & {
|
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
})
|
|
|
|
| (ChangeRequestCreateFeatureSchemaOneOfOnesix & {
|
2023-08-03 15:05:20 +02:00
|
|
|
/** The name of the feature that this change applies to. */
|
|
|
|
feature: string;
|
|
|
|
});
|