1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00
unleash.unleash/frontend/src/openapi/models/changeRequestCreateFeatureSchema.ts

41 lines
1.8 KiB
TypeScript
Raw Normal View History

/**
* 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';
import type { ChangeRequestCreateFeatureSchemaOneOfOnefour } from './changeRequestCreateFeatureSchemaOneOfOnefour';
/**
* 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;
})
| (ChangeRequestCreateFeatureSchemaOneOfOnefour & {
/** The name of the feature that this change applies to. */
feature: string;
});