Skip to content

Commit

Permalink
fix: Fixed a bug with the prompted variables structure/serialization (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
slewis74 authored Jan 11, 2023
1 parent 2bd0fc1 commit 330049e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/features/projects/createExecutionBaseV1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@ export interface CreateExecutionBaseV1 extends SpaceScopedOperation {
UseGuidedFailure?: boolean;
RunAt?: Date | undefined;
NoRunAfter?: Date | undefined;
Variables?: Map<string, string>;
Variables?: PromptedVariableValues;
}

export interface PromptedVariableValues {
[name: string]: string;
}

0 comments on commit 330049e

Please sign in to comment.