@skrillex1224/playwright-toolkit 2.1.245 → 2.1.246
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.cjs +477 -330
- package/dist/index.cjs.map +4 -4
- package/dist/index.js +477 -330
- package/dist/index.js.map +4 -4
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -257,6 +257,12 @@ export interface DeviceInputOptions {
|
|
|
257
257
|
stepDelayMs?: number;
|
|
258
258
|
beforeReleaseDelayMs?: number;
|
|
259
259
|
afterReleaseDelayMs?: number;
|
|
260
|
+
finalMoveRepeats?: number;
|
|
261
|
+
finalMoveDelayMs?: number;
|
|
262
|
+
sourceOffsetX?: number;
|
|
263
|
+
sourceOffsetY?: number;
|
|
264
|
+
targetOffsetX?: number;
|
|
265
|
+
targetOffsetY?: number;
|
|
260
266
|
allowMouseFallback?: boolean;
|
|
261
267
|
}
|
|
262
268
|
|
|
@@ -431,6 +437,7 @@ export interface CaptchaMonitorOptions {
|
|
|
431
437
|
}
|
|
432
438
|
|
|
433
439
|
export interface CaptchaStrategyOptions {
|
|
440
|
+
debugArtifacts?: boolean;
|
|
434
441
|
[key: string]: any;
|
|
435
442
|
}
|
|
436
443
|
|