Skip to content

Commit dbc45bf

Browse files
build(spec): update WebDriverBidi types
1 parent 90b9708 commit dbc45bf

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/protocol-parser/generated/webdriver-bidi.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,10 @@ export namespace BrowsingContext {
460460
z.object({
461461
children: z.union([BrowsingContext.InfoListSchema, z.null()]),
462462
context: BrowsingContext.BrowsingContextSchema,
463+
originalOpener: z.union([
464+
BrowsingContext.BrowsingContextSchema,
465+
z.null(),
466+
]),
463467
url: z.string(),
464468
userContext: Browser.UserContextSchema,
465469
parent: z

src/protocol/generated/webdriver-bidi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ export namespace BrowsingContext {
336336
export type Info = {
337337
children: BrowsingContext.InfoList | null;
338338
context: BrowsingContext.BrowsingContext;
339+
originalOpener: BrowsingContext.BrowsingContext | null;
339340
url: string;
340341
userContext: Browser.UserContext;
341342
parent?: BrowsingContext.BrowsingContext | null;

0 commit comments

Comments
 (0)