@@ -14066,6 +14066,11 @@ export interface components {
1406614066 * @description TODO
1406714067 */
1406814068 tool_inputs?: unknown;
14069+ /**
14070+ * Tool UUID
14071+ * @description The universal unique identifier of the tool associated with this step. Takes precedence over tool_id if set.
14072+ */
14073+ tool_uuid?: string | null;
1406914074 /**
1407014075 * Tool Version
1407114076 * @description The version of the tool associated with this step.
@@ -14108,6 +14113,11 @@ export interface components {
1410814113 * @description TODO
1410914114 */
1411014115 tool_inputs?: unknown;
14116+ /**
14117+ * Tool UUID
14118+ * @description The universal unique identifier of the tool associated with this step. Takes precedence over tool_id if set.
14119+ */
14120+ tool_uuid?: string | null;
1411114121 /**
1411214122 * Tool Version
1411314123 * @description The version of the tool associated with this step.
@@ -14150,6 +14160,11 @@ export interface components {
1415014160 * @description TODO
1415114161 */
1415214162 tool_inputs?: unknown;
14163+ /**
14164+ * Tool UUID
14165+ * @description The universal unique identifier of the tool associated with this step. Takes precedence over tool_id if set.
14166+ */
14167+ tool_uuid?: string | null;
1415314168 /**
1415414169 * Tool Version
1415514170 * @description The version of the tool associated with this step.
@@ -14306,7 +14321,10 @@ export interface components {
1430614321 * @description Parameter name. Used when referencing parameter in workflows or inside command templating.
1430714322 */
1430814323 name: string;
14309- /** Optional */
14324+ /**
14325+ * Optional
14326+ * @default false
14327+ */
1431014328 optional: boolean;
1431114329 /**
1431214330 * Parameter Type
@@ -18103,6 +18121,11 @@ export interface components {
1810318121 * @description TODO
1810418122 */
1810518123 tool_inputs?: unknown;
18124+ /**
18125+ * Tool UUID
18126+ * @description The universal unique identifier of the tool associated with this step. Takes precedence over tool_id if set.
18127+ */
18128+ tool_uuid?: string | null;
1810618129 /**
1810718130 * Tool Version
1810818131 * @description The version of the tool associated with this step.
@@ -20200,6 +20223,11 @@ export interface components {
2020020223 * @description TODO
2020120224 */
2020220225 tool_inputs?: unknown;
20226+ /**
20227+ * Tool UUID
20228+ * @description The universal unique identifier of the tool associated with this step. Takes precedence over tool_id if set.
20229+ */
20230+ tool_uuid?: string | null;
2020320231 /**
2020420232 * Tool Version
2020520233 * @description The version of the tool associated with this step.
@@ -20729,6 +20757,11 @@ export interface components {
2072920757 * @description TODO
2073020758 */
2073120759 tool_inputs?: unknown;
20760+ /**
20761+ * Tool UUID
20762+ * @description The universal unique identifier of the tool associated with this step. Takes precedence over tool_id if set.
20763+ */
20764+ tool_uuid?: string | null;
2073220765 /**
2073320766 * Tool Version
2073420767 * @description The version of the tool associated with this step.
@@ -21800,6 +21833,11 @@ export interface components {
2180021833 * @enum {string}
2180121834 */
2180221835 class: "GalaxyUserTool";
21836+ /**
21837+ * Configfiles
21838+ * @description A list of config files for this tool.
21839+ */
21840+ configfiles?: components["schemas"]["YamlTemplateConfigFile"][] | null;
2180321841 /**
2180421842 * Container
2180521843 * @description Container image to use for this tool.
@@ -21882,6 +21920,11 @@ export interface components {
2188221920 * @constant
2188321921 */
2188421922 class: "GalaxyUserTool";
21923+ /**
21924+ * Configfiles
21925+ * @description A list of config files for this tool.
21926+ */
21927+ configfiles?: components["schemas"]["YamlTemplateConfigFile"][] | null;
2188521928 /**
2188621929 * Container
2188721930 * @description Container image to use for this tool.
@@ -22797,6 +22840,21 @@ export interface components {
2279722840 */
2279822841 namespace: string;
2279922842 };
22843+ /** YamlTemplateConfigFile */
22844+ YamlTemplateConfigFile: {
22845+ /** Content */
22846+ content: string;
22847+ /**
22848+ * Eval Engine
22849+ * @default ecmascript
22850+ * @constant
22851+ */
22852+ eval_engine: "ecmascript";
22853+ /** Filename */
22854+ filename?: string | null;
22855+ /** Name */
22856+ name?: string | null;
22857+ };
2280022858 /** Organization */
2280122859 galaxy__schema__drs__Organization: {
2280222860 /**
0 commit comments