devtools-protocol 0.0.1473367 → 0.0.1473885

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.
@@ -9617,21 +9617,6 @@
9617
9617
  "pauseIfNetworkFetchesPending"
9618
9618
  ]
9619
9619
  },
9620
- {
9621
- "id": "UserAgentFormFactor",
9622
- "description": "Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors",
9623
- "experimental": true,
9624
- "type": "string",
9625
- "enum": [
9626
- "Desktop",
9627
- "Automotive",
9628
- "Mobile",
9629
- "Tablet",
9630
- "XR",
9631
- "EInk",
9632
- "Watch"
9633
- ]
9634
- },
9635
9620
  {
9636
9621
  "id": "UserAgentBrandVersion",
9637
9622
  "description": "Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints",
@@ -9710,10 +9695,11 @@
9710
9695
  },
9711
9696
  {
9712
9697
  "name": "formFactors",
9698
+ "description": "Used to specify User Agent form-factor values.\nSee https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors",
9713
9699
  "optional": true,
9714
9700
  "type": "array",
9715
9701
  "items": {
9716
- "$ref": "UserAgentFormFactor"
9702
+ "type": "string"
9717
9703
  }
9718
9704
  }
9719
9705
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1473367",
3
+ "version": "0.0.1473885",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -4467,17 +4467,6 @@ domain Emulation
4467
4467
  pause
4468
4468
  pauseIfNetworkFetchesPending
4469
4469
 
4470
- # Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
4471
- experimental type UserAgentFormFactor extends string
4472
- enum
4473
- Desktop
4474
- Automotive
4475
- Mobile
4476
- Tablet
4477
- XR
4478
- EInk
4479
- Watch
4480
-
4481
4470
  # Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
4482
4471
  experimental type UserAgentBrandVersion extends object
4483
4472
  properties
@@ -4500,7 +4489,9 @@ domain Emulation
4500
4489
  boolean mobile
4501
4490
  optional string bitness
4502
4491
  optional boolean wow64
4503
- optional array of UserAgentFormFactor formFactors
4492
+ # Used to specify User Agent form-factor values.
4493
+ # See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
4494
+ optional array of string formFactors
4504
4495
 
4505
4496
  # Used to specify sensor types to emulate.
4506
4497
  # See https://w3c.github.io/sensors/#automation for more information.
@@ -8536,11 +8536,6 @@ export namespace Protocol {
8536
8536
  */
8537
8537
  export type VirtualTimePolicy = ('advance' | 'pause' | 'pauseIfNetworkFetchesPending');
8538
8538
 
8539
- /**
8540
- * Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
8541
- */
8542
- export type UserAgentFormFactor = ('Desktop' | 'Automotive' | 'Mobile' | 'Tablet' | 'XR' | 'EInk' | 'Watch');
8543
-
8544
8539
  /**
8545
8540
  * Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
8546
8541
  */
@@ -8570,7 +8565,11 @@ export namespace Protocol {
8570
8565
  mobile: boolean;
8571
8566
  bitness?: string;
8572
8567
  wow64?: boolean;
8573
- formFactors?: UserAgentFormFactor[];
8568
+ /**
8569
+ * Used to specify User Agent form-factor values.
8570
+ * See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
8571
+ */
8572
+ formFactors?: string[];
8574
8573
  }
8575
8574
 
8576
8575
  /**