devtools-protocol 0.0.1030896 → 0.0.1032873

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,10 @@
1453
1453
  "InvalidHeader",
1454
1454
  "InvalidRegisterTriggerHeader",
1455
1455
  "InvalidEligibleHeader",
1456
- "TooManyConcurrentRequests"
1456
+ "TooManyConcurrentRequests",
1457
+ "SourceAndTriggerHeaders",
1458
+ "SourceIgnored",
1459
+ "TriggerIgnored"
1457
1460
  ]
1458
1461
  },
1459
1462
  {
@@ -1667,7 +1670,6 @@
1667
1670
  "ClientMetadataHttpNotFound",
1668
1671
  "ClientMetadataNoResponse",
1669
1672
  "ClientMetadataInvalidResponse",
1670
- "ClientMetadataMissingPrivacyPolicyUrl",
1671
1673
  "DisabledInSettings",
1672
1674
  "ErrorFetchingSignin",
1673
1675
  "InvalidSigninResponse",
@@ -17870,6 +17872,7 @@
17870
17872
  {
17871
17873
  "name": "prerenderAttemptCompleted",
17872
17874
  "description": "Fired when a prerender attempt is completed.",
17875
+ "experimental": true,
17873
17876
  "parameters": [
17874
17877
  {
17875
17878
  "name": "initiatingFrameId",
@@ -17883,6 +17886,12 @@
17883
17886
  {
17884
17887
  "name": "finalStatus",
17885
17888
  "$ref": "PrerenderFinalStatus"
17889
+ },
17890
+ {
17891
+ "name": "reasonDetails",
17892
+ "description": "This is used to give users more information about the cancellation details,\nand this will be formatted for display.",
17893
+ "optional": true,
17894
+ "type": "string"
17886
17895
  }
17887
17896
  ]
17888
17897
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1030896",
3
+ "version": "0.0.1032873",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -708,6 +708,9 @@ experimental domain Audits
708
708
  InvalidRegisterTriggerHeader
709
709
  InvalidEligibleHeader
710
710
  TooManyConcurrentRequests
711
+ SourceAndTriggerHeaders
712
+ SourceIgnored
713
+ TriggerIgnored
711
714
 
712
715
  # Details for issues around "Attribution Reporting API" usage.
713
716
  # Explainer: https://github.com/WICG/attribution-reporting-api
@@ -845,7 +848,6 @@ experimental domain Audits
845
848
  ClientMetadataHttpNotFound
846
849
  ClientMetadataNoResponse
847
850
  ClientMetadataInvalidResponse
848
- ClientMetadataMissingPrivacyPolicyUrl
849
851
  DisabledInSettings
850
852
  ErrorFetchingSignin
851
853
  InvalidSigninResponse
@@ -8460,12 +8462,15 @@ domain Page
8460
8462
  FailToGetMemoryUsage
8461
8463
 
8462
8464
  # Fired when a prerender attempt is completed.
8463
- event prerenderAttemptCompleted
8465
+ experimental event prerenderAttemptCompleted
8464
8466
  parameters
8465
8467
  # The frame id of the frame initiating prerendering.
8466
8468
  FrameId initiatingFrameId
8467
8469
  string prerenderingUrl
8468
8470
  PrerenderFinalStatus finalStatus
8471
+ # This is used to give users more information about the cancellation details,
8472
+ # and this will be formatted for display.
8473
+ optional string reasonDetails
8469
8474
 
8470
8475
  event loadEventFired
8471
8476
  parameters
@@ -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' | 'SourceIgnored' | 'TriggerIgnored');
3427
3427
 
3428
3428
  /**
3429
3429
  * Details for issues around "Attribution Reporting API" usage.
@@ -3494,7 +3494,7 @@ export namespace Protocol {
3494
3494
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3495
3495
  * all cases except for success.
3496
3496
  */
3497
- export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestListHttpNotFound' | 'ManifestListNoResponse' | 'ManifestListInvalidResponse' | 'ManifestNotInManifestList' | 'ManifestListTooBig' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
3497
+ export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestListHttpNotFound' | 'ManifestListNoResponse' | 'ManifestListInvalidResponse' | 'ManifestNotInManifestList' | 'ManifestListTooBig' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
3498
3498
 
3499
3499
  /**
3500
3500
  * This issue tracks client hints related issues. It's used to deprecate old
@@ -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 {