@checksum-ai/runtime 2.0.24-beta → 2.0.24
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/.env +1 -1
- package/cli.js +364 -363
- package/index.d.ts +7 -0
- package/index.js +3 -3
- package/package.json +1 -1
- package/vtg-pw-bridge-runner.js +3 -3
package/index.d.ts
CHANGED
|
@@ -228,6 +228,13 @@ export type RuntimeOptions = {
|
|
|
228
228
|
*/
|
|
229
229
|
autoHealPRs?: boolean;
|
|
230
230
|
|
|
231
|
+
/**
|
|
232
|
+
* Delay in ms between consecutive actions (e.g. click→click).
|
|
233
|
+
* Prevents race conditions where onclick handlers aren't registered yet.
|
|
234
|
+
* Set to 0 to disable. Default: 100
|
|
235
|
+
*/
|
|
236
|
+
consecutiveActionDelay?: number;
|
|
237
|
+
|
|
231
238
|
/**
|
|
232
239
|
* Model configuration
|
|
233
240
|
*/
|