webdriver-bidi-protocol 0.2.8 → 0.2.9

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.9"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [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
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add emulation.setScriptingEnabled ([#234](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/issues/234)) ([d1a7de7](https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/commit/d1a7de7dfb7abdc3178524457a5c011f32d08561))
9
+
3
10
  ## [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
11
 
5
12
 
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.9",
4
4
  "description": "",
5
5
  "main": "out/index.js",
6
6
  "types": "out/index.d.ts",
package/src/index.ts CHANGED
@@ -165,6 +165,11 @@ 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
+ };
172
+
168
173
 
169
174
  'input.performActions': {
170
175
  params: Bidi.Input.PerformActionsParameters;