devtools-protocol 0.0.1167732 → 0.0.1168520

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1167732",
3
+ "version": "0.0.1168520",
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
@@ -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.