devtools-protocol 0.0.1173320 → 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.
@@ -1009,7 +1009,8 @@
|
|
1009
1009
|
"WarnSameSiteLaxCrossDowngradeStrict",
|
1010
1010
|
"WarnSameSiteLaxCrossDowngradeLax",
|
1011
1011
|
"WarnAttributeValueExceedsMaxSize",
|
1012
|
-
"WarnDomainNonASCII"
|
1012
|
+
"WarnDomainNonASCII",
|
1013
|
+
"WarnThirdPartyPhaseout"
|
1013
1014
|
]
|
1014
1015
|
},
|
1015
1016
|
{
|
@@ -12209,7 +12210,8 @@
|
|
12209
12210
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
12210
12211
|
"SamePartyFromCrossPartyContext",
|
12211
12212
|
"SamePartyConflictsWithOtherAttributes",
|
12212
|
-
"NameValuePairExceedsMaxSize"
|
12213
|
+
"NameValuePairExceedsMaxSize",
|
12214
|
+
"DisallowedCharacter"
|
12213
12215
|
]
|
12214
12216
|
},
|
12215
12217
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -496,6 +496,7 @@ experimental domain Audits
|
|
496
496
|
WarnSameSiteLaxCrossDowngradeLax
|
497
497
|
WarnAttributeValueExceedsMaxSize
|
498
498
|
WarnDomainNonASCII
|
499
|
+
WarnThirdPartyPhaseout
|
499
500
|
|
500
501
|
type CookieOperation extends string
|
501
502
|
enum
|
@@ -5687,6 +5688,10 @@ domain Network
|
|
5687
5688
|
# The cookie's name/value pair size exceeded the size limit defined in
|
5688
5689
|
# RFC6265bis.
|
5689
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
|
5690
5695
|
|
5691
5696
|
# Types of reasons why a cookie may not be sent with a request.
|
5692
5697
|
experimental type CookieBlockedReason extends string
|
package/types/protocol.d.ts
CHANGED
@@ -3278,7 +3278,7 @@ export namespace Protocol {
|
|
3278
3278
|
|
3279
3279
|
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');
|
3280
3280
|
|
3281
|
-
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII');
|
3281
|
+
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout');
|
3282
3282
|
|
3283
3283
|
export type CookieOperation = ('SetCookie' | 'ReadCookie');
|
3284
3284
|
|
@@ -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.
|