1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00
unleash.unleash/frontend/src/openapi/models/applicationEnvironmentIssuesSchema.ts

16 lines
394 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* This list of issues that might be wrong with the application
*/
export interface ApplicationEnvironmentIssuesSchema {
/** The list of features that are missing in Unleash */
missingFeatures: string[];
/** The list of used SDKs that are outdated */
outdatedSdks: string[];
}