devtools-protocol 0.0.1072049 → 0.0.1073708
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.
@@ -17571,8 +17571,9 @@
|
|
17571
17571
|
"type": "string",
|
17572
17572
|
"enum": [
|
17573
17573
|
"none",
|
17574
|
-
"
|
17575
|
-
"
|
17574
|
+
"autoAccept",
|
17575
|
+
"autoReject",
|
17576
|
+
"autoOptOut"
|
17576
17577
|
]
|
17577
17578
|
}
|
17578
17579
|
]
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
@@ -13557,15 +13557,16 @@ export namespace Protocol {
|
|
13557
13557
|
|
13558
13558
|
export const enum SetSPCTransactionModeRequestMode {
|
13559
13559
|
None = 'none',
|
13560
|
-
|
13561
|
-
|
13560
|
+
AutoAccept = 'autoAccept',
|
13561
|
+
AutoReject = 'autoReject',
|
13562
|
+
AutoOptOut = 'autoOptOut',
|
13562
13563
|
}
|
13563
13564
|
|
13564
13565
|
export interface SetSPCTransactionModeRequest {
|
13565
13566
|
/**
|
13566
13567
|
* (SetSPCTransactionModeRequestMode enum)
|
13567
13568
|
*/
|
13568
|
-
mode: ('none' | '
|
13569
|
+
mode: ('none' | 'autoAccept' | 'autoReject' | 'autoOptOut');
|
13569
13570
|
}
|
13570
13571
|
|
13571
13572
|
export interface GenerateTestReportRequest {
|