1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00
unleash.unleash/frontend/src/openapi/models/importTogglesValidateSchema.ts
Tymoteusz Czech 77a365e667
chore: Update OpenAPI definitions generated for frontend (#4283)
## About the changes
`frontend> yarn gen:api` after recent updates
2023-07-20 12:59:55 +02:00

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[];
}