devtools-protocol 0.0.1475386 → 0.0.1477697
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/json/browser_protocol.json +14 -14
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +10 -10
- package/types/protocol.d.ts +22 -7
@@ -19549,18 +19549,6 @@
|
|
19549
19549
|
}
|
19550
19550
|
]
|
19551
19551
|
},
|
19552
|
-
{
|
19553
|
-
"id": "AutoResponseMode",
|
19554
|
-
"description": "Enum of possible auto-response for permission / prompt dialogs.",
|
19555
|
-
"experimental": true,
|
19556
|
-
"type": "string",
|
19557
|
-
"enum": [
|
19558
|
-
"none",
|
19559
|
-
"autoAccept",
|
19560
|
-
"autoReject",
|
19561
|
-
"autoOptOut"
|
19562
|
-
]
|
19563
|
-
},
|
19564
19552
|
{
|
19565
19553
|
"id": "NavigationType",
|
19566
19554
|
"description": "The type of a frameNavigated event.",
|
@@ -21000,7 +20988,14 @@
|
|
21000
20988
|
"parameters": [
|
21001
20989
|
{
|
21002
20990
|
"name": "mode",
|
21003
|
-
"
|
20991
|
+
"type": "string",
|
20992
|
+
"enum": [
|
20993
|
+
"none",
|
20994
|
+
"autoAccept",
|
20995
|
+
"autoChooseToAuthAnotherWay",
|
20996
|
+
"autoReject",
|
20997
|
+
"autoOptOut"
|
20998
|
+
]
|
21004
20999
|
}
|
21005
21000
|
]
|
21006
21001
|
},
|
@@ -21011,7 +21006,12 @@
|
|
21011
21006
|
"parameters": [
|
21012
21007
|
{
|
21013
21008
|
"name": "mode",
|
21014
|
-
"
|
21009
|
+
"type": "string",
|
21010
|
+
"enum": [
|
21011
|
+
"none",
|
21012
|
+
"autoAccept",
|
21013
|
+
"autoReject"
|
21014
|
+
]
|
21015
21015
|
}
|
21016
21016
|
]
|
21017
21017
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9720,25 +9720,25 @@ domain Page
|
|
9720
9720
|
# Clears seeded compilation cache.
|
9721
9721
|
experimental command clearCompilationCache
|
9722
9722
|
|
9723
|
-
# Enum of possible auto-response for permission / prompt dialogs.
|
9724
|
-
experimental type AutoResponseMode extends string
|
9725
|
-
enum
|
9726
|
-
none
|
9727
|
-
autoAccept
|
9728
|
-
autoReject
|
9729
|
-
autoOptOut
|
9730
|
-
|
9731
9723
|
# Sets the Secure Payment Confirmation transaction mode.
|
9732
9724
|
# https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
|
9733
9725
|
experimental command setSPCTransactionMode
|
9734
9726
|
parameters
|
9735
|
-
|
9727
|
+
enum mode
|
9728
|
+
none
|
9729
|
+
autoAccept
|
9730
|
+
autoChooseToAuthAnotherWay
|
9731
|
+
autoReject
|
9732
|
+
autoOptOut
|
9736
9733
|
|
9737
9734
|
# Extensions for Custom Handlers API:
|
9738
9735
|
# https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
|
9739
9736
|
experimental command setRPHRegistrationMode
|
9740
9737
|
parameters
|
9741
|
-
|
9738
|
+
enum mode
|
9739
|
+
none
|
9740
|
+
autoAccept
|
9741
|
+
autoReject
|
9742
9742
|
|
9743
9743
|
# Generates a report for testing.
|
9744
9744
|
experimental command generateTestReport
|
package/types/protocol.d.ts
CHANGED
@@ -14688,11 +14688,6 @@ export namespace Protocol {
|
|
14688
14688
|
themeColor?: string;
|
14689
14689
|
}
|
14690
14690
|
|
14691
|
-
/**
|
14692
|
-
* Enum of possible auto-response for permission / prompt dialogs.
|
14693
|
-
*/
|
14694
|
-
export type AutoResponseMode = ('none' | 'autoAccept' | 'autoReject' | 'autoOptOut');
|
14695
|
-
|
14696
14691
|
/**
|
14697
14692
|
* The type of a frameNavigated event.
|
14698
14693
|
*/
|
@@ -15485,12 +15480,32 @@ export namespace Protocol {
|
|
15485
15480
|
data: string;
|
15486
15481
|
}
|
15487
15482
|
|
15483
|
+
export const enum SetSPCTransactionModeRequestMode {
|
15484
|
+
None = 'none',
|
15485
|
+
AutoAccept = 'autoAccept',
|
15486
|
+
AutoChooseToAuthAnotherWay = 'autoChooseToAuthAnotherWay',
|
15487
|
+
AutoReject = 'autoReject',
|
15488
|
+
AutoOptOut = 'autoOptOut',
|
15489
|
+
}
|
15490
|
+
|
15488
15491
|
export interface SetSPCTransactionModeRequest {
|
15489
|
-
|
15492
|
+
/**
|
15493
|
+
* (SetSPCTransactionModeRequestMode enum)
|
15494
|
+
*/
|
15495
|
+
mode: ('none' | 'autoAccept' | 'autoChooseToAuthAnotherWay' | 'autoReject' | 'autoOptOut');
|
15496
|
+
}
|
15497
|
+
|
15498
|
+
export const enum SetRPHRegistrationModeRequestMode {
|
15499
|
+
None = 'none',
|
15500
|
+
AutoAccept = 'autoAccept',
|
15501
|
+
AutoReject = 'autoReject',
|
15490
15502
|
}
|
15491
15503
|
|
15492
15504
|
export interface SetRPHRegistrationModeRequest {
|
15493
|
-
|
15505
|
+
/**
|
15506
|
+
* (SetRPHRegistrationModeRequestMode enum)
|
15507
|
+
*/
|
15508
|
+
mode: ('none' | 'autoAccept' | 'autoReject');
|
15494
15509
|
}
|
15495
15510
|
|
15496
15511
|
export interface GenerateTestReportRequest {
|