1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00

chore: update orval types (#6238)

This commit is contained in:
Jaanus Sellin 2024-02-14 13:13:34 +02:00 committed by GitHub
parent 3d77825493
commit 624524819a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,4 +8,9 @@ import type { ProjectApplicationSchema } from './projectApplicationSchema';
/**
* A list of project applications
*/
export type ProjectApplicationsSchema = ProjectApplicationSchema[];
export interface ProjectApplicationsSchema {
/** All applications defined for a specific project. */
applications: ProjectApplicationSchema[];
/** The total number of project applications. */
total: number;
}