devtools-protocol 0.0.1317198 → 0.0.1317765
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.
@@ -1754,7 +1754,9 @@
|
|
1754
1754
|
"ClientMetadataNoResponse",
|
1755
1755
|
"ClientMetadataInvalidResponse",
|
1756
1756
|
"ClientMetadataInvalidContentType",
|
1757
|
+
"IdpNotPotentiallyTrustworthy",
|
1757
1758
|
"DisabledInSettings",
|
1759
|
+
"DisabledInFlags",
|
1758
1760
|
"ErrorFetchingSignin",
|
1759
1761
|
"InvalidSigninResponse",
|
1760
1762
|
"AccountsHttpNotFound",
|
@@ -1777,6 +1779,7 @@
|
|
1777
1779
|
"NotSignedInWithIdp",
|
1778
1780
|
"MissingTransientUserActivation",
|
1779
1781
|
"ReplacedByButtonMode",
|
1782
|
+
"InvalidFieldsSpecified",
|
1780
1783
|
"RelyingPartyOriginIsOpaque",
|
1781
1784
|
"TypeNotMatching"
|
1782
1785
|
]
|
@@ -15417,6 +15420,11 @@
|
|
15417
15420
|
}
|
15418
15421
|
]
|
15419
15422
|
},
|
15423
|
+
{
|
15424
|
+
"name": "policyUpdated",
|
15425
|
+
"description": "Fired once security policy has been updated.",
|
15426
|
+
"experimental": true
|
15427
|
+
},
|
15420
15428
|
{
|
15421
15429
|
"name": "subresourceWebBundleMetadataReceived",
|
15422
15430
|
"description": "Fired once when parsing the .wbn file has succeeded.\nThe event contains the information about the web bundle contents.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -892,7 +892,9 @@ experimental domain Audits
|
|
892
892
|
ClientMetadataNoResponse
|
893
893
|
ClientMetadataInvalidResponse
|
894
894
|
ClientMetadataInvalidContentType
|
895
|
+
IdpNotPotentiallyTrustworthy
|
895
896
|
DisabledInSettings
|
897
|
+
DisabledInFlags
|
896
898
|
ErrorFetchingSignin
|
897
899
|
InvalidSigninResponse
|
898
900
|
AccountsHttpNotFound
|
@@ -915,6 +917,7 @@ experimental domain Audits
|
|
915
917
|
NotSignedInWithIdp
|
916
918
|
MissingTransientUserActivation
|
917
919
|
ReplacedByButtonMode
|
920
|
+
InvalidFieldsSpecified
|
918
921
|
RelyingPartyOriginIsOpaque
|
919
922
|
TypeNotMatching
|
920
923
|
|
@@ -7121,6 +7124,9 @@ domain Network
|
|
7121
7124
|
# The number of obtained Trust Tokens on a successful "Issuance" operation.
|
7122
7125
|
optional integer issuedTokenCount
|
7123
7126
|
|
7127
|
+
# Fired once security policy has been updated.
|
7128
|
+
experimental event policyUpdated
|
7129
|
+
|
7124
7130
|
# Fired once when parsing the .wbn file has succeeded.
|
7125
7131
|
# The event contains the information about the web bundle contents.
|
7126
7132
|
experimental event subresourceWebBundleMetadataReceived
|
@@ -372,6 +372,10 @@ export namespace ProtocolMapping {
|
|
372
372
|
* or after the response was received.
|
373
373
|
*/
|
374
374
|
'Network.trustTokenOperationDone': [Protocol.Network.TrustTokenOperationDoneEvent];
|
375
|
+
/**
|
376
|
+
* Fired once security policy has been updated.
|
377
|
+
*/
|
378
|
+
'Network.policyUpdated': [];
|
375
379
|
/**
|
376
380
|
* Fired once when parsing the .wbn file has succeeded.
|
377
381
|
* The event contains the information about the web bundle contents.
|
@@ -2604,6 +2604,11 @@ export namespace ProtocolProxyApi {
|
|
2604
2604
|
*/
|
2605
2605
|
on(event: 'trustTokenOperationDone', listener: (params: Protocol.Network.TrustTokenOperationDoneEvent) => void): void;
|
2606
2606
|
|
2607
|
+
/**
|
2608
|
+
* Fired once security policy has been updated.
|
2609
|
+
*/
|
2610
|
+
on(event: 'policyUpdated', listener: () => void): void;
|
2611
|
+
|
2607
2612
|
/**
|
2608
2613
|
* Fired once when parsing the .wbn file has succeeded.
|
2609
2614
|
* The event contains the information about the web bundle contents.
|
@@ -2790,6 +2790,13 @@ export namespace ProtocolTestsProxyApi {
|
|
2790
2790
|
offTrustTokenOperationDone(listener: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => void): void;
|
2791
2791
|
onceTrustTokenOperationDone(eventMatcher?: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => boolean): Promise<{ params: Protocol.Network.TrustTokenOperationDoneEvent }>;
|
2792
2792
|
|
2793
|
+
/**
|
2794
|
+
* Fired once security policy has been updated.
|
2795
|
+
*/
|
2796
|
+
onPolicyUpdated(listener: (event: ) => void): void;
|
2797
|
+
offPolicyUpdated(listener: (event: ) => void): void;
|
2798
|
+
oncePolicyUpdated(eventMatcher?: (event: ) => boolean): Promise<>;
|
2799
|
+
|
2793
2800
|
/**
|
2794
2801
|
* Fired once when parsing the .wbn file has succeeded.
|
2795
2802
|
* The event contains the information about the web bundle contents.
|
package/types/protocol.d.ts
CHANGED
@@ -3579,7 +3579,7 @@ export namespace Protocol {
|
|
3579
3579
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3580
3580
|
* all cases except for success.
|
3581
3581
|
*/
|
3582
|
-
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'RelyingPartyOriginIsOpaque' | 'TypeNotMatching');
|
3582
|
+
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'IdpNotPotentiallyTrustworthy' | 'DisabledInSettings' | 'DisabledInFlags' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'InvalidFieldsSpecified' | 'RelyingPartyOriginIsOpaque' | 'TypeNotMatching');
|
3583
3583
|
|
3584
3584
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
3585
3585
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|