devtools-protocol 0.0.1069585 → 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
  {
@@ -4372,6 +4373,11 @@
4372
4373
  "description": "Security origin of the cache.",
4373
4374
  "type": "string"
4374
4375
  },
4376
+ {
4377
+ "name": "storageKey",
4378
+ "description": "Storage key of the cache.",
4379
+ "type": "string"
4380
+ },
4375
4381
  {
4376
4382
  "name": "cacheName",
4377
4383
  "description": "The name of the cache.",
@@ -11810,6 +11816,7 @@
11810
11816
  "SameSiteUnspecifiedTreatedAsLax",
11811
11817
  "SameSiteNoneInsecure",
11812
11818
  "UserPreferences",
11819
+ "ThirdPartyBlockedInFirstPartySet",
11813
11820
  "SyntaxError",
11814
11821
  "SchemeNotSupported",
11815
11822
  "OverwriteSecure",
@@ -11838,6 +11845,7 @@
11838
11845
  "SameSiteUnspecifiedTreatedAsLax",
11839
11846
  "SameSiteNoneInsecure",
11840
11847
  "UserPreferences",
11848
+ "ThirdPartyBlockedInFirstPartySet",
11841
11849
  "UnknownError",
11842
11850
  "SchemefulSameSiteStrict",
11843
11851
  "SchemefulSameSiteLax",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1069585",
3
+ "version": "0.0.1072049",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -2065,6 +2066,8 @@ experimental domain CacheStorage
2065
2066
  CacheId cacheId
2066
2067
  # Security origin of the cache.
2067
2068
  string securityOrigin
2069
+ # Storage key of the cache.
2070
+ string storageKey
2068
2071
  # The name of the cache.
2069
2072
  string cacheName
2070
2073
 
@@ -5477,6 +5480,9 @@ domain Network
5477
5480
  SameSiteNoneInsecure
5478
5481
  # The cookie was not stored due to user preferences.
5479
5482
  UserPreferences
5483
+ # The cookie was blocked by third-party cookie blocking between sites in
5484
+ # the same First-Party Set.
5485
+ ThirdPartyBlockedInFirstPartySet
5480
5486
  # The syntax of the Set-Cookie header of the response was invalid.
5481
5487
  SyntaxError
5482
5488
  # The scheme of the connection is not allowed to store cookies.
@@ -5541,6 +5547,9 @@ domain Network
5541
5547
  SameSiteNoneInsecure
5542
5548
  # The cookie was not sent due to user preferences.
5543
5549
  UserPreferences
5550
+ # The cookie was blocked by third-party cookie blocking between sites in
5551
+ # the same First-Party Set.
5552
+ ThirdPartyBlockedInFirstPartySet
5544
5553
  # An unknown error was encountered when trying to send this cookie.
5545
5554
  UnknownError
5546
5555
  # The cookie had the "SameSite=Strict" attribute but came from a response
@@ -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
 
@@ -5173,6 +5173,10 @@ export namespace Protocol {
5173
5173
  * Security origin of the cache.
5174
5174
  */
5175
5175
  securityOrigin: string;
5176
+ /**
5177
+ * Storage key of the cache.
5178
+ */
5179
+ storageKey: string;
5176
5180
  /**
5177
5181
  * The name of the cache.
5178
5182
  */
@@ -10000,12 +10004,12 @@ export namespace Protocol {
10000
10004
  /**
10001
10005
  * Types of reasons why a cookie may not be stored from a response.
10002
10006
  */
10003
- 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');
10004
10008
 
10005
10009
  /**
10006
10010
  * Types of reasons why a cookie may not be sent with a request.
10007
10011
  */
10008
- 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');
10009
10013
 
10010
10014
  /**
10011
10015
  * A cookie which was not stored from a response with the corresponding reason.