devtools-protocol 0.0.1070637 → 0.0.1073708

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",
@@ -17568,8 +17571,9 @@
17568
17571
  "type": "string",
17569
17572
  "enum": [
17570
17573
  "none",
17571
- "autoaccept",
17572
- "autoreject"
17574
+ "autoAccept",
17575
+ "autoReject",
17576
+ "autoOptOut"
17573
17577
  ]
17574
17578
  }
17575
17579
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1070637",
3
+ "version": "0.0.1073708",
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
@@ -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
@@ -8114,8 +8121,9 @@ domain Page
8114
8121
  parameters
8115
8122
  enum mode
8116
8123
  none
8117
- autoaccept
8118
- autoreject
8124
+ autoAccept
8125
+ autoReject
8126
+ autoOptOut
8119
8127
 
8120
8128
  # Generates a report for testing.
8121
8129
  experimental command generateTestReport
@@ -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.
@@ -13557,15 +13557,16 @@ export namespace Protocol {
13557
13557
 
13558
13558
  export const enum SetSPCTransactionModeRequestMode {
13559
13559
  None = 'none',
13560
- Autoaccept = 'autoaccept',
13561
- Autoreject = 'autoreject',
13560
+ AutoAccept = 'autoAccept',
13561
+ AutoReject = 'autoReject',
13562
+ AutoOptOut = 'autoOptOut',
13562
13563
  }
13563
13564
 
13564
13565
  export interface SetSPCTransactionModeRequest {
13565
13566
  /**
13566
13567
  * (SetSPCTransactionModeRequestMode enum)
13567
13568
  */
13568
- mode: ('none' | 'autoaccept' | 'autoreject');
13569
+ mode: ('none' | 'autoAccept' | 'autoReject' | 'autoOptOut');
13569
13570
  }
13570
13571
 
13571
13572
  export interface GenerateTestReportRequest {