From ca110bc770d9e2249ec46da00a9152ad70460bc2 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Wed, 3 Jan 2024 11:09:22 -0500 Subject: [PATCH] Rebuild API schema. --- client/src/api/schema/schema.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index f42c45fedc52..6b6e4f6a99b3 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -11469,8 +11469,10 @@ export interface operations { /** Returns detailed information about the given collection. */ parameters: { /** @description The type of collection instance. Either `history` (default) or `library`. */ + /** @description The view of collection instance to return. */ query?: { instance_type?: "history" | "library"; + view?: string; }; /** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */ header?: { @@ -11485,7 +11487,7 @@ export interface operations { /** @description Successful Response */ 200: { content: { - "application/json": components["schemas"]["HDCADetailed"]; + "application/json": components["schemas"]["HDCADetailed"] | components["schemas"]["HDCASummary"]; }; }; /** @description Validation Error */