devtools-protocol 0.0.1173320 → 0.0.1173815

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
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1173320",
3
+ "version": "0.0.1173815",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -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