devtools-protocol 0.0.1045489 → 0.0.1046751
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.
@@ -17902,8 +17902,8 @@
|
|
17902
17902
|
"$ref": "PrerenderFinalStatus"
|
17903
17903
|
},
|
17904
17904
|
{
|
17905
|
-
"name": "
|
17906
|
-
"description": "This is used to give users more information about the
|
17905
|
+
"name": "disallowedApiMethod",
|
17906
|
+
"description": "This is used to give users more information about the name of the API call\nthat is incompatible with prerender and has caused the cancellation of the attempt",
|
17907
17907
|
"optional": true,
|
17908
17908
|
"type": "string"
|
17909
17909
|
}
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8475,9 +8475,9 @@ domain Page
|
|
8475
8475
|
FrameId initiatingFrameId
|
8476
8476
|
string prerenderingUrl
|
8477
8477
|
PrerenderFinalStatus finalStatus
|
8478
|
-
# This is used to give users more information about the
|
8479
|
-
# and
|
8480
|
-
optional string
|
8478
|
+
# This is used to give users more information about the name of the API call
|
8479
|
+
# that is incompatible with prerender and has caused the cancellation of the attempt
|
8480
|
+
optional string disallowedApiMethod
|
8481
8481
|
|
8482
8482
|
event loadEventFired
|
8483
8483
|
parameters
|
package/types/protocol.d.ts
CHANGED
@@ -13879,10 +13879,10 @@ export namespace Protocol {
|
|
13879
13879
|
prerenderingUrl: string;
|
13880
13880
|
finalStatus: PrerenderFinalStatus;
|
13881
13881
|
/**
|
13882
|
-
* This is used to give users more information about the
|
13883
|
-
* and
|
13882
|
+
* This is used to give users more information about the name of the API call
|
13883
|
+
* that is incompatible with prerender and has caused the cancellation of the attempt
|
13884
13884
|
*/
|
13885
|
-
|
13885
|
+
disallowedApiMethod?: string;
|
13886
13886
|
}
|
13887
13887
|
|
13888
13888
|
export interface LoadEventFiredEvent {
|