1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-12 13:48:35 +02:00
unleash.unleash/frontend/src/openapi/models/validateArchiveFeaturesSchema.ts
2023-12-04 21:49:49 +02:00

16 lines
467 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Validation details for features archive operation
*/
export interface ValidateArchiveFeaturesSchema {
/** Whether any dependencies will be deleted as part of archive */
hasDeletedDependencies: boolean;
/** List of parent features that would orphan child features that are not part of the archive operation */
parentsWithChildFeatures: string[];
}