devtools-protocol 0.0.1351223 → 0.0.1354347

Sign up to get free protection for your applications and to get access to all the features.
@@ -5657,6 +5657,7 @@
5657
5657
  "after",
5658
5658
  "marker",
5659
5659
  "backdrop",
5660
+ "column",
5660
5661
  "selection",
5661
5662
  "search-text",
5662
5663
  "target-text",
@@ -13513,7 +13514,6 @@
13513
13514
  "EnterprisePolicy",
13514
13515
  "StorageAccess",
13515
13516
  "TopLevelStorageAccess",
13516
- "CorsOptIn",
13517
13517
  "Scheme"
13518
13518
  ]
13519
13519
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1351223",
3
+ "version": "0.0.1354347",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2679,6 +2679,7 @@ domain DOM
2679
2679
  after
2680
2680
  marker
2681
2681
  backdrop
2682
+ column
2682
2683
  selection
2683
2684
  search-text
2684
2685
  target-text
@@ -6385,8 +6386,6 @@ domain Network
6385
6386
  StorageAccess
6386
6387
  # The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
6387
6388
  TopLevelStorageAccess
6388
- # The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
6389
- CorsOptIn
6390
6389
  # The cookie should have been blocked by 3PCD but is exempted by the first-party URL scheme.
6391
6390
  Scheme
6392
6391
 
@@ -6017,7 +6017,7 @@ export namespace Protocol {
6017
6017
  /**
6018
6018
  * Pseudo element type.
6019
6019
  */
6020
- export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'select-fallback-button' | 'select-fallback-button-text' | 'picker');
6020
+ export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'select-fallback-button' | 'select-fallback-button-text' | 'picker');
6021
6021
 
6022
6022
  /**
6023
6023
  * Shadow root type.
@@ -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.