devtools-protocol 0.0.1179426 → 0.0.1181874
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.
@@ -993,7 +993,8 @@
|
|
993
993
|
"ExcludeInvalidSameParty",
|
994
994
|
"ExcludeSamePartyCrossPartyContext",
|
995
995
|
"ExcludeDomainNonASCII",
|
996
|
-
"ExcludeThirdPartyCookieBlockedInFirstPartySet"
|
996
|
+
"ExcludeThirdPartyCookieBlockedInFirstPartySet",
|
997
|
+
"ExcludeThirdPartyPhaseout"
|
997
998
|
]
|
998
999
|
},
|
999
1000
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
@@ -3276,7 +3276,7 @@ export namespace Protocol {
|
|
3276
3276
|
frameId: Page.FrameId;
|
3277
3277
|
}
|
3278
3278
|
|
3279
|
-
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');
|
3279
|
+
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout');
|
3280
3280
|
|
3281
3281
|
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout');
|
3282
3282
|
|