devtools-protocol 0.0.1173320 → 0.0.1177611

Sign up to get free protection for your applications and to get access to all the features.
@@ -1009,7 +1009,8 @@
1009
1009
  "WarnSameSiteLaxCrossDowngradeStrict",
1010
1010
  "WarnSameSiteLaxCrossDowngradeLax",
1011
1011
  "WarnAttributeValueExceedsMaxSize",
1012
- "WarnDomainNonASCII"
1012
+ "WarnDomainNonASCII",
1013
+ "WarnThirdPartyPhaseout"
1013
1014
  ]
1014
1015
  },
1015
1016
  {
@@ -12209,7 +12210,8 @@
12209
12210
  "SchemefulSameSiteUnspecifiedTreatedAsLax",
12210
12211
  "SamePartyFromCrossPartyContext",
12211
12212
  "SamePartyConflictsWithOtherAttributes",
12212
- "NameValuePairExceedsMaxSize"
12213
+ "NameValuePairExceedsMaxSize",
12214
+ "DisallowedCharacter"
12213
12215
  ]
12214
12216
  },
12215
12217
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1173320",
3
+ "version": "0.0.1177611",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -496,6 +496,7 @@ experimental domain Audits
496
496
  WarnSameSiteLaxCrossDowngradeLax
497
497
  WarnAttributeValueExceedsMaxSize
498
498
  WarnDomainNonASCII
499
+ WarnThirdPartyPhaseout
499
500
 
500
501
  type CookieOperation extends string
501
502
  enum
@@ -5687,6 +5688,10 @@ domain Network
5687
5688
  # The cookie's name/value pair size exceeded the size limit defined in
5688
5689
  # RFC6265bis.
5689
5690
  NameValuePairExceedsMaxSize
5691
+ # The cookie contained a forbidden ASCII control character, or the tab
5692
+ # character if it appears in the middle of the cookie name, value, an
5693
+ # attribute name, or an attribute value.
5694
+ DisallowedCharacter
5690
5695
 
5691
5696
  # Types of reasons why a cookie may not be sent with a request.
5692
5697
  experimental type CookieBlockedReason extends string
@@ -3278,7 +3278,7 @@ export namespace Protocol {
3278
3278
 
3279
3279
  export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');
3280
3280
 
3281
- export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII');
3281
+ export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout');
3282
3282
 
3283
3283
  export type CookieOperation = ('SetCookie' | 'ReadCookie');
3284
3284
 
@@ -10317,7 +10317,7 @@ export namespace Protocol {
10317
10317
  /**
10318
10318
  * Types of reasons why a cookie may not be stored from a response.
10319
10319
  */
10320
- export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
10320
+ export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter');
10321
10321
 
10322
10322
  /**
10323
10323
  * Types of reasons why a cookie may not be sent with a request.