diff --git a/frontend/src/openapi/models/projectApplicationsSchema.ts b/frontend/src/openapi/models/projectApplicationsSchema.ts index 673c4ed4e7..d0461fa7c4 100644 --- a/frontend/src/openapi/models/projectApplicationsSchema.ts +++ b/frontend/src/openapi/models/projectApplicationsSchema.ts @@ -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; +}