devtools-protocol 0.0.971358 → 0.0.972468
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.
@@ -1604,7 +1604,7 @@
|
|
1604
1604
|
},
|
1605
1605
|
{
|
1606
1606
|
"id": "FederatedAuthRequestIssueReason",
|
1607
|
-
"description": "Represents the failure reason when a federated authentication reason fails.\nShould be updated alongside RequestIdTokenStatus in\nthird_party/blink/public/mojom/
|
1607
|
+
"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.",
|
1608
1608
|
"type": "string",
|
1609
1609
|
"enum": [
|
1610
1610
|
"ApprovalDeclined",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -780,7 +780,7 @@ experimental domain Audits
|
|
780
780
|
|
781
781
|
# Represents the failure reason when a federated authentication reason fails.
|
782
782
|
# Should be updated alongside RequestIdTokenStatus in
|
783
|
-
# third_party/blink/public/mojom/
|
783
|
+
# third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
784
784
|
# all cases except for success.
|
785
785
|
type FederatedAuthRequestIssueReason extends string
|
786
786
|
enum
|
package/types/protocol.d.ts
CHANGED
@@ -3339,7 +3339,7 @@ export namespace Protocol {
|
|
3339
3339
|
/**
|
3340
3340
|
* Represents the failure reason when a federated authentication reason fails.
|
3341
3341
|
* Should be updated alongside RequestIdTokenStatus in
|
3342
|
-
* third_party/blink/public/mojom/
|
3342
|
+
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3343
3343
|
* all cases except for success.
|
3344
3344
|
*/
|
3345
3345
|
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|