Skip to content

Commit

Permalink
Rebuild client API schema for pydantic 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Apr 25, 2024
1 parent ad2b49c commit 501c9e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3555,7 +3555,10 @@ export interface components {
*/
name: string;
};
/** CustomBuildsCollection */
/**
* CustomBuildsCollection
* @description The custom builds associated with the user.
*/
CustomBuildsCollection: components["schemas"]["CustomBuildModel"][];
/** CustomBuildsMetadataResponse */
CustomBuildsMetadataResponse: {
Expand Down Expand Up @@ -9381,11 +9384,13 @@ export interface components {
/**
* ListJstreeResponse
* @deprecated
* @description List of files in Jstree format.
* @default []
*/
ListJstreeResponse: Record<string, never>[];
/**
* ListUriResponse
* @description List of directories and files.
* @default []
*/
ListUriResponse: (components["schemas"]["RemoteFile"] | components["schemas"]["RemoteDirectory"])[];
Expand Down
5 changes: 4 additions & 1 deletion lib/tool_shed/webapp/frontend/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,10 @@ export interface components {
* @enum {string}
*/
DescriptorType: "CWL" | "WDL" | "NFL" | "GALAXY" | "SMK"
/** DescriptorTypeVersion */
/**
* DescriptorTypeVersion
* @description The language version for a given descriptor type. The version should correspond to the actual declared version of the descriptor. For example, tools defined in CWL could have a version of `v1.0.2` whereas WDL tools may have a version of `1.0` or `draft-2`
*/
DescriptorTypeVersion: string
/** DetailedRepository */
DetailedRepository: {
Expand Down

0 comments on commit 501c9e3

Please sign in to comment.