devtools-protocol 0.0.1196408 → 0.0.1198794
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.
@@ -12397,6 +12397,7 @@
|
|
12397
12397
|
"SameSiteUnspecifiedTreatedAsLax",
|
12398
12398
|
"SameSiteNoneInsecure",
|
12399
12399
|
"UserPreferences",
|
12400
|
+
"ThirdPartyPhaseout",
|
12400
12401
|
"ThirdPartyBlockedInFirstPartySet",
|
12401
12402
|
"SyntaxError",
|
12402
12403
|
"SchemeNotSupported",
|
@@ -12410,7 +12411,8 @@
|
|
12410
12411
|
"SamePartyFromCrossPartyContext",
|
12411
12412
|
"SamePartyConflictsWithOtherAttributes",
|
12412
12413
|
"NameValuePairExceedsMaxSize",
|
12413
|
-
"DisallowedCharacter"
|
12414
|
+
"DisallowedCharacter",
|
12415
|
+
"NoCookieContent"
|
12414
12416
|
]
|
12415
12417
|
},
|
12416
12418
|
{
|
@@ -12427,6 +12429,7 @@
|
|
12427
12429
|
"SameSiteUnspecifiedTreatedAsLax",
|
12428
12430
|
"SameSiteNoneInsecure",
|
12429
12431
|
"UserPreferences",
|
12432
|
+
"ThirdPartyPhaseout",
|
12430
12433
|
"ThirdPartyBlockedInFirstPartySet",
|
12431
12434
|
"UnknownError",
|
12432
12435
|
"SchemefulSameSiteStrict",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -5736,6 +5736,8 @@ domain Network
|
|
5736
5736
|
SameSiteNoneInsecure
|
5737
5737
|
# The cookie was not stored due to user preferences.
|
5738
5738
|
UserPreferences
|
5739
|
+
# The cookie was blocked due to third-party cookie phaseout.
|
5740
|
+
ThirdPartyPhaseout
|
5739
5741
|
# The cookie was blocked by third-party cookie blocking between sites in
|
5740
5742
|
# the same First-Party Set.
|
5741
5743
|
ThirdPartyBlockedInFirstPartySet
|
@@ -5781,6 +5783,8 @@ domain Network
|
|
5781
5783
|
# character if it appears in the middle of the cookie name, value, an
|
5782
5784
|
# attribute name, or an attribute value.
|
5783
5785
|
DisallowedCharacter
|
5786
|
+
# Cookie contains no content or only whitespace.
|
5787
|
+
NoCookieContent
|
5784
5788
|
|
5785
5789
|
# Types of reasons why a cookie may not be sent with a request.
|
5786
5790
|
experimental type CookieBlockedReason extends string
|
@@ -5807,6 +5811,8 @@ domain Network
|
|
5807
5811
|
SameSiteNoneInsecure
|
5808
5812
|
# The cookie was not sent due to user preferences.
|
5809
5813
|
UserPreferences
|
5814
|
+
# The cookie was blocked due to third-party cookie phaseout.
|
5815
|
+
ThirdPartyPhaseout
|
5810
5816
|
# The cookie was blocked by third-party cookie blocking between sites in
|
5811
5817
|
# the same First-Party Set.
|
5812
5818
|
ThirdPartyBlockedInFirstPartySet
|
package/types/protocol.d.ts
CHANGED
@@ -10442,12 +10442,12 @@ export namespace Protocol {
|
|
10442
10442
|
/**
|
10443
10443
|
* Types of reasons why a cookie may not be stored from a response.
|
10444
10444
|
*/
|
10445
|
-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter');
|
10445
|
+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter' | 'NoCookieContent');
|
10446
10446
|
|
10447
10447
|
/**
|
10448
10448
|
* Types of reasons why a cookie may not be sent with a request.
|
10449
10449
|
*/
|
10450
|
-
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
|
10450
|
+
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
|
10451
10451
|
|
10452
10452
|
/**
|
10453
10453
|
* A cookie which was not stored from a response with the corresponding reason.
|