devtools-protocol 0.0.939882 → 0.0.940865

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.
@@ -7471,8 +7471,17 @@
7471
7471
  "$ref": "UserAgentBrandVersion"
7472
7472
  }
7473
7473
  },
7474
+ {
7475
+ "name": "fullVersionList",
7476
+ "optional": true,
7477
+ "type": "array",
7478
+ "items": {
7479
+ "$ref": "UserAgentBrandVersion"
7480
+ }
7481
+ },
7474
7482
  {
7475
7483
  "name": "fullVersion",
7484
+ "deprecated": true,
7476
7485
  "optional": true,
7477
7486
  "type": "string"
7478
7487
  },
@@ -14578,6 +14587,7 @@
14578
14587
  "ch-ua-model",
14579
14588
  "ch-ua-mobile",
14580
14589
  "ch-ua-full-version",
14590
+ "ch-ua-full-version-list",
14581
14591
  "ch-ua-platform-version",
14582
14592
  "ch-ua-reduced",
14583
14593
  "ch-viewport-height",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.939882",
3
+ "version": "0.0.940865",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -3383,7 +3383,8 @@ domain Emulation
3383
3383
  experimental type UserAgentMetadata extends object
3384
3384
  properties
3385
3385
  optional array of UserAgentBrandVersion brands
3386
- optional string fullVersion
3386
+ optional array of UserAgentBrandVersion fullVersionList
3387
+ deprecated optional string fullVersion
3387
3388
  string platform
3388
3389
  string platformVersion
3389
3390
  string architecture
@@ -6767,6 +6768,7 @@ domain Page
6767
6768
  ch-ua-model
6768
6769
  ch-ua-mobile
6769
6770
  ch-ua-full-version
6771
+ ch-ua-full-version-list
6770
6772
  ch-ua-platform-version
6771
6773
  ch-ua-reduced
6772
6774
  ch-viewport-height
@@ -7098,6 +7098,7 @@ export namespace Protocol {
7098
7098
  */
7099
7099
  export interface UserAgentMetadata {
7100
7100
  brands?: UserAgentBrandVersion[];
7101
+ fullVersionList?: UserAgentBrandVersion[];
7101
7102
  fullVersion?: string;
7102
7103
  platform: string;
7103
7104
  platformVersion: string;
@@ -11806,7 +11807,7 @@ export namespace Protocol {
11806
11807
  * All Permissions Policy features. This enum should match the one defined
11807
11808
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
11808
11809
  */
11809
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full-version' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
11810
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
11810
11811
 
11811
11812
  /**
11812
11813
  * Reason for a permissions policy feature to be disabled.