devtools-protocol 0.0.1262535 → 0.0.1263133
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.
@@ -19105,7 +19105,7 @@
|
|
19105
19105
|
},
|
19106
19106
|
{
|
19107
19107
|
"name": "hasBrowserHandler",
|
19108
|
-
"description": "True
|
19108
|
+
"description": "True iff browser is capable showing or acting on the given dialog. When browser has no\ndialog handler for given target, calling alert while Page domain is engaged will stall\nthe page execution. Execution can be resumed via calling Page.handleJavaScriptDialog.",
|
19109
19109
|
"type": "boolean"
|
19110
19110
|
},
|
19111
19111
|
{
|
@@ -22236,11 +22236,11 @@
|
|
22236
22236
|
},
|
22237
22237
|
{
|
22238
22238
|
"name": "type",
|
22239
|
+
"description": "List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22",
|
22239
22240
|
"type": "string"
|
22240
22241
|
},
|
22241
22242
|
{
|
22242
22243
|
"name": "title",
|
22243
|
-
"description": "List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22",
|
22244
22244
|
"type": "string"
|
22245
22245
|
},
|
22246
22246
|
{
|
@@ -24877,7 +24877,7 @@
|
|
24877
24877
|
},
|
24878
24878
|
{
|
24879
24879
|
"name": "errorType",
|
24880
|
-
"description": "Error information\n`errorMessage` is null
|
24880
|
+
"description": "Error information\n`errorMessage` is null iff `errorType` is null.",
|
24881
24881
|
"optional": true,
|
24882
24882
|
"$ref": "RuleSetErrorType"
|
24883
24883
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8872,7 +8872,7 @@ domain Page
|
|
8872
8872
|
string message
|
8873
8873
|
# Dialog type.
|
8874
8874
|
DialogType type
|
8875
|
-
# True
|
8875
|
+
# True iff browser is capable showing or acting on the given dialog. When browser has no
|
8876
8876
|
# dialog handler for given target, calling alert while Page domain is engaged will stall
|
8877
8877
|
# the page execution. Execution can be resumed via calling Page.handleJavaScriptDialog.
|
8878
8878
|
boolean hasBrowserHandler
|
@@ -10449,8 +10449,8 @@ domain Target
|
|
10449
10449
|
type TargetInfo extends object
|
10450
10450
|
properties
|
10451
10451
|
TargetID targetId
|
10452
|
-
string type
|
10453
10452
|
# List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22
|
10453
|
+
string type
|
10454
10454
|
string title
|
10455
10455
|
string url
|
10456
10456
|
# Whether the target has an attached client.
|
@@ -11718,7 +11718,7 @@ experimental domain Preload
|
|
11718
11718
|
optional string url
|
11719
11719
|
optional Network.RequestId requestId
|
11720
11720
|
# Error information
|
11721
|
-
# `errorMessage` is null
|
11721
|
+
# `errorMessage` is null iff `errorType` is null.
|
11722
11722
|
optional RuleSetErrorType errorType
|
11723
11723
|
# TODO(https://crbug.com/1425354): Replace this property with structured error.
|
11724
11724
|
deprecated optional string errorMessage
|
package/types/protocol.d.ts
CHANGED
@@ -14585,7 +14585,7 @@ export namespace Protocol {
|
|
14585
14585
|
*/
|
14586
14586
|
type: DialogType;
|
14587
14587
|
/**
|
14588
|
-
* True
|
14588
|
+
* True iff browser is capable showing or acting on the given dialog. When browser has no
|
14589
14589
|
* dialog handler for given target, calling alert while Page domain is engaged will stall
|
14590
14590
|
* the page execution. Execution can be resumed via calling Page.handleJavaScriptDialog.
|
14591
14591
|
*/
|
@@ -16306,10 +16306,10 @@ export namespace Protocol {
|
|
16306
16306
|
|
16307
16307
|
export interface TargetInfo {
|
16308
16308
|
targetId: TargetID;
|
16309
|
-
type: string;
|
16310
16309
|
/**
|
16311
16310
|
* List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22
|
16312
16311
|
*/
|
16312
|
+
type: string;
|
16313
16313
|
title: string;
|
16314
16314
|
url: string;
|
16315
16315
|
/**
|
@@ -17950,7 +17950,7 @@ export namespace Protocol {
|
|
17950
17950
|
requestId?: Network.RequestId;
|
17951
17951
|
/**
|
17952
17952
|
* Error information
|
17953
|
-
* `errorMessage` is null
|
17953
|
+
* `errorMessage` is null iff `errorType` is null.
|
17954
17954
|
*/
|
17955
17955
|
errorType?: RuleSetErrorType;
|
17956
17956
|
/**
|