Skip to content

Commit

Permalink
chore(main): release webdriver-bidi-protocol 0.0.6 (#28)
Browse files Browse the repository at this point in the history
Signed-off-by: Browser Automation Bot <[email protected]>
Co-authored-by: Alex Rudenko <[email protected]>
  • Loading branch information
browser-automation-bot and OrKoN authored Jul 2, 2024
1 parent a548360 commit 5c51b9f
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
with:
fetch-depth: 2
ref: ${{ github.head_ref }}
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
- name: Install cddlconv
run: cargo install [email protected]
- name: Install dependencies
Expand All @@ -35,7 +36,6 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'commit-updates')
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # 5.0.1
with:
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
commit_message: "fix: generate files"
commit_options: -n --signoff
commit_user_name: Browser Automation Bot
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.5"
".": "0.0.6"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.0.6](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/compare/webdriver-bidi-protocol-v0.0.5...webdriver-bidi-protocol-v0.0.6) (2024-07-02)


### Bug Fixes

* bump specs/webdriver-bidi from `62b8dfe` to `0c366b0` ([#25](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/issues/25)) ([e6da243](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/commit/e6da2439e38f2c403319ce1dbed16c9b8029667d))

## [0.0.5](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/compare/webdriver-bidi-protocol-v0.0.4...webdriver-bidi-protocol-v0.0.5) (2024-06-28)


Expand Down
16 changes: 8 additions & 8 deletions out/gen/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,6 @@ export declare namespace Session {
proxyType: 'system';
} & Extensible;
}
export declare namespace Session {
const enum UserPromptHandlerType {
Accept = 'accept',
Dismiss = 'dismiss',
Ignore = 'ignore',
}
}
export declare namespace Session {
type UserPromptHandler = {
alert?: Session.UserPromptHandlerType;
Expand All @@ -166,6 +159,13 @@ export declare namespace Session {
prompt?: Session.UserPromptHandlerType;
};
}
export declare namespace Session {
const enum UserPromptHandlerType {
Accept = 'accept',
Dismiss = 'dismiss',
Ignore = 'ignore',
}
}
export declare namespace Session {
type SubscriptionRequest = {
events: [string, ...string[]];
Expand Down Expand Up @@ -782,7 +782,7 @@ export declare namespace BrowsingContext {
export declare namespace BrowsingContext {
type UserPromptOpenedParameters = {
context: BrowsingContext.BrowsingContext;
handler: 'accept' | 'dismiss' | 'ignore';
handler: Session.UserPromptHandlerType;
message: string;
type: BrowsingContext.UserPromptType;
defaultValue?: string;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webdriver-bidi-protocol",
"version": "0.0.5",
"version": "0.0.6",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
16 changes: 8 additions & 8 deletions src/gen/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,6 @@ export namespace Session {
proxyType: 'system';
} & Extensible;
}
export namespace Session {
export const enum UserPromptHandlerType {
Accept = 'accept',
Dismiss = 'dismiss',
Ignore = 'ignore',
}
}
export namespace Session {
export type UserPromptHandler = {
alert?: Session.UserPromptHandlerType;
Expand All @@ -168,6 +161,13 @@ export namespace Session {
prompt?: Session.UserPromptHandlerType;
};
}
export namespace Session {
export const enum UserPromptHandlerType {
Accept = 'accept',
Dismiss = 'dismiss',
Ignore = 'ignore',
}
}
export namespace Session {
export type SubscriptionRequest = {
events: [string, ...string[]];
Expand Down Expand Up @@ -784,7 +784,7 @@ export namespace BrowsingContext {
export namespace BrowsingContext {
export type UserPromptOpenedParameters = {
context: BrowsingContext.BrowsingContext;
handler: 'accept' | 'dismiss' | 'ignore';
handler: Session.UserPromptHandlerType;
message: string;
type: BrowsingContext.UserPromptType;
defaultValue?: string;
Expand Down

0 comments on commit 5c51b9f

Please sign in to comment.