devtools-protocol 0.0.1205644 → 0.0.1207450
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.
- package/json/browser_protocol.json +4 -17
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +7 -10
- package/types/protocol.d.ts +7 -12
@@ -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": "
|
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": "
|
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": "
|
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": "
|
10251
|
+
"type": "number"
|
10256
10252
|
},
|
10257
10253
|
{
|
10258
10254
|
"name": "twist",
|
@@ -20218,24 +20214,15 @@
|
|
20218
20214
|
{
|
20219
20215
|
"name": "expiry",
|
20220
20216
|
"description": "duration in seconds",
|
20221
|
-
"optional": true,
|
20222
|
-
"type": "integer"
|
20223
|
-
},
|
20224
|
-
{
|
20225
|
-
"name": "eventReportWindow",
|
20226
|
-
"description": "eventReportWindow and eventReportWindows are mutually exclusive\nduration in seconds",
|
20227
|
-
"optional": true,
|
20228
20217
|
"type": "integer"
|
20229
20218
|
},
|
20230
20219
|
{
|
20231
20220
|
"name": "eventReportWindows",
|
20232
|
-
"optional": true,
|
20233
20221
|
"$ref": "AttributionReportingEventReportWindows"
|
20234
20222
|
},
|
20235
20223
|
{
|
20236
20224
|
"name": "aggregatableReportWindow",
|
20237
20225
|
"description": "duration in seconds",
|
20238
|
-
"optional": true,
|
20239
20226
|
"type": "integer"
|
20240
20227
|
},
|
20241
20228
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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).
|
@@ -9824,13 +9824,10 @@ experimental domain Storage
|
|
9824
9824
|
properties
|
9825
9825
|
Network.TimeSinceEpoch time
|
9826
9826
|
# duration in seconds
|
9827
|
-
|
9828
|
-
|
9827
|
+
integer expiry
|
9828
|
+
AttributionReportingEventReportWindows eventReportWindows
|
9829
9829
|
# duration in seconds
|
9830
|
-
|
9831
|
-
optional AttributionReportingEventReportWindows eventReportWindows
|
9832
|
-
# duration in seconds
|
9833
|
-
optional integer aggregatableReportWindow
|
9830
|
+
integer aggregatableReportWindow
|
9834
9831
|
AttributionReportingSourceType type
|
9835
9832
|
string sourceOrigin
|
9836
9833
|
string reportingOrigin
|
package/types/protocol.d.ts
CHANGED
@@ -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?:
|
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?:
|
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?:
|
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?:
|
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
|
*/
|
@@ -15198,17 +15198,12 @@ export namespace Protocol {
|
|
15198
15198
|
/**
|
15199
15199
|
* duration in seconds
|
15200
15200
|
*/
|
15201
|
-
expiry
|
15201
|
+
expiry: integer;
|
15202
|
+
eventReportWindows: AttributionReportingEventReportWindows;
|
15202
15203
|
/**
|
15203
|
-
* eventReportWindow and eventReportWindows are mutually exclusive
|
15204
15204
|
* duration in seconds
|
15205
15205
|
*/
|
15206
|
-
|
15207
|
-
eventReportWindows?: AttributionReportingEventReportWindows;
|
15208
|
-
/**
|
15209
|
-
* duration in seconds
|
15210
|
-
*/
|
15211
|
-
aggregatableReportWindow?: integer;
|
15206
|
+
aggregatableReportWindow: integer;
|
15212
15207
|
type: AttributionReportingSourceType;
|
15213
15208
|
sourceOrigin: string;
|
15214
15209
|
reportingOrigin: string;
|