devtools-protocol 0.0.969541 → 0.0.970590
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.
@@ -1608,12 +1608,12 @@
|
|
1608
1608
|
"enum": [
|
1609
1609
|
"ApprovalDeclined",
|
1610
1610
|
"TooManyRequests",
|
1611
|
-
"
|
1612
|
-
"
|
1613
|
-
"
|
1614
|
-
"
|
1615
|
-
"
|
1616
|
-
"
|
1611
|
+
"ManifestHttpNotFound",
|
1612
|
+
"ManifestNoResponse",
|
1613
|
+
"ManifestInvalidResponse",
|
1614
|
+
"ClientMetadataHttpNotFound",
|
1615
|
+
"ClientMetadataNoResponse",
|
1616
|
+
"ClientMetadataInvalidResponse",
|
1617
1617
|
"ErrorFetchingSignin",
|
1618
1618
|
"InvalidSigninResponse",
|
1619
1619
|
"AccountsHttpNotFound",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -785,12 +785,12 @@ experimental domain Audits
|
|
785
785
|
enum
|
786
786
|
ApprovalDeclined
|
787
787
|
TooManyRequests
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
788
|
+
ManifestHttpNotFound
|
789
|
+
ManifestNoResponse
|
790
|
+
ManifestInvalidResponse
|
791
|
+
ClientMetadataHttpNotFound
|
792
|
+
ClientMetadataNoResponse
|
793
|
+
ClientMetadataInvalidResponse
|
794
794
|
ErrorFetchingSignin
|
795
795
|
InvalidSigninResponse
|
796
796
|
AccountsHttpNotFound
|
package/types/protocol.d.ts
CHANGED
@@ -3342,7 +3342,7 @@ export namespace Protocol {
|
|
3342
3342
|
* third_party/blink/public/mojom/webid/federated_auth_request.mojom to include
|
3343
3343
|
* all cases except for success.
|
3344
3344
|
*/
|
3345
|
-
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | '
|
3345
|
+
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3346
3346
|
|
3347
3347
|
/**
|
3348
3348
|
* This issue tracks client hints related issues. It's used to deprecate old
|