mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-16 00:06:40 +01:00
77a365e667
## About the changes `frontend> yarn gen:api` after recent updates
19 lines
839 B
TypeScript
19 lines
839 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ImportTogglesValidateItemSchema } from './importTogglesValidateItemSchema';
|
|
|
|
/**
|
|
* An object containing [feature import](https://docs.getunleash.io/reference/deploy/environment-import-export) validation results.
|
|
*/
|
|
export interface ImportTogglesValidateSchema {
|
|
/** A list of errors that prevent the provided data from being successfully imported. */
|
|
errors: ImportTogglesValidateItemSchema[];
|
|
/** A list of warnings related to the provided data. */
|
|
warnings: ImportTogglesValidateItemSchema[];
|
|
/** Any additional permissions required to import the data. If the list is empty, you require no additional permissions beyond what your user already has. */
|
|
permissions?: ImportTogglesValidateItemSchema[];
|
|
}
|