Skip to content

Commit

Permalink
build(spec): update WebDriverBiDi types
Browse files Browse the repository at this point in the history
  • Loading branch information
browser-automation-bot committed Feb 18, 2025
1 parent fd54fc8 commit e7e6e23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/protocol-parser/generated/webdriver-bidi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2881,8 +2881,8 @@ export namespace Input {
z
.object({
type: z.literal('pointerMove'),
x: JsIntSchema,
y: JsIntSchema,
x: z.number(),
y: z.number(),
duration: JsUintSchema.optional(),
origin: Input.OriginSchema.optional(),
})
Expand Down
4 changes: 2 additions & 2 deletions src/protocol/generated/webdriver-bidi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2250,8 +2250,8 @@ export namespace Input {
export namespace Input {
export type PointerMoveAction = {
type: 'pointerMove';
x: JsInt;
y: JsInt;
x: number;
y: number;
duration?: JsUint;
origin?: Input.Origin;
} & Input.PointerCommonProperties;
Expand Down

0 comments on commit e7e6e23

Please sign in to comment.