devtools-protocol 0.0.938504 → 0.0.939359

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.
@@ -308,6 +308,12 @@
308
308
  "$ref": "AXProperty"
309
309
  }
310
310
  },
311
+ {
312
+ "name": "parentId",
313
+ "description": "ID for this node's parent.",
314
+ "optional": true,
315
+ "$ref": "AXNodeId"
316
+ },
311
317
  {
312
318
  "name": "childIds",
313
319
  "description": "IDs for each of this node's child nodes.",
@@ -322,6 +328,12 @@
322
328
  "description": "The backend ID for the associated DOM node, if any.",
323
329
  "optional": true,
324
330
  "$ref": "DOM.BackendNodeId"
331
+ },
332
+ {
333
+ "name": "frameId",
334
+ "description": "The frame ID for the frame associated with this nodes document.",
335
+ "optional": true,
336
+ "$ref": "Page.FrameId"
325
337
  }
326
338
  ]
327
339
  }
@@ -14536,6 +14548,7 @@
14536
14548
  "hid",
14537
14549
  "idle-detection",
14538
14550
  "interest-cohort",
14551
+ "join-ad-interest-group",
14539
14552
  "keyboard-map",
14540
14553
  "magnetometer",
14541
14554
  "microphone",
@@ -14544,6 +14557,7 @@
14544
14557
  "payment",
14545
14558
  "picture-in-picture",
14546
14559
  "publickey-credentials-get",
14560
+ "run-ad-auction",
14547
14561
  "screen-wake-lock",
14548
14562
  "serial",
14549
14563
  "shared-autofill",
@@ -16615,6 +16629,22 @@
16615
16629
  "description": "Clears seeded compilation cache.",
16616
16630
  "experimental": true
16617
16631
  },
16632
+ {
16633
+ "name": "setSPCTransactionMode",
16634
+ "description": "Sets the Secure Payment Confirmation transaction mode.\nhttps://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode",
16635
+ "experimental": true,
16636
+ "parameters": [
16637
+ {
16638
+ "name": "mode",
16639
+ "type": "string",
16640
+ "enum": [
16641
+ "none",
16642
+ "autoaccept",
16643
+ "autoreject"
16644
+ ]
16645
+ }
16646
+ ]
16647
+ },
16618
16648
  {
16619
16649
  "name": "generateTestReport",
16620
16650
  "description": "Generates a report for testing.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.938504",
3
+ "version": "0.0.939359",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -176,10 +176,14 @@ experimental domain Accessibility
176
176
  optional AXValue value
177
177
  # All other properties
178
178
  optional array of AXProperty properties
179
+ # ID for this node's parent.
180
+ optional AXNodeId parentId
179
181
  # IDs for each of this node's child nodes.
180
182
  optional array of AXNodeId childIds
181
183
  # The backend ID for the associated DOM node, if any.
182
184
  optional DOM.BackendNodeId backendDOMNodeId
185
+ # The frame ID for the frame associated with this nodes document.
186
+ optional Page.FrameId frameId
183
187
 
184
188
  # Disables the accessibility domain.
185
189
  command disable
@@ -6763,6 +6767,7 @@ domain Page
6763
6767
  hid
6764
6768
  idle-detection
6765
6769
  interest-cohort
6770
+ join-ad-interest-group
6766
6771
  keyboard-map
6767
6772
  magnetometer
6768
6773
  microphone
@@ -6771,6 +6776,7 @@ domain Page
6771
6776
  payment
6772
6777
  picture-in-picture
6773
6778
  publickey-credentials-get
6779
+ run-ad-auction
6774
6780
  screen-wake-lock
6775
6781
  serial
6776
6782
  shared-autofill
@@ -7645,6 +7651,15 @@ domain Page
7645
7651
  # Clears seeded compilation cache.
7646
7652
  experimental command clearCompilationCache
7647
7653
 
7654
+ # Sets the Secure Payment Confirmation transaction mode.
7655
+ # https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
7656
+ experimental command setSPCTransactionMode
7657
+ parameters
7658
+ enum mode
7659
+ none
7660
+ autoaccept
7661
+ autoreject
7662
+
7648
7663
  # Generates a report for testing.
7649
7664
  experimental command generateTestReport
7650
7665
  parameters
@@ -3693,6 +3693,14 @@ export namespace ProtocolMapping {
3693
3693
  paramsType: [];
3694
3694
  returnType: void;
3695
3695
  };
3696
+ /**
3697
+ * Sets the Secure Payment Confirmation transaction mode.
3698
+ * https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
3699
+ */
3700
+ 'Page.setSPCTransactionMode': {
3701
+ paramsType: [Protocol.Page.SetSPCTransactionModeRequest];
3702
+ returnType: void;
3703
+ };
3696
3704
  /**
3697
3705
  * Generates a report for testing.
3698
3706
  */
@@ -2842,6 +2842,12 @@ export namespace ProtocolProxyApi {
2842
2842
  */
2843
2843
  clearCompilationCache(): Promise<void>;
2844
2844
 
2845
+ /**
2846
+ * Sets the Secure Payment Confirmation transaction mode.
2847
+ * https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
2848
+ */
2849
+ setSPCTransactionMode(params: Protocol.Page.SetSPCTransactionModeRequest): Promise<void>;
2850
+
2845
2851
  /**
2846
2852
  * Generates a report for testing.
2847
2853
  */
@@ -2631,6 +2631,10 @@ export namespace Protocol {
2631
2631
  * All other properties
2632
2632
  */
2633
2633
  properties?: AXProperty[];
2634
+ /**
2635
+ * ID for this node's parent.
2636
+ */
2637
+ parentId?: AXNodeId;
2634
2638
  /**
2635
2639
  * IDs for each of this node's child nodes.
2636
2640
  */
@@ -2639,6 +2643,10 @@ export namespace Protocol {
2639
2643
  * The backend ID for the associated DOM node, if any.
2640
2644
  */
2641
2645
  backendDOMNodeId?: DOM.BackendNodeId;
2646
+ /**
2647
+ * The frame ID for the frame associated with this nodes document.
2648
+ */
2649
+ frameId?: Page.FrameId;
2642
2650
  }
2643
2651
 
2644
2652
  export interface GetPartialAXTreeRequest {
@@ -11767,7 +11775,7 @@ export namespace Protocol {
11767
11775
  * All Permissions Policy features. This enum should match the one defined
11768
11776
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
11769
11777
  */
11770
- 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' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
11778
+ 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');
11771
11779
 
11772
11780
  /**
11773
11781
  * Reason for a permissions policy feature to be disabled.
@@ -12945,6 +12953,19 @@ export namespace Protocol {
12945
12953
  data: string;
12946
12954
  }
12947
12955
 
12956
+ export const enum SetSPCTransactionModeRequestMode {
12957
+ None = 'none',
12958
+ Autoaccept = 'autoaccept',
12959
+ Autoreject = 'autoreject',
12960
+ }
12961
+
12962
+ export interface SetSPCTransactionModeRequest {
12963
+ /**
12964
+ * (SetSPCTransactionModeRequestMode enum)
12965
+ */
12966
+ mode: ('none' | 'autoaccept' | 'autoreject');
12967
+ }
12968
+
12948
12969
  export interface GenerateTestReportRequest {
12949
12970
  /**
12950
12971
  * Message to be displayed in the report.