devtools-protocol 0.0.1044932 → 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.
@@ -1448,6 +1448,7 @@
1448
1448
  "type": "string",
1449
1449
  "enum": [
1450
1450
  "PermissionPolicyDisabled",
1451
+ "PermissionPolicyNotDelegated",
1451
1452
  "UntrustworthyReportingOrigin",
1452
1453
  "InsecureContext",
1453
1454
  "InvalidHeader",
@@ -17901,8 +17902,8 @@
17901
17902
  "$ref": "PrerenderFinalStatus"
17902
17903
  },
17903
17904
  {
17904
- "name": "reasonDetails",
17905
- "description": "This is used to give users more information about the cancellation details,\nand this will be formatted for display.",
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",
17906
17907
  "optional": true,
17907
17908
  "type": "string"
17908
17909
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1044932",
3
+ "version": "0.0.1046751",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -701,6 +701,7 @@ experimental domain Audits
701
701
  type AttributionReportingIssueType extends string
702
702
  enum
703
703
  PermissionPolicyDisabled
704
+ PermissionPolicyNotDelegated
704
705
  UntrustworthyReportingOrigin
705
706
  InsecureContext
706
707
  # TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
@@ -8474,9 +8475,9 @@ domain Page
8474
8475
  FrameId initiatingFrameId
8475
8476
  string prerenderingUrl
8476
8477
  PrerenderFinalStatus finalStatus
8477
- # This is used to give users more information about the cancellation details,
8478
- # and this will be formatted for display.
8479
- optional string reasonDetails
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
8480
8481
 
8481
8482
  event loadEventFired
8482
8483
  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' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored');
3426
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'PermissionPolicyNotDelegated' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored');
3427
3427
 
3428
3428
  /**
3429
3429
  * Details for issues around "Attribution Reporting API" usage.
@@ -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 cancellation details,
13883
- * and this will be formatted for display.
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
- reasonDetails?: string;
13885
+ disallowedApiMethod?: string;
13886
13886
  }
13887
13887
 
13888
13888
  export interface LoadEventFiredEvent {