devtools-protocol 0.0.1173815 → 0.0.1177611

Sign up to get free protection for your applications and to get access to all the features.
@@ -12210,7 +12210,8 @@
12210
12210
  "SchemefulSameSiteUnspecifiedTreatedAsLax",
12211
12211
  "SamePartyFromCrossPartyContext",
12212
12212
  "SamePartyConflictsWithOtherAttributes",
12213
- "NameValuePairExceedsMaxSize"
12213
+ "NameValuePairExceedsMaxSize",
12214
+ "DisallowedCharacter"
12214
12215
  ]
12215
12216
  },
12216
12217
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1173815",
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",
@@ -5688,6 +5688,10 @@ domain Network
5688
5688
  # The cookie's name/value pair size exceeded the size limit defined in
5689
5689
  # RFC6265bis.
5690
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
5691
5695
 
5692
5696
  # Types of reasons why a cookie may not be sent with a request.
5693
5697
  experimental type CookieBlockedReason extends string
@@ -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.