devtools-protocol 0.0.1002782 → 0.0.1004164

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.
@@ -4804,6 +4804,11 @@
4804
4804
  "name": "compatibilityMode",
4805
4805
  "optional": true,
4806
4806
  "$ref": "CompatibilityMode"
4807
+ },
4808
+ {
4809
+ "name": "assignedSlot",
4810
+ "optional": true,
4811
+ "$ref": "BackendNode"
4807
4812
  }
4808
4813
  ]
4809
4814
  },
@@ -15008,6 +15013,7 @@
15008
15013
  "ambient-light-sensor",
15009
15014
  "attribution-reporting",
15010
15015
  "autoplay",
15016
+ "bluetooth",
15011
15017
  "browsing-topics",
15012
15018
  "camera",
15013
15019
  "ch-dpr",
@@ -16585,7 +16591,7 @@
16585
16591
  },
16586
16592
  {
16587
16593
  "name": "loaderId",
16588
- "description": "Loader identifier.",
16594
+ "description": "Loader identifier. This is omitted in case of same-document navigation,\nas the previously committed loaderId would not change.",
16589
16595
  "optional": true,
16590
16596
  "$ref": "Network.LoaderId"
16591
16597
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1002782",
3
+ "version": "0.0.1004164",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2274,6 +2274,7 @@ domain DOM
2274
2274
  # Whether the node is SVG.
2275
2275
  optional boolean isSVG
2276
2276
  optional CompatibilityMode compatibilityMode
2277
+ optional BackendNode assignedSlot
2277
2278
 
2278
2279
  # A structure holding an RGBA color.
2279
2280
  type RGBA extends object
@@ -6996,6 +6997,7 @@ domain Page
6996
6997
  ambient-light-sensor
6997
6998
  attribution-reporting
6998
6999
  autoplay
7000
+ bluetooth
6999
7001
  browsing-topics
7000
7002
  camera
7001
7003
  ch-dpr
@@ -7634,7 +7636,8 @@ domain Page
7634
7636
  returns
7635
7637
  # Frame id that has navigated (or failed to navigate)
7636
7638
  FrameId frameId
7637
- # Loader identifier.
7639
+ # Loader identifier. This is omitted in case of same-document navigation,
7640
+ # as the previously committed loaderId would not change.
7638
7641
  optional Network.LoaderId loaderId
7639
7642
  # User friendly error message, present if and only if navigation has failed.
7640
7643
  optional string errorText
@@ -5381,6 +5381,7 @@ export namespace Protocol {
5381
5381
  */
5382
5382
  isSVG?: boolean;
5383
5383
  compatibilityMode?: CompatibilityMode;
5384
+ assignedSlot?: BackendNode;
5384
5385
  }
5385
5386
 
5386
5387
  /**
@@ -12086,7 +12087,7 @@ export namespace Protocol {
12086
12087
  * All Permissions Policy features. This enum should match the one defined
12087
12088
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
12088
12089
  */
12089
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-partitioned-cookies' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | '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' | 'local-fonts' | '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');
12090
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-partitioned-cookies' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | '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' | 'local-fonts' | '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');
12090
12091
 
12091
12092
  /**
12092
12093
  * Reason for a permissions policy feature to be disabled.
@@ -12907,7 +12908,8 @@ export namespace Protocol {
12907
12908
  */
12908
12909
  frameId: FrameId;
12909
12910
  /**
12910
- * Loader identifier.
12911
+ * Loader identifier. This is omitted in case of same-document navigation,
12912
+ * as the previously committed loaderId would not change.
12911
12913
  */
12912
12914
  loaderId?: Network.LoaderId;
12913
12915
  /**