devtools-protocol 0.0.1031356 → 0.0.1032240
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.
@@ -1453,7 +1453,8 @@
|
|
1453
1453
|
"InvalidHeader",
|
1454
1454
|
"InvalidRegisterTriggerHeader",
|
1455
1455
|
"InvalidEligibleHeader",
|
1456
|
-
"TooManyConcurrentRequests"
|
1456
|
+
"TooManyConcurrentRequests",
|
1457
|
+
"SourceAndTriggerHeaders"
|
1457
1458
|
]
|
1458
1459
|
},
|
1459
1460
|
{
|
@@ -17869,6 +17870,7 @@
|
|
17869
17870
|
{
|
17870
17871
|
"name": "prerenderAttemptCompleted",
|
17871
17872
|
"description": "Fired when a prerender attempt is completed.",
|
17873
|
+
"experimental": true,
|
17872
17874
|
"parameters": [
|
17873
17875
|
{
|
17874
17876
|
"name": "initiatingFrameId",
|
@@ -17882,6 +17884,12 @@
|
|
17882
17884
|
{
|
17883
17885
|
"name": "finalStatus",
|
17884
17886
|
"$ref": "PrerenderFinalStatus"
|
17887
|
+
},
|
17888
|
+
{
|
17889
|
+
"name": "reasonDetails",
|
17890
|
+
"description": "This is used to give users more information about the cancellation details,\nand this will be formatted for display.",
|
17891
|
+
"optional": true,
|
17892
|
+
"type": "string"
|
17885
17893
|
}
|
17886
17894
|
]
|
17887
17895
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -708,6 +708,7 @@ experimental domain Audits
|
|
708
708
|
InvalidRegisterTriggerHeader
|
709
709
|
InvalidEligibleHeader
|
710
710
|
TooManyConcurrentRequests
|
711
|
+
SourceAndTriggerHeaders
|
711
712
|
|
712
713
|
# Details for issues around "Attribution Reporting API" usage.
|
713
714
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
@@ -8459,12 +8460,15 @@ domain Page
|
|
8459
8460
|
FailToGetMemoryUsage
|
8460
8461
|
|
8461
8462
|
# Fired when a prerender attempt is completed.
|
8462
|
-
event prerenderAttemptCompleted
|
8463
|
+
experimental event prerenderAttemptCompleted
|
8463
8464
|
parameters
|
8464
8465
|
# The frame id of the frame initiating prerendering.
|
8465
8466
|
FrameId initiatingFrameId
|
8466
8467
|
string prerenderingUrl
|
8467
8468
|
PrerenderFinalStatus finalStatus
|
8469
|
+
# This is used to give users more information about the cancellation details,
|
8470
|
+
# and this will be formatted for display.
|
8471
|
+
optional string reasonDetails
|
8468
8472
|
|
8469
8473
|
event loadEventFired
|
8470
8474
|
parameters
|
package/types/protocol.d.ts
CHANGED
@@ -3423,7 +3423,7 @@ export namespace Protocol {
|
|
3423
3423
|
clientSecurityState?: Network.ClientSecurityState;
|
3424
3424
|
}
|
3425
3425
|
|
3426
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests');
|
3426
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders');
|
3427
3427
|
|
3428
3428
|
/**
|
3429
3429
|
* Details for issues around "Attribution Reporting API" usage.
|
@@ -13873,6 +13873,11 @@ export namespace Protocol {
|
|
13873
13873
|
initiatingFrameId: FrameId;
|
13874
13874
|
prerenderingUrl: string;
|
13875
13875
|
finalStatus: PrerenderFinalStatus;
|
13876
|
+
/**
|
13877
|
+
* This is used to give users more information about the cancellation details,
|
13878
|
+
* and this will be formatted for display.
|
13879
|
+
*/
|
13880
|
+
reasonDetails?: string;
|
13876
13881
|
}
|
13877
13882
|
|
13878
13883
|
export interface LoadEventFiredEvent {
|