devtools-protocol 0.0.1624250 → 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
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1624250",
3
+ "version": "0.0.1625959",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -523,6 +523,7 @@ experimental domain CSS
523
523
  font-face
524
524
  font-feature-values
525
525
  font-palette-values
526
+ counter-style
526
527
  # Subsection of font-feature-values, if this is a subsection.
527
528
  optional enum subsection
528
529
  # LINT.IfChange(FontVariantAlternatesFeatureType)
@@ -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
@@ -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' | 'RefreshedAsWaiter' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'RefreshQuotaExceeded' | 'FatalError' | 'SigningQuotaExceeded');
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
  */