@@ -15,7 +15,10 @@ export type Command =
15
15
| BidiBluetooth . Bluetooth . SimulateAdapter
16
16
| BidiBluetooth . Bluetooth . HandleRequestDevicePrompt
17
17
| BidiBluetooth . Bluetooth . SimulateAdvertisement
18
- | BidiBluetooth . Bluetooth . SimulatePreconnectedPeripheral ;
18
+ | BidiBluetooth . Bluetooth . SimulatePreconnectedPeripheral
19
+ | BidiBluetooth . Bluetooth . DisableSimulation
20
+ | BidiBluetooth . Bluetooth . SimulateGattDisconnection
21
+ | BidiBluetooth . Bluetooth . SimulateDescriptorResponse ;
19
22
export type Event =
20
23
| Bidi . Event
21
24
| ( {
@@ -27,6 +30,10 @@ export interface Commands {
27
30
params : BidiBluetooth . Bluetooth . HandleRequestDevicePromptParameters ;
28
31
returnType : Bidi . EmptyResult ;
29
32
} ;
33
+ 'bluetooth.disableSimulation' : {
34
+ params : BidiBluetooth . Bluetooth . DisableSimulationParameters ;
35
+ returnType : Bidi . EmptyResult ;
36
+ } ;
30
37
'bluetooth.simulateAdapter' : {
31
38
params : BidiBluetooth . Bluetooth . SimulateAdapterParameters ;
32
39
returnType : Bidi . EmptyResult ;
@@ -36,13 +43,29 @@ export interface Commands {
36
43
returnType : Bidi . EmptyResult ;
37
44
} ;
38
45
'bluetooth.simulatePreconnectedPeripheral' : {
39
- params : BidiBluetooth . Bluetooth . SimulatePreconnectedPeripheral ;
46
+ params : BidiBluetooth . Bluetooth . SimulatePreconnectedPeripheralParameters ;
47
+ returnType : Bidi . EmptyResult ;
48
+ } ;
49
+ 'bluetooth.simulateGattDisconnection' : {
50
+ params : BidiBluetooth . Bluetooth . SimulateGattDisconnectionParameters ;
51
+ returnType : Bidi . EmptyResult ;
52
+ } ;
53
+ 'bluetooth.simulateDescriptor' : {
54
+ params : BidiBluetooth . Bluetooth . SimulateDescriptorParameters ;
55
+ returnType : Bidi . EmptyResult ;
56
+ } ;
57
+ 'bluetooth.simulateDescriptorResponse' : {
58
+ params : BidiBluetooth . Bluetooth . SimulateDescriptorResponseParameters ;
40
59
returnType : Bidi . EmptyResult ;
41
60
} ;
42
61
'browser.close' : {
43
62
params : Bidi . EmptyParams ;
44
63
returnType : Bidi . EmptyResult ;
45
64
} ;
65
+ 'browser.getgetClientWindows' : {
66
+ params : Bidi . EmptyParams ;
67
+ returnType : Bidi . Browser . GetClientWindowsResult ;
68
+ } ;
46
69
'browser.createUserContext' : {
47
70
params : Bidi . EmptyParams ;
48
71
returnType : Bidi . Browser . CreateUserContextResult ;
@@ -57,6 +80,10 @@ export interface Commands {
57
80
} ;
58
81
returnType : Bidi . Browser . RemoveUserContext ;
59
82
} ;
83
+ 'browser.setClientWindowState' : {
84
+ params : Bidi . Browser . SetClientWindowStateParameters ;
85
+ returnType : Bidi . Browser . ClientWindowInfo ;
86
+ } ;
60
87
'browsingContext.activate' : {
61
88
params : Bidi . BrowsingContext . ActivateParameters ;
62
89
returnType : Bidi . EmptyResult ;
@@ -105,6 +132,22 @@ export interface Commands {
105
132
params : Bidi . BrowsingContext . TraverseHistoryParameters ;
106
133
returnType : Bidi . EmptyResult ;
107
134
} ;
135
+ 'emulation.setForcedColorsModeThemeOverride' : {
136
+ params : Bidi . Emulation . SetForcedColorsModeThemeOverrideParameters ;
137
+ returnType : Bidi . EmptyResult ;
138
+ } ;
139
+ 'emulation.setGeolocationOverride' : {
140
+ params : Bidi . Emulation . SetGeolocationOverrideParameters ;
141
+ returnType : Bidi . EmptyResult ;
142
+ } ;
143
+ 'emulation.setScreenOrientationOverride' : {
144
+ params : Bidi . Emulation . SetScreenOrientationOverrideParameters ;
145
+ returnType : Bidi . EmptyResult ;
146
+ } ;
147
+ 'emulation.setTimezoneOverride' : {
148
+ params : Bidi . Emulation . SetTimezoneOverrideParameters ;
149
+ returnType : Bidi . EmptyResult ;
150
+ } ;
108
151
'input.performActions' : {
109
152
params : Bidi . Input . PerformActionsParameters ;
110
153
returnType : Bidi . EmptyResult ;
@@ -173,6 +216,10 @@ export interface Commands {
173
216
params : Bidi . Storage . SetCookieParameters ;
174
217
returnType : Bidi . Storage . SetCookieParameters ;
175
218
} ;
219
+ 'network.addDataCollector' : {
220
+ params : Bidi . Network . AddDataCollectorParameters ;
221
+ returnType : Bidi . Network . AddDataCollectorResult ;
222
+ } ;
176
223
'network.addIntercept' : {
177
224
params : Bidi . Network . AddInterceptParameters ;
178
225
returnType : Bidi . Network . AddInterceptResult ;
@@ -197,6 +244,22 @@ export interface Commands {
197
244
params : Bidi . Network . ProvideResponseParameters ;
198
245
returnType : Bidi . EmptyResult ;
199
246
} ;
247
+ 'network.disownData' : {
248
+ params : Bidi . Network . DisownDataParameters ;
249
+ returnType : Bidi . EmptyResult ;
250
+ } ;
251
+ 'network.getData' : {
252
+ params : Bidi . Network . GetDataParameters ;
253
+ returnType : Bidi . Network . GetDataResult ;
254
+ } ;
255
+ 'network.setCacheBehavior' : {
256
+ params : Bidi . Network . SetCacheBehaviorParameters ;
257
+ returnType : Bidi . EmptyResult ;
258
+ } ;
259
+ 'network.setExtraHeaders' : {
260
+ params : Bidi . Network . SetExtraHeadersParameters ;
261
+ returnType : Bidi . EmptyResult ;
262
+ } ;
200
263
'webExtension.install' : {
201
264
params : Bidi . WebExtension . InstallParameters ;
202
265
returnType : Bidi . WebExtension . InstallResult ;
0 commit comments