From e8c52f9de99242e4cc5979ab34cb7aba76db159a Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 26 May 2024 14:35:29 +0200 Subject: [PATCH] Add `color` as possible input type This seems to be valid when creating a wf parameter in the UI but the gxformat2 schema doesn't seem to support it. --- shared/src/requestsDefinitions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/src/requestsDefinitions.ts b/shared/src/requestsDefinitions.ts index 39c2754..41ff0be 100644 --- a/shared/src/requestsDefinitions.ts +++ b/shared/src/requestsDefinitions.ts @@ -29,6 +29,7 @@ export interface TargetWorkflowDocumentParams { } export type WorkflowDataType = + | "color" //TODO: this type seems to be missing in format2 schema | "null" | "boolean" | "int"