mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
![image](https://github.com/Unleash/unleash/assets/964450/5e93dfd6-e1c0-48dd-a3c6-587889096510)
16 lines
394 B
TypeScript
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[];
|
|
}
|