devtools-protocol 0.0.1351223 → 0.0.1352404

Sign up to get free protection for your applications and to get access to all the features.
@@ -13513,7 +13513,6 @@
13513
13513
  "EnterprisePolicy",
13514
13514
  "StorageAccess",
13515
13515
  "TopLevelStorageAccess",
13516
- "CorsOptIn",
13517
13516
  "Scheme"
13518
13517
  ]
13519
13518
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1351223",
3
+ "version": "0.0.1352404",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6385,8 +6385,6 @@ domain Network
6385
6385
  StorageAccess
6386
6386
  # The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
6387
6387
  TopLevelStorageAccess
6388
- # The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
6389
- CorsOptIn
6390
6388
  # The cookie should have been blocked by 3PCD but is exempted by the first-party URL scheme.
6391
6389
  Scheme
6392
6390
 
@@ -11001,7 +11001,7 @@ export namespace Protocol {
11001
11001
  /**
11002
11002
  * Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
11003
11003
  */
11004
- export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'CorsOptIn' | 'Scheme');
11004
+ export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme');
11005
11005
 
11006
11006
  /**
11007
11007
  * A cookie which was not stored from a response with the corresponding reason.