devtools-protocol 0.0.1443047 → 0.0.1443917

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.
@@ -17900,6 +17900,7 @@
17900
17900
  "cross-origin-isolated",
17901
17901
  "deferred-fetch",
17902
17902
  "deferred-fetch-minimal",
17903
+ "device-attributes",
17903
17904
  "digital-credentials-get",
17904
17905
  "direct-sockets",
17905
17906
  "direct-sockets-private",
@@ -24742,7 +24743,7 @@
24742
24743
  },
24743
24744
  {
24744
24745
  "name": "setAutoAttach",
24745
- "description": "Controls whether to automatically attach to new targets which are considered to be related to\nthis one. When turned on, attaches to all existing related targets as well. When turned off,\nautomatically detaches from all currently attached targets.\nThis also clears all targets added by `autoAttachRelated` from the list of targets to watch\nfor creation of related targets.",
24746
+ "description": "Controls whether to automatically attach to new targets which are considered\nto be directly related to this one (for example, iframes or workers).\nWhen turned on, attaches to all existing related targets as well. When turned off,\nautomatically detaches from all currently attached targets.\nThis also clears all targets added by `autoAttachRelated` from the list of targets to watch\nfor creation of related targets.\nYou might want to call this recursively for auto-attached targets to attach\nto all available targets.",
24746
24747
  "parameters": [
24747
24748
  {
24748
24749
  "name": "autoAttach",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1443047",
3
+ "version": "0.0.1443917",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8453,6 +8453,7 @@ domain Page
8453
8453
  cross-origin-isolated
8454
8454
  deferred-fetch
8455
8455
  deferred-fetch-minimal
8456
+ device-attributes
8456
8457
  digital-credentials-get
8457
8458
  direct-sockets
8458
8459
  direct-sockets-private
@@ -11642,11 +11643,14 @@ domain Target
11642
11643
  # Deprecated.
11643
11644
  deprecated optional TargetID targetId
11644
11645
 
11645
- # Controls whether to automatically attach to new targets which are considered to be related to
11646
- # this one. When turned on, attaches to all existing related targets as well. When turned off,
11646
+ # Controls whether to automatically attach to new targets which are considered
11647
+ # to be directly related to this one (for example, iframes or workers).
11648
+ # When turned on, attaches to all existing related targets as well. When turned off,
11647
11649
  # automatically detaches from all currently attached targets.
11648
11650
  # This also clears all targets added by `autoAttachRelated` from the list of targets to watch
11649
11651
  # for creation of related targets.
11652
+ # You might want to call this recursively for auto-attached targets to attach
11653
+ # to all available targets.
11650
11654
  command setAutoAttach
11651
11655
  parameters
11652
11656
  # Whether to auto-attach to related targets.
@@ -4819,11 +4819,14 @@ export namespace ProtocolMapping {
4819
4819
  returnType: void;
4820
4820
  };
4821
4821
  /**
4822
- * Controls whether to automatically attach to new targets which are considered to be related to
4823
- * this one. When turned on, attaches to all existing related targets as well. When turned off,
4822
+ * Controls whether to automatically attach to new targets which are considered
4823
+ * to be directly related to this one (for example, iframes or workers).
4824
+ * When turned on, attaches to all existing related targets as well. When turned off,
4824
4825
  * automatically detaches from all currently attached targets.
4825
4826
  * This also clears all targets added by `autoAttachRelated` from the list of targets to watch
4826
4827
  * for creation of related targets.
4828
+ * You might want to call this recursively for auto-attached targets to attach
4829
+ * to all available targets.
4827
4830
  */
4828
4831
  'Target.setAutoAttach': {
4829
4832
  paramsType: [Protocol.Target.SetAutoAttachRequest];
@@ -3902,11 +3902,14 @@ export namespace ProtocolProxyApi {
3902
3902
  sendMessageToTarget(params: Protocol.Target.SendMessageToTargetRequest): Promise<void>;
3903
3903
 
3904
3904
  /**
3905
- * Controls whether to automatically attach to new targets which are considered to be related to
3906
- * this one. When turned on, attaches to all existing related targets as well. When turned off,
3905
+ * Controls whether to automatically attach to new targets which are considered
3906
+ * to be directly related to this one (for example, iframes or workers).
3907
+ * When turned on, attaches to all existing related targets as well. When turned off,
3907
3908
  * automatically detaches from all currently attached targets.
3908
3909
  * This also clears all targets added by `autoAttachRelated` from the list of targets to watch
3909
3910
  * for creation of related targets.
3911
+ * You might want to call this recursively for auto-attached targets to attach
3912
+ * to all available targets.
3910
3913
  */
3911
3914
  setAutoAttach(params: Protocol.Target.SetAutoAttachRequest): Promise<void>;
3912
3915
 
@@ -4218,11 +4218,14 @@ export namespace ProtocolTestsProxyApi {
4218
4218
  sendMessageToTarget(params: Protocol.Target.SendMessageToTargetRequest): Promise<{id: number, result: void, sessionId: string}>;
4219
4219
 
4220
4220
  /**
4221
- * Controls whether to automatically attach to new targets which are considered to be related to
4222
- * this one. When turned on, attaches to all existing related targets as well. When turned off,
4221
+ * Controls whether to automatically attach to new targets which are considered
4222
+ * to be directly related to this one (for example, iframes or workers).
4223
+ * When turned on, attaches to all existing related targets as well. When turned off,
4223
4224
  * automatically detaches from all currently attached targets.
4224
4225
  * This also clears all targets added by `autoAttachRelated` from the list of targets to watch
4225
4226
  * for creation of related targets.
4227
+ * You might want to call this recursively for auto-attached targets to attach
4228
+ * to all available targets.
4226
4229
  */
4227
4230
  setAutoAttach(params: Protocol.Target.SetAutoAttachRequest): Promise<{id: number, result: void, sessionId: string}>;
4228
4231
 
@@ -13844,7 +13844,7 @@ export namespace Protocol {
13844
13844
  * All Permissions Policy features. This enum should match the one defined
13845
13845
  * in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
13846
13846
  */
13847
- export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'local-fonts' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
13847
+ export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'local-fonts' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
13848
13848
 
13849
13849
  /**
13850
13850
  * Reason for a permissions policy feature to be disabled.