diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 332c69382c80..6b6041a88cc5 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -11535,8 +11535,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?: { @@ -11551,7 +11553,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 */