File tree Expand file tree Collapse file tree 4 files changed +32
-10
lines changed
Expand file tree Collapse file tree 4 files changed +32
-10
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,13 @@ export declare namespace Browser {
310310export declare namespace Browser {
311311 type CreateUserContext = {
312312 method : 'browser.createUserContext' ;
313- params : EmptyParams ;
313+ params : Browser . CreateUserContextParameters ;
314+ } ;
315+ }
316+ export declare namespace Browser {
317+ type CreateUserContextParameters = {
318+ acceptInsecureCerts ?: boolean ;
319+ proxy ?: Session . ProxyConfiguration ;
314320 } ;
315321}
316322export declare namespace Browser {
@@ -1691,16 +1697,16 @@ export declare namespace Script {
16911697 } ;
16921698}
16931699export declare namespace Script {
1694- type RegExpRemoteValue = {
1700+ type RegExpRemoteValue = Script . RegExpLocalValue & {
16951701 handle ?: Script . Handle ;
16961702 internalId ?: Script . InternalId ;
1697- } & Script . RegExpLocalValue ;
1703+ } ;
16981704}
16991705export declare namespace Script {
1700- type DateRemoteValue = {
1706+ type DateRemoteValue = Script . DateLocalValue & {
17011707 handle ?: Script . Handle ;
17021708 internalId ?: Script . InternalId ;
1703- } & Script . DateLocalValue ;
1709+ } ;
17041710}
17051711export declare namespace Script {
17061712 type MapRemoteValue = {
Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ export declare namespace Bluetooth {
210210 | 'subscribe-to-notifications'
211211 | 'unsubscribe-from-notifications' ;
212212 code : number ;
213+ data ?: [ ...number [ ] ] ;
213214 } ;
214215}
215216export declare namespace Bluetooth {
@@ -243,8 +244,12 @@ export declare namespace Bluetooth {
243244 descriptorUuid : Bluetooth . BluetoothUuid ;
244245 type : 'read' | 'write' ;
245246 code : number ;
247+ data ?: [ ...number [ ] ] ;
246248 } ;
247249}
250+ export type BluetoothEvent =
251+ | Bluetooth . RequestDevicePromptUpdated
252+ | Bluetooth . GattConnectionAttempted ;
248253export declare namespace Bluetooth {
249254 type RequestDevicePromptUpdated = {
250255 method : 'bluetooth.requestDevicePromptUpdated' ;
Original file line number Diff line number Diff line change @@ -312,7 +312,13 @@ export namespace Browser {
312312export namespace Browser {
313313 export type CreateUserContext = {
314314 method : 'browser.createUserContext' ;
315- params : EmptyParams ;
315+ params : Browser . CreateUserContextParameters ;
316+ } ;
317+ }
318+ export namespace Browser {
319+ export type CreateUserContextParameters = {
320+ acceptInsecureCerts ?: boolean ;
321+ proxy ?: Session . ProxyConfiguration ;
316322 } ;
317323}
318324export namespace Browser {
@@ -1695,16 +1701,16 @@ export namespace Script {
16951701 } ;
16961702}
16971703export namespace Script {
1698- export type RegExpRemoteValue = {
1704+ export type RegExpRemoteValue = Script . RegExpLocalValue & {
16991705 handle ?: Script . Handle ;
17001706 internalId ?: Script . InternalId ;
1701- } & Script . RegExpLocalValue ;
1707+ } ;
17021708}
17031709export namespace Script {
1704- export type DateRemoteValue = {
1710+ export type DateRemoteValue = Script . DateLocalValue & {
17051711 handle ?: Script . Handle ;
17061712 internalId ?: Script . InternalId ;
1707- } & Script . DateLocalValue ;
1713+ } ;
17081714}
17091715export namespace Script {
17101716 export type MapRemoteValue = {
Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ export namespace Bluetooth {
210210 | 'subscribe-to-notifications'
211211 | 'unsubscribe-from-notifications' ;
212212 code : number ;
213+ data ?: [ ...number [ ] ] ;
213214 } ;
214215}
215216export namespace Bluetooth {
@@ -243,8 +244,12 @@ export namespace Bluetooth {
243244 descriptorUuid : Bluetooth . BluetoothUuid ;
244245 type : 'read' | 'write' ;
245246 code : number ;
247+ data ?: [ ...number [ ] ] ;
246248 } ;
247249}
250+ export type BluetoothEvent =
251+ | Bluetooth . RequestDevicePromptUpdated
252+ | Bluetooth . GattConnectionAttempted ;
248253export namespace Bluetooth {
249254 export type RequestDevicePromptUpdated = {
250255 method : 'bluetooth.requestDevicePromptUpdated' ;
You can’t perform that action at this time.
0 commit comments