devtools-protocol 0.0.1621552 → 0.0.1625959
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.
|
@@ -5327,7 +5327,8 @@
|
|
|
5327
5327
|
"enum": [
|
|
5328
5328
|
"font-face",
|
|
5329
5329
|
"font-feature-values",
|
|
5330
|
-
"font-palette-values"
|
|
5330
|
+
"font-palette-values",
|
|
5331
|
+
"counter-style"
|
|
5331
5332
|
]
|
|
5332
5333
|
},
|
|
5333
5334
|
{
|
|
@@ -17786,6 +17787,7 @@
|
|
|
17786
17787
|
"Success",
|
|
17787
17788
|
"KeyError",
|
|
17788
17789
|
"SigningError",
|
|
17790
|
+
"TransientSigningError",
|
|
17789
17791
|
"ServerRequestedTermination",
|
|
17790
17792
|
"InvalidSessionId",
|
|
17791
17793
|
"InvalidChallenge",
|
|
@@ -17921,13 +17923,14 @@
|
|
|
17921
17923
|
"type": "string",
|
|
17922
17924
|
"enum": [
|
|
17923
17925
|
"Refreshed",
|
|
17924
|
-
"RefreshedAsWaiter",
|
|
17925
17926
|
"InitializedService",
|
|
17926
17927
|
"Unreachable",
|
|
17927
17928
|
"ServerError",
|
|
17928
17929
|
"RefreshQuotaExceeded",
|
|
17929
17930
|
"FatalError",
|
|
17930
|
-
"SigningQuotaExceeded"
|
|
17931
|
+
"SigningQuotaExceeded",
|
|
17932
|
+
"RefreshedAsWaiter",
|
|
17933
|
+
"TransientSigningError"
|
|
17931
17934
|
]
|
|
17932
17935
|
},
|
|
17933
17936
|
{
|
|
@@ -21707,6 +21710,7 @@
|
|
|
21707
21710
|
"sub-apps",
|
|
21708
21711
|
"summarizer",
|
|
21709
21712
|
"sync-xhr",
|
|
21713
|
+
"tools",
|
|
21710
21714
|
"translator",
|
|
21711
21715
|
"unload",
|
|
21712
21716
|
"usb",
|
package/package.json
CHANGED
package/pdl/domains/CSS.pdl
CHANGED
package/pdl/domains/Network.pdl
CHANGED
|
@@ -2162,6 +2162,7 @@ domain Network
|
|
|
2162
2162
|
Success
|
|
2163
2163
|
KeyError
|
|
2164
2164
|
SigningError
|
|
2165
|
+
TransientSigningError
|
|
2165
2166
|
ServerRequestedTermination
|
|
2166
2167
|
InvalidSessionId
|
|
2167
2168
|
InvalidChallenge
|
|
@@ -2260,13 +2261,14 @@ domain Network
|
|
|
2260
2261
|
# The result of a refresh.
|
|
2261
2262
|
enum refreshResult
|
|
2262
2263
|
Refreshed
|
|
2263
|
-
RefreshedAsWaiter
|
|
2264
2264
|
InitializedService
|
|
2265
2265
|
Unreachable
|
|
2266
2266
|
ServerError
|
|
2267
2267
|
RefreshQuotaExceeded
|
|
2268
2268
|
FatalError
|
|
2269
2269
|
SigningQuotaExceeded
|
|
2270
|
+
RefreshedAsWaiter
|
|
2271
|
+
TransientSigningError
|
|
2270
2272
|
# If there was a fetch attempt, the result of that.
|
|
2271
2273
|
optional DeviceBoundSessionFetchResult fetchResult
|
|
2272
2274
|
# The session display if there was a newly created session. This is populated
|
package/pdl/domains/Page.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
|
@@ -5869,6 +5869,7 @@ export namespace Protocol {
|
|
|
5869
5869
|
FontFace = 'font-face',
|
|
5870
5870
|
FontFeatureValues = 'font-feature-values',
|
|
5871
5871
|
FontPaletteValues = 'font-palette-values',
|
|
5872
|
+
CounterStyle = 'counter-style',
|
|
5872
5873
|
}
|
|
5873
5874
|
|
|
5874
5875
|
export const enum CSSAtRuleSubsection {
|
|
@@ -5887,7 +5888,7 @@ export namespace Protocol {
|
|
|
5887
5888
|
/**
|
|
5888
5889
|
* Type of at-rule.
|
|
5889
5890
|
*/
|
|
5890
|
-
type: ('font-face' | 'font-feature-values' | 'font-palette-values');
|
|
5891
|
+
type: ('font-face' | 'font-feature-values' | 'font-palette-values' | 'counter-style');
|
|
5891
5892
|
/**
|
|
5892
5893
|
* Subsection of font-feature-values, if this is a subsection.
|
|
5893
5894
|
*/
|
|
@@ -14006,7 +14007,7 @@ export namespace Protocol {
|
|
|
14006
14007
|
* A fetch result for a device bound session creation or refresh.
|
|
14007
14008
|
* @experimental
|
|
14008
14009
|
*/
|
|
14009
|
-
export type DeviceBoundSessionFetchResult = ('Success' | 'KeyError' | 'SigningError' | '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');
|
|
14010
|
+
export type DeviceBoundSessionFetchResult = ('Success' | 'KeyError' | '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');
|
|
14010
14011
|
|
|
14011
14012
|
/**
|
|
14012
14013
|
* Details about a failed device bound session network request.
|
|
@@ -14056,13 +14057,14 @@ export namespace Protocol {
|
|
|
14056
14057
|
|
|
14057
14058
|
export const enum RefreshEventDetailsRefreshResult {
|
|
14058
14059
|
Refreshed = 'Refreshed',
|
|
14059
|
-
RefreshedAsWaiter = 'RefreshedAsWaiter',
|
|
14060
14060
|
InitializedService = 'InitializedService',
|
|
14061
14061
|
Unreachable = 'Unreachable',
|
|
14062
14062
|
ServerError = 'ServerError',
|
|
14063
14063
|
RefreshQuotaExceeded = 'RefreshQuotaExceeded',
|
|
14064
14064
|
FatalError = 'FatalError',
|
|
14065
14065
|
SigningQuotaExceeded = 'SigningQuotaExceeded',
|
|
14066
|
+
RefreshedAsWaiter = 'RefreshedAsWaiter',
|
|
14067
|
+
TransientSigningError = 'TransientSigningError',
|
|
14066
14068
|
}
|
|
14067
14069
|
|
|
14068
14070
|
/**
|
|
@@ -14073,7 +14075,7 @@ export namespace Protocol {
|
|
|
14073
14075
|
/**
|
|
14074
14076
|
* The result of a refresh.
|
|
14075
14077
|
*/
|
|
14076
|
-
refreshResult: ('Refreshed' | '
|
|
14078
|
+
refreshResult: ('Refreshed' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'RefreshQuotaExceeded' | 'FatalError' | 'SigningQuotaExceeded' | 'RefreshedAsWaiter' | 'TransientSigningError');
|
|
14077
14079
|
/**
|
|
14078
14080
|
* If there was a fetch attempt, the result of that.
|
|
14079
14081
|
*/
|
|
@@ -16571,7 +16573,7 @@ export namespace Protocol {
|
|
|
16571
16573
|
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
16572
16574
|
* @experimental
|
|
16573
16575
|
*/
|
|
16574
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autofill' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
|
|
16576
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autofill' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
|
|
16575
16577
|
|
|
16576
16578
|
/**
|
|
16577
16579
|
* Reason for a permissions policy feature to be disabled.
|