devtools-protocol 0.0.1254350 → 0.0.1255431

Sign up to get free protection for your applications and to get access to all the features.
@@ -12784,7 +12784,7 @@
12784
12784
  "EnterprisePolicy",
12785
12785
  "StorageAccess",
12786
12786
  "TopLevelStorageAccess",
12787
- "BrowserHeuristics"
12787
+ "CorsOptIn"
12788
12788
  ]
12789
12789
  },
12790
12790
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1254350",
3
+ "version": "0.0.1255431",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6010,8 +6010,8 @@ domain Network
6010
6010
  StorageAccess
6011
6011
  # The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
6012
6012
  TopLevelStorageAccess
6013
- # The cookie should have been blocked by 3PCD but is exempted by browser heuristics.
6014
- BrowserHeuristics
6013
+ # The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
6014
+ CorsOptIn
6015
6015
 
6016
6016
  # A cookie which was not stored from a response with the corresponding reason.
6017
6017
  experimental type BlockedSetCookieWithReason extends object
@@ -10595,7 +10595,7 @@ export namespace Protocol {
10595
10595
  /**
10596
10596
  * Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
10597
10597
  */
10598
- export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'BrowserHeuristics');
10598
+ export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'CorsOptIn');
10599
10599
 
10600
10600
  /**
10601
10601
  * A cookie which was not stored from a response with the corresponding reason.