X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/be58082b621a95f96bcb0c61495e8186f10e5528..ac0992ffca196679a7121fab27e43c38bc25072f:/src/models/workflow.ts diff --git a/src/models/workflow.ts b/src/models/workflow.ts index 59915137..3a38348e 100644 --- a/src/models/workflow.ts +++ b/src/models/workflow.ts @@ -41,6 +41,8 @@ export type CommandInputParameter = FileCommandInputParameter | DirectoryCommandInputParameter | StringArrayCommandInputParameter | + IntArrayCommandInputParameter | + FloatArrayCommandInputParameter | FileArrayCommandInputParameter | DirectoryArrayCommandInputParameter | EnumCommandInputParameter; @@ -90,6 +92,8 @@ export interface GenericCommandInputParameter { doc?: string | string[]; default?: Value; type?: Type | Array; + value?: Value; + disabled?: boolean; } export type GenericArrayCommandInputParameter = GenericCommandInputParameter, Value[]>; @@ -104,6 +108,8 @@ export type DirectoryCommandInputParameter = GenericCommandInputParameter; export type StringArrayCommandInputParameter = GenericArrayCommandInputParameter; +export type IntArrayCommandInputParameter = GenericArrayCommandInputParameter; +export type FloatArrayCommandInputParameter = GenericArrayCommandInputParameter; export type FileArrayCommandInputParameter = GenericArrayCommandInputParameter; export type DirectoryArrayCommandInputParameter = GenericArrayCommandInputParameter;