devtools-protocol 0.0.1039585 → 0.0.1045489

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",
@@ -1657,7 +1658,7 @@
1657
1658
  "description": "Represents the failure reason when a federated authentication reason fails.\nShould be updated alongside RequestIdTokenStatus in\nthird_party/blink/public/mojom/devtools/inspector_issue.mojom to include\nall cases except for success.",
1658
1659
  "type": "string",
1659
1660
  "enum": [
1660
- "ApprovalDeclined",
1661
+ "ShouldEmbargo",
1661
1662
  "TooManyRequests",
1662
1663
  "ManifestListHttpNotFound",
1663
1664
  "ManifestListNoResponse",
@@ -1681,7 +1682,8 @@
1681
1682
  "IdTokenInvalidResponse",
1682
1683
  "IdTokenInvalidRequest",
1683
1684
  "ErrorIdToken",
1684
- "Canceled"
1685
+ "Canceled",
1686
+ "RpPageNotVisible"
1685
1687
  ]
1686
1688
  },
1687
1689
  {
@@ -6203,7 +6205,7 @@
6203
6205
  },
6204
6206
  {
6205
6207
  "name": "previousNodeId",
6206
- "description": "If of the previous siblint.",
6208
+ "description": "Id of the previous sibling.",
6207
6209
  "$ref": "NodeId"
6208
6210
  },
6209
6211
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1039585",
3
+ "version": "0.0.1045489",
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
@@ -835,7 +836,7 @@ experimental domain Audits
835
836
  # all cases except for success.
836
837
  type FederatedAuthRequestIssueReason extends string
837
838
  enum
838
- ApprovalDeclined
839
+ ShouldEmbargo
839
840
  TooManyRequests
840
841
  ManifestListHttpNotFound
841
842
  ManifestListNoResponse
@@ -860,6 +861,7 @@ experimental domain Audits
860
861
  IdTokenInvalidRequest
861
862
  ErrorIdToken
862
863
  Canceled
864
+ RpPageNotVisible
863
865
 
864
866
  # This issue tracks client hints related issues. It's used to deprecate old
865
867
  # features, encourage the use of new ones, and provide general guidance.
@@ -2925,7 +2927,7 @@ domain DOM
2925
2927
  parameters
2926
2928
  # Id of the node that has changed.
2927
2929
  NodeId parentNodeId
2928
- # If of the previous siblint.
2930
+ # Id of the previous sibling.
2929
2931
  NodeId previousNodeId
2930
2932
  # Inserted node data.
2931
2933
  Node node
@@ -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.
@@ -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' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
3497
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'ManifestListHttpNotFound' | 'ManifestListNoResponse' | 'ManifestListInvalidResponse' | 'ManifestNotInManifestList' | 'ManifestListTooBig' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3498
3498
 
3499
3499
  /**
3500
3500
  * This issue tracks client hints related issues. It's used to deprecate old
@@ -6414,7 +6414,7 @@ export namespace Protocol {
6414
6414
  */
6415
6415
  parentNodeId: NodeId;
6416
6416
  /**
6417
- * If of the previous siblint.
6417
+ * Id of the previous sibling.
6418
6418
  */
6419
6419
  previousNodeId: NodeId;
6420
6420
  /**