From 624524819a5f4cb83a991c9963c97f54e5167032 Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Wed, 14 Feb 2024 13:13:34 +0200 Subject: [PATCH] chore: update orval types (#6238) --- frontend/src/openapi/models/projectApplicationsSchema.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; +}