Skip to content

Commit

Permalink
Rebuild API schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jan 12, 2024
1 parent 88ab222 commit ca110bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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?: {
Expand All @@ -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 */
Expand Down

0 comments on commit ca110bc

Please sign in to comment.