devtools-protocol 0.0.1409451 → 0.0.1410712

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.
@@ -13696,7 +13696,8 @@
13696
13696
  "EnterprisePolicy",
13697
13697
  "StorageAccess",
13698
13698
  "TopLevelStorageAccess",
13699
- "Scheme"
13699
+ "Scheme",
13700
+ "SameSiteNoneCookiesInSandbox"
13700
13701
  ]
13701
13702
  },
13702
13703
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1409451",
3
+ "version": "0.0.1410712",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6495,6 +6495,8 @@ domain Network
6495
6495
  TopLevelStorageAccess
6496
6496
  # The cookie should have been blocked by 3PCD but is exempted by the first-party URL scheme.
6497
6497
  Scheme
6498
+ # The cookie was included due to the 'allow-same-site-none-cookies' value being set in the sandboxing policy.
6499
+ SameSiteNoneCookiesInSandbox
6498
6500
 
6499
6501
  # A cookie which was not stored from a response with the corresponding reason.
6500
6502
  experimental type BlockedSetCookieWithReason extends object
@@ -11120,7 +11120,7 @@ export namespace Protocol {
11120
11120
  /**
11121
11121
  * Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
11122
11122
  */
11123
- export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme');
11123
+ export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme' | 'SameSiteNoneCookiesInSandbox');
11124
11124
 
11125
11125
  /**
11126
11126
  * A cookie which was not stored from a response with the corresponding reason.