webdriver-bidi-protocol 0.2.9 → 0.2.10

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.9"
2
+ ".": "0.2.10"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.10](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/compare/webdriver-bidi-protocol-v0.2.9...webdriver-bidi-protocol-v0.2.10) (2025-09-09)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * re-generate types based on specifciation updates ([#236](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/issues/236)) ([7b33604](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/commit/7b336043c3aaf0591c9f4729c00b949563274b08))
9
+
3
10
  ## [0.2.9](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/compare/webdriver-bidi-protocol-v0.2.8...webdriver-bidi-protocol-v0.2.9) (2025-09-09)
4
11
 
5
12
 
package/out/index.d.ts CHANGED
@@ -150,6 +150,10 @@ export interface Commands {
150
150
  params: Bidi.Emulation.SetTimezoneOverrideParameters;
151
151
  returnType: Bidi.EmptyResult;
152
152
  };
153
+ 'emulation.setScriptingEnabled': {
154
+ params: Bidi.Emulation.SetScriptingEnabledParameters;
155
+ returnType: Bidi.EmptyResult;
156
+ };
153
157
  'input.performActions': {
154
158
  params: Bidi.Input.PerformActionsParameters;
155
159
  returnType: Bidi.EmptyResult;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webdriver-bidi-protocol",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "",
5
5
  "main": "out/index.js",
6
6
  "types": "out/index.d.ts",
package/src/index.ts CHANGED
@@ -170,7 +170,6 @@ export interface Commands {
170
170
  returnType: Bidi.EmptyResult;
171
171
  };
172
172
 
173
-
174
173
  'input.performActions': {
175
174
  params: Bidi.Input.PerformActionsParameters;
176
175
  returnType: Bidi.EmptyResult;