devtools-protocol 0.0.1120367 → 0.0.1120988
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.
@@ -22983,6 +22983,10 @@
|
|
22983
22983
|
"name": "prerenderAttemptCompleted",
|
22984
22984
|
"description": "Fired when a prerender attempt is completed.",
|
22985
22985
|
"parameters": [
|
22986
|
+
{
|
22987
|
+
"name": "key",
|
22988
|
+
"$ref": "PreloadingAttemptKey"
|
22989
|
+
},
|
22986
22990
|
{
|
22987
22991
|
"name": "initiatingFrameId",
|
22988
22992
|
"description": "The frame id of the frame initiating prerendering.",
|
@@ -23008,6 +23012,10 @@
|
|
23008
23012
|
"name": "prefetchStatusUpdated",
|
23009
23013
|
"description": "Fired when a prefetch attempt is updated.",
|
23010
23014
|
"parameters": [
|
23015
|
+
{
|
23016
|
+
"name": "key",
|
23017
|
+
"$ref": "PreloadingAttemptKey"
|
23018
|
+
},
|
23011
23019
|
{
|
23012
23020
|
"name": "initiatingFrameId",
|
23013
23021
|
"description": "The frame id of the frame initiating prefetch.",
|
@@ -23027,6 +23035,10 @@
|
|
23027
23035
|
"name": "prerenderStatusUpdated",
|
23028
23036
|
"description": "Fired when a prerender attempt is updated.",
|
23029
23037
|
"parameters": [
|
23038
|
+
{
|
23039
|
+
"name": "key",
|
23040
|
+
"$ref": "PreloadingAttemptKey"
|
23041
|
+
},
|
23030
23042
|
{
|
23031
23043
|
"name": "initiatingFrameId",
|
23032
23044
|
"description": "The frame id of the frame initiating prerender.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10868,6 +10868,7 @@ experimental domain Preload
|
|
10868
10868
|
# Fired when a prerender attempt is completed.
|
10869
10869
|
event prerenderAttemptCompleted
|
10870
10870
|
parameters
|
10871
|
+
PreloadingAttemptKey key
|
10871
10872
|
# The frame id of the frame initiating prerendering.
|
10872
10873
|
Page.FrameId initiatingFrameId
|
10873
10874
|
string prerenderingUrl
|
@@ -10891,6 +10892,7 @@ experimental domain Preload
|
|
10891
10892
|
# Fired when a prefetch attempt is updated.
|
10892
10893
|
event prefetchStatusUpdated
|
10893
10894
|
parameters
|
10895
|
+
PreloadingAttemptKey key
|
10894
10896
|
# The frame id of the frame initiating prefetch.
|
10895
10897
|
Page.FrameId initiatingFrameId
|
10896
10898
|
string prefetchUrl
|
@@ -10899,6 +10901,7 @@ experimental domain Preload
|
|
10899
10901
|
# Fired when a prerender attempt is updated.
|
10900
10902
|
event prerenderStatusUpdated
|
10901
10903
|
parameters
|
10904
|
+
PreloadingAttemptKey key
|
10902
10905
|
# The frame id of the frame initiating prerender.
|
10903
10906
|
Page.FrameId initiatingFrameId
|
10904
10907
|
string prerenderingUrl
|
package/types/protocol.d.ts
CHANGED
@@ -16955,6 +16955,7 @@ export namespace Protocol {
|
|
16955
16955
|
* Fired when a prerender attempt is completed.
|
16956
16956
|
*/
|
16957
16957
|
export interface PrerenderAttemptCompletedEvent {
|
16958
|
+
key: PreloadingAttemptKey;
|
16958
16959
|
/**
|
16959
16960
|
* The frame id of the frame initiating prerendering.
|
16960
16961
|
*/
|
@@ -16972,6 +16973,7 @@ export namespace Protocol {
|
|
16972
16973
|
* Fired when a prefetch attempt is updated.
|
16973
16974
|
*/
|
16974
16975
|
export interface PrefetchStatusUpdatedEvent {
|
16976
|
+
key: PreloadingAttemptKey;
|
16975
16977
|
/**
|
16976
16978
|
* The frame id of the frame initiating prefetch.
|
16977
16979
|
*/
|
@@ -16984,6 +16986,7 @@ export namespace Protocol {
|
|
16984
16986
|
* Fired when a prerender attempt is updated.
|
16985
16987
|
*/
|
16986
16988
|
export interface PrerenderStatusUpdatedEvent {
|
16989
|
+
key: PreloadingAttemptKey;
|
16987
16990
|
/**
|
16988
16991
|
* The frame id of the frame initiating prerender.
|
16989
16992
|
*/
|