Skip to content

Commit

Permalink
fix: re-generate types based on specifciation updates (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
browser-automation-bot authored Jan 7, 2025
1 parent a588bb4 commit 64abd1d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions out/gen/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ export declare namespace Session {
| Session.SystemProxyConfiguration
| Record<string, never>;
}
export type SessionResult = Session.NewResult | Session.StatusResult;
export type SessionResult =
| Session.NewResult
| Session.StatusResult
| Session.SubscribeResult;
export declare namespace Session {
type CapabilitiesRequest = {
alwaysMatch?: Session.CapabilityRequest;
Expand Down Expand Up @@ -248,7 +251,7 @@ export declare namespace Session {
};
}
export declare namespace Session {
type SubscriptionRequestResult = {
type SubscribeResult = {
subscription: Session.Subscription;
};
}
Expand Down
7 changes: 5 additions & 2 deletions src/gen/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ export namespace Session {
| Session.SystemProxyConfiguration
| Record<string, never>;
}
export type SessionResult = Session.NewResult | Session.StatusResult;
export type SessionResult =
| Session.NewResult
| Session.StatusResult
| Session.SubscribeResult;
export namespace Session {
export type CapabilitiesRequest = {
alwaysMatch?: Session.CapabilityRequest;
Expand Down Expand Up @@ -250,7 +253,7 @@ export namespace Session {
};
}
export namespace Session {
export type SubscriptionRequestResult = {
export type SubscribeResult = {
subscription: Session.Subscription;
};
}
Expand Down

0 comments on commit 64abd1d

Please sign in to comment.