/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ChangeRequestSearchItemSchemaOneOfFourCreatedBy } from './changeRequestSearchItemSchemaOneOfFourCreatedBy.js'; import type { ChangeRequestScheduleSchema } from './changeRequestScheduleSchema.js'; import type { ChangeRequestSearchItemSchemaOneOfFourState } from './changeRequestSearchItemSchemaOneOfFourState.js'; export type ChangeRequestSearchItemSchemaOneOfFour = { /** Date and time when the change request was created. */ createdAt: string; /** User who created the change request. */ createdBy: ChangeRequestSearchItemSchemaOneOfFourCreatedBy; /** Environment where the change request applies. */ environment: string; /** List of feature names affected by this change request. */ features: string[]; /** Unique identifier for the change request. */ id: number; /** Project ID where the change request belongs. */ project: string; schedule: ChangeRequestScheduleSchema; /** List of segment names affected by this change request. */ segments: string[]; /** The current state of the change request. */ state: ChangeRequestSearchItemSchemaOneOfFourState; /** Title of the change request. Only present if a custom title is set for this change request. */ title?: string; };