devtools-protocol 0.0.1002782 → 0.0.1003898
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.
@@ -16585,7 +16585,7 @@
|
|
16585
16585
|
},
|
16586
16586
|
{
|
16587
16587
|
"name": "loaderId",
|
16588
|
-
"description": "Loader identifier.",
|
16588
|
+
"description": "Loader identifier. This is omitted in case of same-document navigation,\nas the previously committed loaderId would not change.",
|
16589
16589
|
"optional": true,
|
16590
16590
|
"$ref": "Network.LoaderId"
|
16591
16591
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -7634,7 +7634,8 @@ domain Page
|
|
7634
7634
|
returns
|
7635
7635
|
# Frame id that has navigated (or failed to navigate)
|
7636
7636
|
FrameId frameId
|
7637
|
-
# Loader identifier.
|
7637
|
+
# Loader identifier. This is omitted in case of same-document navigation,
|
7638
|
+
# as the previously committed loaderId would not change.
|
7638
7639
|
optional Network.LoaderId loaderId
|
7639
7640
|
# User friendly error message, present if and only if navigation has failed.
|
7640
7641
|
optional string errorText
|
package/types/protocol.d.ts
CHANGED
@@ -12907,7 +12907,8 @@ export namespace Protocol {
|
|
12907
12907
|
*/
|
12908
12908
|
frameId: FrameId;
|
12909
12909
|
/**
|
12910
|
-
* Loader identifier.
|
12910
|
+
* Loader identifier. This is omitted in case of same-document navigation,
|
12911
|
+
* as the previously committed loaderId would not change.
|
12911
12912
|
*/
|
12912
12913
|
loaderId?: Network.LoaderId;
|
12913
12914
|
/**
|