devtools-protocol 0.0.1167732 → 0.0.1169132

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.
@@ -1420,7 +1420,8 @@
1420
1420
  "InvalidRegisterOsSourceHeader",
1421
1421
  "InvalidRegisterOsTriggerHeader",
1422
1422
  "WebAndOsHeaders",
1423
- "NoWebOrOsSupport"
1423
+ "NoWebOrOsSupport",
1424
+ "NavigationRegistrationWithoutTransientUserActivation"
1424
1425
  ]
1425
1426
  },
1426
1427
  {
@@ -10074,6 +10075,10 @@
10074
10075
  }
10075
10076
  ]
10076
10077
  },
10078
+ {
10079
+ "name": "cancelDragging",
10080
+ "description": "Cancels any active dragging in the page."
10081
+ },
10077
10082
  {
10078
10083
  "name": "emulateTouchFromMouseEvent",
10079
10084
  "description": "Emulates touch event from the mouse event parameters.",
@@ -12647,7 +12652,8 @@
12647
12652
  "enum": [
12648
12653
  "deflate",
12649
12654
  "gzip",
12650
- "br"
12655
+ "br",
12656
+ "zstd"
12651
12657
  ]
12652
12658
  },
12653
12659
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1167732",
3
+ "version": "0.0.1169132",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -697,6 +697,7 @@ experimental domain Audits
697
697
  InvalidRegisterOsTriggerHeader
698
698
  WebAndOsHeaders
699
699
  NoWebOrOsSupport
700
+ NavigationRegistrationWithoutTransientUserActivation
700
701
 
701
702
  # Details for issues around "Attribution Reporting API" usage.
702
703
  # Explainer: https://github.com/WICG/attribution-reporting-api
@@ -4586,6 +4587,9 @@ domain Input
4586
4587
  # Time at which the event occurred.
4587
4588
  optional TimeSinceEpoch timestamp
4588
4589
 
4590
+ # Cancels any active dragging in the page.
4591
+ command cancelDragging
4592
+
4589
4593
  # Emulates touch event from the mouse event parameters.
4590
4594
  experimental command emulateTouchFromMouseEvent
4591
4595
  parameters
@@ -5917,6 +5921,7 @@ domain Network
5917
5921
  deflate
5918
5922
  gzip
5919
5923
  br
5924
+ zstd
5920
5925
 
5921
5926
  # Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
5922
5927
  experimental command setAcceptedEncodings
@@ -2841,6 +2841,13 @@ export namespace ProtocolMapping {
2841
2841
  paramsType: [Protocol.Input.DispatchTouchEventRequest];
2842
2842
  returnType: void;
2843
2843
  };
2844
+ /**
2845
+ * Cancels any active dragging in the page.
2846
+ */
2847
+ 'Input.cancelDragging': {
2848
+ paramsType: [];
2849
+ returnType: void;
2850
+ };
2844
2851
  /**
2845
2852
  * Emulates touch event from the mouse event parameters.
2846
2853
  */
@@ -1988,6 +1988,11 @@ export namespace ProtocolProxyApi {
1988
1988
  */
1989
1989
  dispatchTouchEvent(params: Protocol.Input.DispatchTouchEventRequest): Promise<void>;
1990
1990
 
1991
+ /**
1992
+ * Cancels any active dragging in the page.
1993
+ */
1994
+ cancelDragging(): Promise<void>;
1995
+
1991
1996
  /**
1992
1997
  * Emulates touch event from the mouse event parameters.
1993
1998
  */
@@ -3441,7 +3441,7 @@ export namespace Protocol {
3441
3441
  clientSecurityState?: Network.ClientSecurityState;
3442
3442
  }
3443
3443
 
3444
- export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport');
3444
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation');
3445
3445
 
3446
3446
  /**
3447
3447
  * Details for issues around "Attribution Reporting API" usage.
@@ -10624,7 +10624,7 @@ export namespace Protocol {
10624
10624
  /**
10625
10625
  * List of content encodings supported by the backend.
10626
10626
  */
10627
- export type ContentEncoding = ('deflate' | 'gzip' | 'br');
10627
+ export type ContentEncoding = ('deflate' | 'gzip' | 'br' | 'zstd');
10628
10628
 
10629
10629
  export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn');
10630
10630