mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
21 lines
791 B
TypeScript
21 lines
791 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ChangeRequestChangeSchema } from './changeRequestChangeSchema';
|
|
import type { ChangeRequestDefaultChangeSchema } from './changeRequestDefaultChangeSchema';
|
|
|
|
/**
|
|
* A feature and all its suggested changes.
|
|
*/
|
|
export interface ChangeRequestFeatureSchema {
|
|
/** List of changes inside change request. This list may be empty when listing all change requests for a project. */
|
|
changes: ChangeRequestChangeSchema[];
|
|
/** A string describing the conflicts related to this change. Only present if there are any concflicts on the feature level. */
|
|
conflict?: string;
|
|
defaultChange?: ChangeRequestDefaultChangeSchema;
|
|
/** The name of the feature */
|
|
name: string;
|
|
}
|