devtools-protocol 0.0.1089613 → 0.0.1090008
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.
@@ -1669,6 +1669,7 @@
|
|
1669
1669
|
"WellKnownHttpNotFound",
|
1670
1670
|
"WellKnownNoResponse",
|
1671
1671
|
"WellKnownInvalidResponse",
|
1672
|
+
"WellKnownListEmpty",
|
1672
1673
|
"ConfigNotInWellKnown",
|
1673
1674
|
"WellKnownTooBig",
|
1674
1675
|
"ConfigHttpNotFound",
|
@@ -1683,6 +1684,7 @@
|
|
1683
1684
|
"AccountsHttpNotFound",
|
1684
1685
|
"AccountsNoResponse",
|
1685
1686
|
"AccountsInvalidResponse",
|
1687
|
+
"AccountsListEmpty",
|
1686
1688
|
"IdTokenHttpNotFound",
|
1687
1689
|
"IdTokenNoResponse",
|
1688
1690
|
"IdTokenInvalidResponse",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -843,6 +843,7 @@ experimental domain Audits
|
|
843
843
|
WellKnownHttpNotFound
|
844
844
|
WellKnownNoResponse
|
845
845
|
WellKnownInvalidResponse
|
846
|
+
WellKnownListEmpty
|
846
847
|
ConfigNotInWellKnown
|
847
848
|
WellKnownTooBig
|
848
849
|
ConfigHttpNotFound
|
@@ -857,6 +858,7 @@ experimental domain Audits
|
|
857
858
|
AccountsHttpNotFound
|
858
859
|
AccountsNoResponse
|
859
860
|
AccountsInvalidResponse
|
861
|
+
AccountsListEmpty
|
860
862
|
IdTokenHttpNotFound
|
861
863
|
IdTokenNoResponse
|
862
864
|
IdTokenInvalidResponse
|
package/types/protocol.d.ts
CHANGED
@@ -3480,7 +3480,7 @@ export namespace Protocol {
|
|
3480
3480
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3481
3481
|
* all cases except for success.
|
3482
3482
|
*/
|
3483
|
-
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
|
3483
|
+
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
|
3484
3484
|
|
3485
3485
|
/**
|
3486
3486
|
* This issue tracks client hints related issues. It's used to deprecate old
|