devtools-protocol 0.0.1168520 → 0.0.1169132
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.
@@ -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
package/pdl/browser_protocol.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
@@ -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
|
|