devtools-protocol 0.0.1206220 → 0.0.1208070

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.
@@ -9870,16 +9870,14 @@
9870
9870
  {
9871
9871
  "name": "tiltX",
9872
9872
  "description": "The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0)",
9873
- "experimental": true,
9874
9873
  "optional": true,
9875
- "type": "integer"
9874
+ "type": "number"
9876
9875
  },
9877
9876
  {
9878
9877
  "name": "tiltY",
9879
9878
  "description": "The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).",
9880
- "experimental": true,
9881
9879
  "optional": true,
9882
- "type": "integer"
9880
+ "type": "number"
9883
9881
  },
9884
9882
  {
9885
9883
  "name": "twist",
@@ -10243,16 +10241,14 @@
10243
10241
  {
10244
10242
  "name": "tiltX",
10245
10243
  "description": "The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0).",
10246
- "experimental": true,
10247
10244
  "optional": true,
10248
- "type": "integer"
10245
+ "type": "number"
10249
10246
  },
10250
10247
  {
10251
10248
  "name": "tiltY",
10252
10249
  "description": "The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).",
10253
- "experimental": true,
10254
10250
  "optional": true,
10255
- "type": "integer"
10251
+ "type": "number"
10256
10252
  },
10257
10253
  {
10258
10254
  "name": "twist",
@@ -24020,7 +24016,6 @@
24020
24016
  "MemoryPressureOnTrigger",
24021
24017
  "MemoryPressureAfterTriggered",
24022
24018
  "PrerenderingDisabledByDevTools",
24023
- "ResourceLoadBlockedByClient",
24024
24019
  "SpeculationRuleRemoved",
24025
24020
  "ActivatedWithAuxiliaryBrowsingContexts",
24026
24021
  "MaxNumOfRunningEagerPrerendersExceeded",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1206220",
3
+ "version": "0.0.1208070",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -4499,9 +4499,9 @@ domain Input
4499
4499
  # The normalized tangential pressure, which has a range of [-1,1] (default: 0).
4500
4500
  experimental optional number tangentialPressure
4501
4501
  # The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0)
4502
- experimental optional integer tiltX
4502
+ optional number tiltX
4503
4503
  # The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
4504
- experimental optional integer tiltY
4504
+ optional number tiltY
4505
4505
  # The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
4506
4506
  experimental optional integer twist
4507
4507
  # Identifier used to track touch sources between events, must be unique within an event.
@@ -4667,9 +4667,9 @@ domain Input
4667
4667
  # The normalized tangential pressure, which has a range of [-1,1] (default: 0).
4668
4668
  experimental optional number tangentialPressure
4669
4669
  # The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0).
4670
- experimental optional integer tiltX
4670
+ optional number tiltX
4671
4671
  # The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
4672
- experimental optional integer tiltY
4672
+ optional number tiltY
4673
4673
  # The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
4674
4674
  experimental optional integer twist
4675
4675
  # X delta in CSS pixels for mouse wheel event (default: 0).
@@ -11376,7 +11376,6 @@ experimental domain Preload
11376
11376
  MemoryPressureOnTrigger
11377
11377
  MemoryPressureAfterTriggered
11378
11378
  PrerenderingDisabledByDevTools
11379
- ResourceLoadBlockedByClient
11380
11379
  SpeculationRuleRemoved
11381
11380
  ActivatedWithAuxiliaryBrowsingContexts
11382
11381
  MaxNumOfRunningEagerPrerendersExceeded
@@ -8744,11 +8744,11 @@ export namespace Protocol {
8744
8744
  /**
8745
8745
  * The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0)
8746
8746
  */
8747
- tiltX?: integer;
8747
+ tiltX?: number;
8748
8748
  /**
8749
8749
  * The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
8750
8750
  */
8751
- tiltY?: integer;
8751
+ tiltY?: number;
8752
8752
  /**
8753
8753
  * The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
8754
8754
  */
@@ -8996,11 +8996,11 @@ export namespace Protocol {
8996
8996
  /**
8997
8997
  * The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0).
8998
8998
  */
8999
- tiltX?: integer;
8999
+ tiltX?: number;
9000
9000
  /**
9001
9001
  * The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
9002
9002
  */
9003
- tiltY?: integer;
9003
+ tiltY?: number;
9004
9004
  /**
9005
9005
  * The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
9006
9006
  */
@@ -17515,7 +17515,7 @@ export namespace Protocol {
17515
17515
  /**
17516
17516
  * List of FinalStatus reasons for Prerender2.
17517
17517
  */
17518
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'ResourceLoadBlockedByClient' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl');
17518
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl');
17519
17519
 
17520
17520
  /**
17521
17521
  * Preloading status values, see also PreloadingTriggeringOutcome. This