1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-02 01:17:58 +02:00
unleash.unleash/frontend/src/openapi/models/versionSchema.ts
2023-12-04 21:49:49 +02:00

22 lines
778 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { VersionSchemaCurrent } from './versionSchemaCurrent';
import type { VersionSchemaLatest } from './versionSchemaLatest';
/**
* Detailed information about an Unleash version
*/
export interface VersionSchema {
/** The current version of Unleash. */
current: VersionSchemaCurrent;
/** The instance identifier of the Unleash instance */
instanceId?: string;
/** Whether the Unleash server is running the latest release (`true`) or if there are updates available (`false`) */
isLatest: boolean;
/** Information about the latest available Unleash releases. Will be an empty object if no data is available. */
latest: VersionSchemaLatest;
}