mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
They're mostly the same content, however, so nothing much should change. The `optional` title is already handled in the UI.
31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
/**
|
|
* 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;
|
|
};
|