devtools-protocol 0.0.1039585 → 0.0.1040073

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.
@@ -1657,7 +1657,7 @@
1657
1657
  "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
1658
  "type": "string",
1659
1659
  "enum": [
1660
- "ApprovalDeclined",
1660
+ "ShouldEmbargo",
1661
1661
  "TooManyRequests",
1662
1662
  "ManifestListHttpNotFound",
1663
1663
  "ManifestListNoResponse",
@@ -1681,7 +1681,8 @@
1681
1681
  "IdTokenInvalidResponse",
1682
1682
  "IdTokenInvalidRequest",
1683
1683
  "ErrorIdToken",
1684
- "Canceled"
1684
+ "Canceled",
1685
+ "RpPageNotVisible"
1685
1686
  ]
1686
1687
  },
1687
1688
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1039585",
3
+ "version": "0.0.1040073",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -835,7 +835,7 @@ experimental domain Audits
835
835
  # all cases except for success.
836
836
  type FederatedAuthRequestIssueReason extends string
837
837
  enum
838
- ApprovalDeclined
838
+ ShouldEmbargo
839
839
  TooManyRequests
840
840
  ManifestListHttpNotFound
841
841
  ManifestListNoResponse
@@ -860,6 +860,7 @@ experimental domain Audits
860
860
  IdTokenInvalidRequest
861
861
  ErrorIdToken
862
862
  Canceled
863
+ RpPageNotVisible
863
864
 
864
865
  # This issue tracks client hints related issues. It's used to deprecate old
865
866
  # features, encourage the use of new ones, and provide general guidance.
@@ -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