@auto-wiz/core 1.2.0 → 1.2.1
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.
- package/dist/index.d.ts +1 -1
- package/dist/runner.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export * from "./steps/stepValidation";
|
|
|
3
3
|
export * from "./storage/flowStorage";
|
|
4
4
|
export * from "./runner";
|
|
5
5
|
export { type Flow, type Step, type ElementLocator } from "./types";
|
|
6
|
-
export { type RunResult } from "./runner";
|
|
6
|
+
export { type RunResult, type RunnerOptions, type ExecutionResult } from "./runner";
|
package/dist/runner.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export interface RunResult {
|
|
|
14
14
|
export interface RunnerOptions {
|
|
15
15
|
timeout?: number;
|
|
16
16
|
stopOnError?: boolean;
|
|
17
|
+
/** Variables for placeholder substitution (e.g., {{username}} → variables.username) */
|
|
18
|
+
variables?: Record<string, string>;
|
|
17
19
|
}
|
|
18
20
|
/**
|
|
19
21
|
* Abstract Flow Runner Interface
|