devtools-protocol 0.0.1588380 → 0.0.1589152

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.
@@ -10800,6 +10800,7 @@
10800
10800
  "type": "string",
10801
10801
  "enum": [
10802
10802
  "avif",
10803
+ "jxl",
10803
10804
  "webp"
10804
10805
  ]
10805
10806
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1588380",
3
+ "version": "0.0.1589152",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -525,6 +525,7 @@ domain Emulation
525
525
  experimental type DisabledImageType extends string
526
526
  enum
527
527
  avif
528
+ jxl
528
529
  webp
529
530
 
530
531
  experimental command setDisabledImageTypes
@@ -9337,7 +9337,7 @@ export namespace Protocol {
9337
9337
  * Enum of image types that can be disabled.
9338
9338
  * @experimental
9339
9339
  */
9340
- export type DisabledImageType = ('avif' | 'webp');
9340
+ export type DisabledImageType = ('avif' | 'jxl' | 'webp');
9341
9341
 
9342
9342
  export interface CanEmulateResponse {
9343
9343
  /**