diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 7ffa3c7d77e2..a89d13317519 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -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: { @@ -9381,11 +9384,13 @@ export interface components { /** * ListJstreeResponse * @deprecated + * @description List of files in Jstree format. * @default [] */ ListJstreeResponse: Record[]; /** * ListUriResponse + * @description List of directories and files. * @default [] */ ListUriResponse: (components["schemas"]["RemoteFile"] | components["schemas"]["RemoteDirectory"])[]; diff --git a/lib/tool_shed/webapp/frontend/src/schema/schema.ts b/lib/tool_shed/webapp/frontend/src/schema/schema.ts index 189bdd555e19..738ad268432e 100644 --- a/lib/tool_shed/webapp/frontend/src/schema/schema.ts +++ b/lib/tool_shed/webapp/frontend/src/schema/schema.ts @@ -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: {