@wdio/protocols 9.12.5 → 9.14.0

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.
package/build/index.js CHANGED
@@ -1628,7 +1628,7 @@ var protocol = {
1628
1628
  "returns": {
1629
1629
  "type": "Object",
1630
1630
  "name": "local.SessionNewResult",
1631
- "description": "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n setWindowRect: boolean;\n userAgent: string;\n proxy?: SessionProxyConfiguration;\n webSocketUrl?: string;\n };\n }\n ```"
1631
+ "description": "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n setWindowRect: boolean;\n userAgent: string;\n proxy?: SessionProxyConfiguration;\n unhandledPromptBehavior?: SessionUserPromptHandler;\n webSocketUrl?: string;\n };\n }\n ```"
1632
1632
  }
1633
1633
  }
1634
1634
  },
@@ -1656,10 +1656,15 @@ var protocol = {
1656
1656
  {
1657
1657
  "name": "params",
1658
1658
  "type": "`remote.SessionSubscriptionRequest`",
1659
- "description": "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>",
1659
+ "description": "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> userContexts?: BrowserUserContext[];<br />\\}</pre>",
1660
1660
  "required": true
1661
1661
  }
1662
- ]
1662
+ ],
1663
+ "returns": {
1664
+ "type": "Object",
1665
+ "name": "local.SessionSubscribeResult",
1666
+ "description": "Command return value with the following interface:\n ```ts\n {\n subscription: SessionSubscription;\n }\n ```"
1667
+ }
1663
1668
  }
1664
1669
  },
1665
1670
  "session.unsubscribe": {
@@ -1670,8 +1675,8 @@ var protocol = {
1670
1675
  "parameters": [
1671
1676
  {
1672
1677
  "name": "params",
1673
- "type": "`remote.SessionSubscriptionRequest`",
1674
- "description": "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>",
1678
+ "type": "`remote.SessionUnsubscribeParameters`",
1679
+ "description": "<pre>\\\\}</pre>",
1675
1680
  "required": true
1676
1681
  }
1677
1682
  ]
@@ -1700,8 +1705,8 @@ var protocol = {
1700
1705
  "parameters": [
1701
1706
  {
1702
1707
  "name": "params",
1703
- "type": "`remote.EmptyParams`",
1704
- "description": "<pre>\\{\\}</pre>",
1708
+ "type": "`remote.BrowserCreateUserContextParameters`",
1709
+ "description": "<pre>\\{<br /> acceptInsecureCerts?: boolean;<br />\\}</pre>",
1705
1710
  "required": true
1706
1711
  }
1707
1712
  ],
@@ -1712,6 +1717,26 @@ var protocol = {
1712
1717
  }
1713
1718
  }
1714
1719
  },
1720
+ "browser.getClientWindows": {
1721
+ "socket": {
1722
+ "command": "browserGetClientWindows",
1723
+ "description": 'WebDriver Bidi command to send command method "browser.getClientWindows" with parameters.',
1724
+ "ref": "https://w3c.github.io/webdriver-bidi/#command-browser-getClientWindows",
1725
+ "parameters": [
1726
+ {
1727
+ "name": "params",
1728
+ "type": "`remote.EmptyParams`",
1729
+ "description": "<pre>\\{\\}</pre>",
1730
+ "required": true
1731
+ }
1732
+ ],
1733
+ "returns": {
1734
+ "type": "Object",
1735
+ "name": "local.BrowserGetClientWindowsResult",
1736
+ "description": "Command return value with the following interface:\n ```ts\n {\n clientWindows: BrowserClientWindowInfo[];\n }\n ```"
1737
+ }
1738
+ }
1739
+ },
1715
1740
  "browser.getUserContexts": {
1716
1741
  "socket": {
1717
1742
  "command": "browserGetUserContexts",
@@ -1747,6 +1772,21 @@ var protocol = {
1747
1772
  ]
1748
1773
  }
1749
1774
  },
1775
+ "browser.setClientWindowState": {
1776
+ "socket": {
1777
+ "command": "browserSetClientWindowState",
1778
+ "description": 'WebDriver Bidi command to send command method "browser.setClientWindowState" with parameters.',
1779
+ "ref": "https://w3c.github.io/webdriver-bidi/#command-browser-setClientWindowState",
1780
+ "parameters": [
1781
+ {
1782
+ "name": "params",
1783
+ "type": "`remote.BrowserSetClientWindowStateParameters`",
1784
+ "description": "<pre>\\{<br /> clientWindow: BrowserClientWindow;<br />\\}</pre>",
1785
+ "required": true
1786
+ }
1787
+ ]
1788
+ }
1789
+ },
1750
1790
  "browsingContext.activate": {
1751
1791
  "socket": {
1752
1792
  "command": "browsingContextActivate",
@@ -1936,7 +1976,7 @@ var protocol = {
1936
1976
  {
1937
1977
  "name": "params",
1938
1978
  "type": "`remote.BrowsingContextSetViewportParameters`",
1939
- "description": "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> viewport?: BrowsingContextViewport &#124; null;<br /> devicePixelRatio?: number &#124; null;<br />\\}</pre>",
1979
+ "description": "<pre>\\{<br /> context?: BrowsingContextBrowsingContext;<br /> viewport?: BrowsingContextViewport &#124; null;<br /> devicePixelRatio?: number &#124; null;<br /> userContexts?: BrowserUserContext[];<br />\\}</pre>",
1940
1980
  "required": true
1941
1981
  }
1942
1982
  ]
@@ -1957,6 +1997,21 @@ var protocol = {
1957
1997
  ]
1958
1998
  }
1959
1999
  },
2000
+ "emulation.setGeolocationOverride": {
2001
+ "socket": {
2002
+ "command": "emulationSetGeolocationOverride",
2003
+ "description": 'WebDriver Bidi command to send command method "emulation.setGeolocationOverride" with parameters.',
2004
+ "ref": "https://w3c.github.io/webdriver-bidi/#command-emulation-setGeolocationOverride",
2005
+ "parameters": [
2006
+ {
2007
+ "name": "params",
2008
+ "type": "`remote.EmulationSetGeolocationOverrideParameters`",
2009
+ "description": "<pre>\\\\}</pre>",
2010
+ "required": true
2011
+ }
2012
+ ]
2013
+ }
2014
+ },
1960
2015
  "network.addIntercept": {
1961
2016
  "socket": {
1962
2017
  "command": "networkAddIntercept",
@@ -2067,6 +2122,21 @@ var protocol = {
2067
2122
  ]
2068
2123
  }
2069
2124
  },
2125
+ "network.setCacheBehavior": {
2126
+ "socket": {
2127
+ "command": "networkSetCacheBehavior",
2128
+ "description": 'WebDriver Bidi command to send command method "network.setCacheBehavior" with parameters.',
2129
+ "ref": "https://w3c.github.io/webdriver-bidi/#command-network-setCacheBehavior",
2130
+ "parameters": [
2131
+ {
2132
+ "name": "params",
2133
+ "type": "`remote.NetworkSetCacheBehaviorParameters`",
2134
+ "description": '<pre>\\{<br /> cacheBehavior: "default" &#124; "bypass";<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>',
2135
+ "required": true
2136
+ }
2137
+ ]
2138
+ }
2139
+ },
2070
2140
  "script.addPreloadScript": {
2071
2141
  "socket": {
2072
2142
  "command": "scriptAddPreloadScript",
@@ -2076,7 +2146,7 @@ var protocol = {
2076
2146
  {
2077
2147
  "name": "params",
2078
2148
  "type": "`remote.ScriptAddPreloadScriptParameters`",
2079
- "description": "<pre>\\{<br /> functionDeclaration: string;<br /> arguments?: ScriptChannelValue[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> sandbox?: string;<br />\\}</pre>",
2149
+ "description": "<pre>\\{<br /> functionDeclaration: string;<br /> arguments?: ScriptChannelValue[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> userContexts?: BrowserUserContext[];<br /> sandbox?: string;<br />\\}</pre>",
2080
2150
  "required": true
2081
2151
  }
2082
2152
  ],
@@ -2276,6 +2346,41 @@ var protocol = {
2276
2346
  }
2277
2347
  ]
2278
2348
  }
2349
+ },
2350
+ "webExtension.install": {
2351
+ "socket": {
2352
+ "command": "webExtensionInstall",
2353
+ "description": 'WebDriver Bidi command to send command method "webExtension.install" with parameters.',
2354
+ "ref": "https://w3c.github.io/webdriver-bidi/#command-webExtension-install",
2355
+ "parameters": [
2356
+ {
2357
+ "name": "params",
2358
+ "type": "`remote.WebExtensionInstallParameters`",
2359
+ "description": "<pre>\\{<br /> extensionData: WebExtensionExtensionData;<br />\\}</pre>",
2360
+ "required": true
2361
+ }
2362
+ ],
2363
+ "returns": {
2364
+ "type": "Object",
2365
+ "name": "local.WebExtensionInstallResult",
2366
+ "description": "Command return value with the following interface:\n ```ts\n {\n extension: WebExtensionExtension;\n }\n ```"
2367
+ }
2368
+ }
2369
+ },
2370
+ "webExtension.uninstall": {
2371
+ "socket": {
2372
+ "command": "webExtensionUninstall",
2373
+ "description": 'WebDriver Bidi command to send command method "webExtension.uninstall" with parameters.',
2374
+ "ref": "https://w3c.github.io/webdriver-bidi/#command-webExtension-uninstall",
2375
+ "parameters": [
2376
+ {
2377
+ "name": "params",
2378
+ "type": "`remote.WebExtensionUninstallParameters`",
2379
+ "description": "<pre>\\{<br /> extension: WebExtensionExtension;<br />\\}</pre>",
2380
+ "required": true
2381
+ }
2382
+ ]
2383
+ }
2279
2384
  }
2280
2385
  };
2281
2386
  var webdriverBidi_default = protocol;
@@ -5610,7 +5715,7 @@ var selenium_default = {
5610
5715
  }
5611
5716
  },
5612
5717
  "/grid/api/proxy": {
5613
- GET: {
5718
+ POST: {
5614
5719
  isHubCommand: true,
5615
5720
  command: "gridProxyDetails",
5616
5721
  description: "Get proxy details.",
@@ -85,7 +85,7 @@ declare const _default: {
85
85
  };
86
86
  };
87
87
  '/grid/api/proxy': {
88
- GET: {
88
+ POST: {
89
89
  isHubCommand: boolean;
90
90
  command: string;
91
91
  description: string;
@@ -81,7 +81,7 @@ declare const protocol: {
81
81
  readonly returns: {
82
82
  readonly type: "Object";
83
83
  readonly name: "local.SessionNewResult";
84
- readonly description: "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n setWindowRect: boolean;\n userAgent: string;\n proxy?: SessionProxyConfiguration;\n webSocketUrl?: string;\n };\n }\n ```";
84
+ readonly description: "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n setWindowRect: boolean;\n userAgent: string;\n proxy?: SessionProxyConfiguration;\n unhandledPromptBehavior?: SessionUserPromptHandler;\n webSocketUrl?: string;\n };\n }\n ```";
85
85
  };
86
86
  };
87
87
  };
@@ -106,9 +106,14 @@ declare const protocol: {
106
106
  readonly parameters: readonly [{
107
107
  readonly name: "params";
108
108
  readonly type: "`remote.SessionSubscriptionRequest`";
109
- readonly description: "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>";
109
+ readonly description: "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> userContexts?: BrowserUserContext[];<br />\\}</pre>";
110
110
  readonly required: true;
111
111
  }];
112
+ readonly returns: {
113
+ readonly type: "Object";
114
+ readonly name: "local.SessionSubscribeResult";
115
+ readonly description: "Command return value with the following interface:\n ```ts\n {\n subscription: SessionSubscription;\n }\n ```";
116
+ };
112
117
  };
113
118
  };
114
119
  readonly "session.unsubscribe": {
@@ -118,8 +123,8 @@ declare const protocol: {
118
123
  readonly ref: "https://w3c.github.io/webdriver-bidi/#command-session-unsubscribe";
119
124
  readonly parameters: readonly [{
120
125
  readonly name: "params";
121
- readonly type: "`remote.SessionSubscriptionRequest`";
122
- readonly description: "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>";
126
+ readonly type: "`remote.SessionUnsubscribeParameters`";
127
+ readonly description: "<pre>\\\\}</pre>";
123
128
  readonly required: true;
124
129
  }];
125
130
  };
@@ -144,8 +149,8 @@ declare const protocol: {
144
149
  readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-createUserContext";
145
150
  readonly parameters: readonly [{
146
151
  readonly name: "params";
147
- readonly type: "`remote.EmptyParams`";
148
- readonly description: "<pre>\\{\\}</pre>";
152
+ readonly type: "`remote.BrowserCreateUserContextParameters`";
153
+ readonly description: "<pre>\\{<br /> acceptInsecureCerts?: boolean;<br />\\}</pre>";
149
154
  readonly required: true;
150
155
  }];
151
156
  readonly returns: {
@@ -155,6 +160,24 @@ declare const protocol: {
155
160
  };
156
161
  };
157
162
  };
163
+ readonly "browser.getClientWindows": {
164
+ readonly socket: {
165
+ readonly command: "browserGetClientWindows";
166
+ readonly description: "WebDriver Bidi command to send command method \"browser.getClientWindows\" with parameters.";
167
+ readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-getClientWindows";
168
+ readonly parameters: readonly [{
169
+ readonly name: "params";
170
+ readonly type: "`remote.EmptyParams`";
171
+ readonly description: "<pre>\\{\\}</pre>";
172
+ readonly required: true;
173
+ }];
174
+ readonly returns: {
175
+ readonly type: "Object";
176
+ readonly name: "local.BrowserGetClientWindowsResult";
177
+ readonly description: "Command return value with the following interface:\n ```ts\n {\n clientWindows: BrowserClientWindowInfo[];\n }\n ```";
178
+ };
179
+ };
180
+ };
158
181
  readonly "browser.getUserContexts": {
159
182
  readonly socket: {
160
183
  readonly command: "browserGetUserContexts";
@@ -186,6 +209,19 @@ declare const protocol: {
186
209
  }];
187
210
  };
188
211
  };
212
+ readonly "browser.setClientWindowState": {
213
+ readonly socket: {
214
+ readonly command: "browserSetClientWindowState";
215
+ readonly description: "WebDriver Bidi command to send command method \"browser.setClientWindowState\" with parameters.";
216
+ readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-setClientWindowState";
217
+ readonly parameters: readonly [{
218
+ readonly name: "params";
219
+ readonly type: "`remote.BrowserSetClientWindowStateParameters`";
220
+ readonly description: "<pre>\\{<br /> clientWindow: BrowserClientWindow;<br />\\}</pre>";
221
+ readonly required: true;
222
+ }];
223
+ };
224
+ };
189
225
  readonly "browsingContext.activate": {
190
226
  readonly socket: {
191
227
  readonly command: "browsingContextActivate";
@@ -354,7 +390,7 @@ declare const protocol: {
354
390
  readonly parameters: readonly [{
355
391
  readonly name: "params";
356
392
  readonly type: "`remote.BrowsingContextSetViewportParameters`";
357
- readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> viewport?: BrowsingContextViewport &#124; null;<br /> devicePixelRatio?: number &#124; null;<br />\\}</pre>";
393
+ readonly description: "<pre>\\{<br /> context?: BrowsingContextBrowsingContext;<br /> viewport?: BrowsingContextViewport &#124; null;<br /> devicePixelRatio?: number &#124; null;<br /> userContexts?: BrowserUserContext[];<br />\\}</pre>";
358
394
  readonly required: true;
359
395
  }];
360
396
  };
@@ -372,6 +408,19 @@ declare const protocol: {
372
408
  }];
373
409
  };
374
410
  };
411
+ readonly "emulation.setGeolocationOverride": {
412
+ readonly socket: {
413
+ readonly command: "emulationSetGeolocationOverride";
414
+ readonly description: "WebDriver Bidi command to send command method \"emulation.setGeolocationOverride\" with parameters.";
415
+ readonly ref: "https://w3c.github.io/webdriver-bidi/#command-emulation-setGeolocationOverride";
416
+ readonly parameters: readonly [{
417
+ readonly name: "params";
418
+ readonly type: "`remote.EmulationSetGeolocationOverrideParameters`";
419
+ readonly description: "<pre>\\\\}</pre>";
420
+ readonly required: true;
421
+ }];
422
+ };
423
+ };
375
424
  readonly "network.addIntercept": {
376
425
  readonly socket: {
377
426
  readonly command: "networkAddIntercept";
@@ -468,6 +517,19 @@ declare const protocol: {
468
517
  }];
469
518
  };
470
519
  };
520
+ readonly "network.setCacheBehavior": {
521
+ readonly socket: {
522
+ readonly command: "networkSetCacheBehavior";
523
+ readonly description: "WebDriver Bidi command to send command method \"network.setCacheBehavior\" with parameters.";
524
+ readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-setCacheBehavior";
525
+ readonly parameters: readonly [{
526
+ readonly name: "params";
527
+ readonly type: "`remote.NetworkSetCacheBehaviorParameters`";
528
+ readonly description: "<pre>\\{<br /> cacheBehavior: \"default\" &#124; \"bypass\";<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>";
529
+ readonly required: true;
530
+ }];
531
+ };
532
+ };
471
533
  readonly "script.addPreloadScript": {
472
534
  readonly socket: {
473
535
  readonly command: "scriptAddPreloadScript";
@@ -476,7 +538,7 @@ declare const protocol: {
476
538
  readonly parameters: readonly [{
477
539
  readonly name: "params";
478
540
  readonly type: "`remote.ScriptAddPreloadScriptParameters`";
479
- readonly description: "<pre>\\{<br /> functionDeclaration: string;<br /> arguments?: ScriptChannelValue[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> sandbox?: string;<br />\\}</pre>";
541
+ readonly description: "<pre>\\{<br /> functionDeclaration: string;<br /> arguments?: ScriptChannelValue[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> userContexts?: BrowserUserContext[];<br /> sandbox?: string;<br />\\}</pre>";
480
542
  readonly required: true;
481
543
  }];
482
544
  readonly returns: {
@@ -654,6 +716,37 @@ declare const protocol: {
654
716
  }];
655
717
  };
656
718
  };
719
+ readonly "webExtension.install": {
720
+ readonly socket: {
721
+ readonly command: "webExtensionInstall";
722
+ readonly description: "WebDriver Bidi command to send command method \"webExtension.install\" with parameters.";
723
+ readonly ref: "https://w3c.github.io/webdriver-bidi/#command-webExtension-install";
724
+ readonly parameters: readonly [{
725
+ readonly name: "params";
726
+ readonly type: "`remote.WebExtensionInstallParameters`";
727
+ readonly description: "<pre>\\{<br /> extensionData: WebExtensionExtensionData;<br />\\}</pre>";
728
+ readonly required: true;
729
+ }];
730
+ readonly returns: {
731
+ readonly type: "Object";
732
+ readonly name: "local.WebExtensionInstallResult";
733
+ readonly description: "Command return value with the following interface:\n ```ts\n {\n extension: WebExtensionExtension;\n }\n ```";
734
+ };
735
+ };
736
+ };
737
+ readonly "webExtension.uninstall": {
738
+ readonly socket: {
739
+ readonly command: "webExtensionUninstall";
740
+ readonly description: "WebDriver Bidi command to send command method \"webExtension.uninstall\" with parameters.";
741
+ readonly ref: "https://w3c.github.io/webdriver-bidi/#command-webExtension-uninstall";
742
+ readonly parameters: readonly [{
743
+ readonly name: "params";
744
+ readonly type: "`remote.WebExtensionUninstallParameters`";
745
+ readonly description: "<pre>\\{<br /> extension: WebExtensionExtension;<br />\\}</pre>";
746
+ readonly required: true;
747
+ }];
748
+ };
749
+ };
657
750
  };
658
751
  export default protocol;
659
752
  //# sourceMappingURL=webdriverBidi.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"webdriverBidi.d.ts","sourceRoot":"","sources":["../../src/protocols/webdriverBidi.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAstBJ,CAAA;AACV,eAAe,QAAQ,CAAA"}
1
+ {"version":3,"file":"webdriverBidi.d.ts","sourceRoot":"","sources":["../../src/protocols/webdriverBidi.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+zBJ,CAAA;AACV,eAAe,QAAQ,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/protocols",
3
- "version": "9.12.5",
3
+ "version": "9.14.0",
4
4
  "description": "Utility package providing information about automation protocols",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-protocols",
@@ -29,5 +29,5 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "795e4525599909356d02ef0788c1ece7a7d85ecf"
32
+ "gitHead": "f8e62f63eb087a06556e8c85e042403da0e4485e"
33
33
  }