devtools-protocol 0.0.1656784 → 0.0.1658499
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.
|
@@ -10709,6 +10709,12 @@
|
|
|
10709
10709
|
"description": "The response data object returned by the wallet.\nRequired when |action| is \"respond\", forbidden otherwise.",
|
|
10710
10710
|
"optional": true,
|
|
10711
10711
|
"type": "object"
|
|
10712
|
+
},
|
|
10713
|
+
{
|
|
10714
|
+
"name": "frameId",
|
|
10715
|
+
"description": "The frame to scope the virtual wallet behavior to.",
|
|
10716
|
+
"optional": true,
|
|
10717
|
+
"$ref": "Page.FrameId"
|
|
10712
10718
|
}
|
|
10713
10719
|
]
|
|
10714
10720
|
}
|
|
@@ -18145,7 +18151,10 @@
|
|
|
18145
18151
|
"InvalidFederatedSessionProviderFailedToRestoreKey",
|
|
18146
18152
|
"FailedToUnwrapKey",
|
|
18147
18153
|
"SessionDeletedDuringRefresh",
|
|
18148
|
-
"CrossOriginRegistrationSiteNotIncluded"
|
|
18154
|
+
"CrossOriginRegistrationSiteNotIncluded",
|
|
18155
|
+
"InvalidPreProvisionedKeyInitiatorMissing",
|
|
18156
|
+
"PreProvisionedKeyAccessNotGranted",
|
|
18157
|
+
"PreProvisionedKeyNotFound"
|
|
18149
18158
|
]
|
|
18150
18159
|
},
|
|
18151
18160
|
{
|
package/package.json
CHANGED
|
@@ -26,3 +26,5 @@ experimental domain DigitalCredentials
|
|
|
26
26
|
# The response data object returned by the wallet.
|
|
27
27
|
# Required when |action| is "respond", forbidden otherwise.
|
|
28
28
|
optional object response
|
|
29
|
+
# The frame to scope the virtual wallet behavior to.
|
|
30
|
+
optional Page.FrameId frameId
|
package/pdl/domains/Network.pdl
CHANGED
|
@@ -2223,6 +2223,9 @@ domain Network
|
|
|
2223
2223
|
FailedToUnwrapKey
|
|
2224
2224
|
SessionDeletedDuringRefresh
|
|
2225
2225
|
CrossOriginRegistrationSiteNotIncluded
|
|
2226
|
+
InvalidPreProvisionedKeyInitiatorMissing
|
|
2227
|
+
PreProvisionedKeyAccessNotGranted
|
|
2228
|
+
PreProvisionedKeyNotFound
|
|
2226
2229
|
# LINT.ThenChange(//content/browser/devtools/protocol/network_handler.cc:DeviceBoundSessionFetchResult)
|
|
2227
2230
|
|
|
2228
2231
|
# Details about a failed device bound session network request.
|
package/types/protocol.d.ts
CHANGED
|
@@ -9259,6 +9259,10 @@ export namespace Protocol {
|
|
|
9259
9259
|
* Required when |action| is "respond", forbidden otherwise.
|
|
9260
9260
|
*/
|
|
9261
9261
|
response?: any;
|
|
9262
|
+
/**
|
|
9263
|
+
* The frame to scope the virtual wallet behavior to.
|
|
9264
|
+
*/
|
|
9265
|
+
frameId?: Page.FrameId;
|
|
9262
9266
|
}
|
|
9263
9267
|
}
|
|
9264
9268
|
|
|
@@ -14173,7 +14177,7 @@ export namespace Protocol {
|
|
|
14173
14177
|
* A fetch result for a device bound session creation or refresh.
|
|
14174
14178
|
* @experimental
|
|
14175
14179
|
*/
|
|
14176
|
-
export type DeviceBoundSessionFetchResult = ('Success' | 'SigningKeyGenerationError' | 'AttestationKeyGenerationError' | 'SigningError' | 'TransientSigningError' | 'ServerRequestedTermination' | 'InvalidSessionId' | 'InvalidChallenge' | 'TooManyChallenges' | 'InvalidFetcherUrl' | 'InvalidRefreshUrl' | 'TransientHttpError' | 'ScopeOriginSameSiteMismatch' | 'RefreshUrlSameSiteMismatch' | 'MismatchedSessionId' | 'MissingScope' | 'NoCredentials' | 'SubdomainRegistrationWellKnownUnavailable' | 'SubdomainRegistrationUnauthorized' | 'SubdomainRegistrationWellKnownMalformed' | 'SessionProviderWellKnownUnavailable' | 'RelyingPartyWellKnownUnavailable' | 'FederatedKeyThumbprintMismatch' | 'InvalidFederatedSessionUrl' | 'InvalidFederatedKey' | 'TooManyRelyingOriginLabels' | 'BoundCookieSetForbidden' | 'NetError' | 'ProxyError' | 'EmptySessionConfig' | 'InvalidCredentialsConfig' | 'InvalidCredentialsType' | 'InvalidCredentialsEmptyName' | 'InvalidCredentialsCookie' | 'PersistentHttpError' | 'RegistrationAttemptedChallenge' | 'InvalidScopeOrigin' | 'ScopeOriginContainsPath' | 'RefreshInitiatorNotString' | 'RefreshInitiatorInvalidHostPattern' | 'InvalidScopeSpecification' | 'MissingScopeSpecificationType' | 'EmptyScopeSpecificationDomain' | 'EmptyScopeSpecificationPath' | 'InvalidScopeSpecificationType' | 'InvalidScopeIncludeSite' | 'MissingScopeIncludeSite' | 'FederatedNotAuthorizedByProvider' | 'FederatedNotAuthorizedByRelyingParty' | 'SessionProviderWellKnownMalformed' | 'SessionProviderWellKnownHasProviderOrigin' | 'RelyingPartyWellKnownMalformed' | 'RelyingPartyWellKnownHasRelyingOrigins' | 'InvalidFederatedSessionProviderSessionMissing' | 'InvalidFederatedSessionWrongProviderOrigin' | 'InvalidCredentialsCookieCreationTime' | 'InvalidCredentialsCookieName' | 'InvalidCredentialsCookieParsing' | 'InvalidCredentialsCookieUnpermittedAttribute' | 'InvalidCredentialsCookieInvalidDomain' | 'InvalidCredentialsCookiePrefix' | 'InvalidScopeRulePath' | 'InvalidScopeRuleHostPattern' | 'ScopeRuleOriginScopedHostPatternMismatch' | 'ScopeRuleSiteScopedHostPatternMismatch' | 'SigningQuotaExceeded' | 'InvalidConfigJson' | 'InvalidFederatedSessionProviderFailedToRestoreKey' | 'FailedToUnwrapKey' | 'SessionDeletedDuringRefresh' | 'CrossOriginRegistrationSiteNotIncluded');
|
|
14180
|
+
export type DeviceBoundSessionFetchResult = ('Success' | 'SigningKeyGenerationError' | 'AttestationKeyGenerationError' | 'SigningError' | 'TransientSigningError' | 'ServerRequestedTermination' | 'InvalidSessionId' | 'InvalidChallenge' | 'TooManyChallenges' | 'InvalidFetcherUrl' | 'InvalidRefreshUrl' | 'TransientHttpError' | 'ScopeOriginSameSiteMismatch' | 'RefreshUrlSameSiteMismatch' | 'MismatchedSessionId' | 'MissingScope' | 'NoCredentials' | 'SubdomainRegistrationWellKnownUnavailable' | 'SubdomainRegistrationUnauthorized' | 'SubdomainRegistrationWellKnownMalformed' | 'SessionProviderWellKnownUnavailable' | 'RelyingPartyWellKnownUnavailable' | 'FederatedKeyThumbprintMismatch' | 'InvalidFederatedSessionUrl' | 'InvalidFederatedKey' | 'TooManyRelyingOriginLabels' | 'BoundCookieSetForbidden' | 'NetError' | 'ProxyError' | 'EmptySessionConfig' | 'InvalidCredentialsConfig' | 'InvalidCredentialsType' | 'InvalidCredentialsEmptyName' | 'InvalidCredentialsCookie' | 'PersistentHttpError' | 'RegistrationAttemptedChallenge' | 'InvalidScopeOrigin' | 'ScopeOriginContainsPath' | 'RefreshInitiatorNotString' | 'RefreshInitiatorInvalidHostPattern' | 'InvalidScopeSpecification' | 'MissingScopeSpecificationType' | 'EmptyScopeSpecificationDomain' | 'EmptyScopeSpecificationPath' | 'InvalidScopeSpecificationType' | 'InvalidScopeIncludeSite' | 'MissingScopeIncludeSite' | 'FederatedNotAuthorizedByProvider' | 'FederatedNotAuthorizedByRelyingParty' | 'SessionProviderWellKnownMalformed' | 'SessionProviderWellKnownHasProviderOrigin' | 'RelyingPartyWellKnownMalformed' | 'RelyingPartyWellKnownHasRelyingOrigins' | 'InvalidFederatedSessionProviderSessionMissing' | 'InvalidFederatedSessionWrongProviderOrigin' | 'InvalidCredentialsCookieCreationTime' | 'InvalidCredentialsCookieName' | 'InvalidCredentialsCookieParsing' | 'InvalidCredentialsCookieUnpermittedAttribute' | 'InvalidCredentialsCookieInvalidDomain' | 'InvalidCredentialsCookiePrefix' | 'InvalidScopeRulePath' | 'InvalidScopeRuleHostPattern' | 'ScopeRuleOriginScopedHostPatternMismatch' | 'ScopeRuleSiteScopedHostPatternMismatch' | 'SigningQuotaExceeded' | 'InvalidConfigJson' | 'InvalidFederatedSessionProviderFailedToRestoreKey' | 'FailedToUnwrapKey' | 'SessionDeletedDuringRefresh' | 'CrossOriginRegistrationSiteNotIncluded' | 'InvalidPreProvisionedKeyInitiatorMissing' | 'PreProvisionedKeyAccessNotGranted' | 'PreProvisionedKeyNotFound');
|
|
14177
14181
|
|
|
14178
14182
|
/**
|
|
14179
14183
|
* Details about a failed device bound session network request.
|