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