devtools-protocol 0.0.1173815 → 0.0.1177611
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.
@@ -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
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
package/types/protocol.d.ts
CHANGED
@@ -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.
|