Skip to content

Commit

Permalink
Fix invalid types introduced by #1209 (#1233)
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed May 11, 2021
1 parent 88eb995 commit 4814238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web-api/src/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1884,9 +1884,9 @@ export interface WorkflowsUpdateStepArguments extends WebAPICallOptions, TokenOv
step_name?: string;
inputs?: {
[name: string]: {
value: object;
value: any;
skip_variable_replacement?: boolean;
variables: object;
variables: any;
},
};
outputs?: {
Expand Down

0 comments on commit 4814238

Please sign in to comment.