devtools-protocol 0.0.1070637 → 0.0.1072049
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.
@@ -992,7 +992,8 @@
|
|
992
992
|
"ExcludeSameSiteStrict",
|
993
993
|
"ExcludeInvalidSameParty",
|
994
994
|
"ExcludeSamePartyCrossPartyContext",
|
995
|
-
"ExcludeDomainNonASCII"
|
995
|
+
"ExcludeDomainNonASCII",
|
996
|
+
"ExcludeThirdPartyCookieBlockedInFirstPartySet"
|
996
997
|
]
|
997
998
|
},
|
998
999
|
{
|
@@ -11815,6 +11816,7 @@
|
|
11815
11816
|
"SameSiteUnspecifiedTreatedAsLax",
|
11816
11817
|
"SameSiteNoneInsecure",
|
11817
11818
|
"UserPreferences",
|
11819
|
+
"ThirdPartyBlockedInFirstPartySet",
|
11818
11820
|
"SyntaxError",
|
11819
11821
|
"SchemeNotSupported",
|
11820
11822
|
"OverwriteSecure",
|
@@ -11843,6 +11845,7 @@
|
|
11843
11845
|
"SameSiteUnspecifiedTreatedAsLax",
|
11844
11846
|
"SameSiteNoneInsecure",
|
11845
11847
|
"UserPreferences",
|
11848
|
+
"ThirdPartyBlockedInFirstPartySet",
|
11846
11849
|
"UnknownError",
|
11847
11850
|
"SchemefulSameSiteStrict",
|
11848
11851
|
"SchemefulSameSiteLax",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -482,6 +482,7 @@ experimental domain Audits
|
|
482
482
|
ExcludeInvalidSameParty
|
483
483
|
ExcludeSamePartyCrossPartyContext
|
484
484
|
ExcludeDomainNonASCII
|
485
|
+
ExcludeThirdPartyCookieBlockedInFirstPartySet
|
485
486
|
|
486
487
|
type CookieWarningReason extends string
|
487
488
|
enum
|
@@ -5479,6 +5480,9 @@ domain Network
|
|
5479
5480
|
SameSiteNoneInsecure
|
5480
5481
|
# The cookie was not stored due to user preferences.
|
5481
5482
|
UserPreferences
|
5483
|
+
# The cookie was blocked by third-party cookie blocking between sites in
|
5484
|
+
# the same First-Party Set.
|
5485
|
+
ThirdPartyBlockedInFirstPartySet
|
5482
5486
|
# The syntax of the Set-Cookie header of the response was invalid.
|
5483
5487
|
SyntaxError
|
5484
5488
|
# The scheme of the connection is not allowed to store cookies.
|
@@ -5543,6 +5547,9 @@ domain Network
|
|
5543
5547
|
SameSiteNoneInsecure
|
5544
5548
|
# The cookie was not sent due to user preferences.
|
5545
5549
|
UserPreferences
|
5550
|
+
# The cookie was blocked by third-party cookie blocking between sites in
|
5551
|
+
# the same First-Party Set.
|
5552
|
+
ThirdPartyBlockedInFirstPartySet
|
5546
5553
|
# An unknown error was encountered when trying to send this cookie.
|
5547
5554
|
UnknownError
|
5548
5555
|
# The cookie had the "SameSite=Strict" attribute but came from a response
|
package/types/protocol.d.ts
CHANGED
@@ -3209,7 +3209,7 @@ export namespace Protocol {
|
|
3209
3209
|
frameId: Page.FrameId;
|
3210
3210
|
}
|
3211
3211
|
|
3212
|
-
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII');
|
3212
|
+
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');
|
3213
3213
|
|
3214
3214
|
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII');
|
3215
3215
|
|
@@ -10004,12 +10004,12 @@ export namespace Protocol {
|
|
10004
10004
|
/**
|
10005
10005
|
* Types of reasons why a cookie may not be stored from a response.
|
10006
10006
|
*/
|
10007
|
-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
|
10007
|
+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
|
10008
10008
|
|
10009
10009
|
/**
|
10010
10010
|
* Types of reasons why a cookie may not be sent with a request.
|
10011
10011
|
*/
|
10012
|
-
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
|
10012
|
+
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
|
10013
10013
|
|
10014
10014
|
/**
|
10015
10015
|
* A cookie which was not stored from a response with the corresponding reason.
|