devtools-protocol 0.0.1055599 → 0.0.1056622
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.
@@ -21245,6 +21245,13 @@
|
|
21245
21245
|
"name": "networkId",
|
21246
21246
|
"description": "If the intercepted request had a corresponding Network.requestWillBeSent event fired for it,\nthen this networkId will be the same as the requestId present in the requestWillBeSent event.",
|
21247
21247
|
"optional": true,
|
21248
|
+
"$ref": "Network.RequestId"
|
21249
|
+
},
|
21250
|
+
{
|
21251
|
+
"name": "redirectedRequestId",
|
21252
|
+
"description": "If the request is due to a redirect response from the server, the id of the request that\nhas caused the redirect.",
|
21253
|
+
"experimental": true,
|
21254
|
+
"optional": true,
|
21248
21255
|
"$ref": "RequestId"
|
21249
21256
|
}
|
21250
21257
|
]
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10036,7 +10036,10 @@ domain Fetch
|
|
10036
10036
|
optional array of HeaderEntry responseHeaders
|
10037
10037
|
# If the intercepted request had a corresponding Network.requestWillBeSent event fired for it,
|
10038
10038
|
# then this networkId will be the same as the requestId present in the requestWillBeSent event.
|
10039
|
-
optional RequestId networkId
|
10039
|
+
optional Network.RequestId networkId
|
10040
|
+
# If the request is due to a redirect response from the server, the id of the request that
|
10041
|
+
# has caused the redirect.
|
10042
|
+
experimental optional RequestId redirectedRequestId
|
10040
10043
|
|
10041
10044
|
# Issued when the domain is enabled with handleAuthRequests set to true.
|
10042
10045
|
# The request is paused until client responds with continueWithAuth.
|
package/types/protocol.d.ts
CHANGED
@@ -15991,7 +15991,12 @@ export namespace Protocol {
|
|
15991
15991
|
* If the intercepted request had a corresponding Network.requestWillBeSent event fired for it,
|
15992
15992
|
* then this networkId will be the same as the requestId present in the requestWillBeSent event.
|
15993
15993
|
*/
|
15994
|
-
networkId?: RequestId;
|
15994
|
+
networkId?: Network.RequestId;
|
15995
|
+
/**
|
15996
|
+
* If the request is due to a redirect response from the server, the id of the request that
|
15997
|
+
* has caused the redirect.
|
15998
|
+
*/
|
15999
|
+
redirectedRequestId?: RequestId;
|
15995
16000
|
}
|
15996
16001
|
|
15997
16002
|
/**
|