@teamkeel/testing-runtime 0.416.0 → 0.416.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamkeel/testing-runtime",
3
- "version": "0.416.0",
3
+ "version": "0.416.2",
4
4
  "description": "Internal package used by the generated @teamkeel/testing package",
5
5
  "exports": "./src/index.mjs",
6
6
  "typings": "src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -150,8 +150,8 @@ declare class FlowExecutor<Input = {}> {
150
150
  values: Record<string, any>,
151
151
  action?: string
152
152
  ): Promise<FlowRun<Input>>;
153
- untilAwaitingInput(id: string): Promise<FlowRun<Input>>;
154
- untilFinished(id: string): Promise<FlowRun<Input>>;
153
+ untilAwaitingInput(id: string, timeout?: number): Promise<FlowRun<Input>>;
154
+ untilFinished(id: string, timeout?: number): Promise<FlowRun<Input>>;
155
155
  }
156
156
 
157
157
  // Step Definition