devtools-protocol 0.0.1168520 → 0.0.1169132

Sign up to get free protection for your applications and to get access to all the features.
@@ -12652,7 +12652,8 @@
12652
12652
  "enum": [
12653
12653
  "deflate",
12654
12654
  "gzip",
12655
- "br"
12655
+ "br",
12656
+ "zstd"
12656
12657
  ]
12657
12658
  },
12658
12659
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1168520",
3
+ "version": "0.0.1169132",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5921,6 +5921,7 @@ domain Network
5921
5921
  deflate
5922
5922
  gzip
5923
5923
  br
5924
+ zstd
5924
5925
 
5925
5926
  # Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
5926
5927
  experimental command setAcceptedEncodings
@@ -10624,7 +10624,7 @@ export namespace Protocol {
10624
10624
  /**
10625
10625
  * List of content encodings supported by the backend.
10626
10626
  */
10627
- export type ContentEncoding = ('deflate' | 'gzip' | 'br');
10627
+ export type ContentEncoding = ('deflate' | 'gzip' | 'br' | 'zstd');
10628
10628
 
10629
10629
  export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn');
10630
10630