webdriver-bidi-protocol 0.2.8 → 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.8"
2
+ ".": "0.2.10"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
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
+
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)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add emulation.setScriptingEnabled ([#234](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/issues/234)) ([d1a7de7](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/commit/d1a7de7dfb7abdc3178524457a5c011f32d08561))
16
+
3
17
  ## [0.2.8](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/compare/webdriver-bidi-protocol-v0.2.7...webdriver-bidi-protocol-v0.2.8) (2025-09-09)
4
18
 
5
19
 
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.8",
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
@@ -165,6 +165,10 @@ export interface Commands {
165
165
  params: Bidi.Emulation.SetTimezoneOverrideParameters;
166
166
  returnType: Bidi.EmptyResult;
167
167
  };
168
+ 'emulation.setScriptingEnabled': {
169
+ params: Bidi.Emulation.SetScriptingEnabledParameters;
170
+ returnType: Bidi.EmptyResult;
171
+ };
168
172
 
169
173
  'input.performActions': {
170
174
  params: Bidi.Input.PerformActionsParameters;