devtools-protocol 0.0.1515996 → 0.0.1516431
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 +7 -0
- package/json/js_protocol.json +6 -3
- package/package.json +1 -1
- package/pdl/domains/Network.pdl +2 -0
- package/pdl/js_protocol.pdl +6 -0
- package/types/protocol.d.ts +11 -3
@@ -15211,6 +15211,13 @@
|
|
15211
15211
|
"experimental": true,
|
15212
15212
|
"optional": true,
|
15213
15213
|
"type": "boolean"
|
15214
|
+
},
|
15215
|
+
{
|
15216
|
+
"name": "isAdRelated",
|
15217
|
+
"description": "True when the resource request is ad-related.",
|
15218
|
+
"experimental": true,
|
15219
|
+
"optional": true,
|
15220
|
+
"type": "boolean"
|
15214
15221
|
}
|
15215
15222
|
]
|
15216
15223
|
},
|
package/json/js_protocol.json
CHANGED
@@ -2362,7 +2362,8 @@
|
|
2362
2362
|
"arraybuffer",
|
2363
2363
|
"dataview",
|
2364
2364
|
"webassemblymemory",
|
2365
|
-
"wasmvalue"
|
2365
|
+
"wasmvalue",
|
2366
|
+
"trustedtype"
|
2366
2367
|
]
|
2367
2368
|
},
|
2368
2369
|
{
|
@@ -2480,7 +2481,8 @@
|
|
2480
2481
|
"arraybuffer",
|
2481
2482
|
"dataview",
|
2482
2483
|
"webassemblymemory",
|
2483
|
-
"wasmvalue"
|
2484
|
+
"wasmvalue",
|
2485
|
+
"trustedtype"
|
2484
2486
|
]
|
2485
2487
|
},
|
2486
2488
|
{
|
@@ -2575,7 +2577,8 @@
|
|
2575
2577
|
"arraybuffer",
|
2576
2578
|
"dataview",
|
2577
2579
|
"webassemblymemory",
|
2578
|
-
"wasmvalue"
|
2580
|
+
"wasmvalue",
|
2581
|
+
"trustedtype"
|
2579
2582
|
]
|
2580
2583
|
}
|
2581
2584
|
]
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
@@ -211,6 +211,8 @@ domain Network
|
|
211
211
|
# True if this resource request is considered to be the 'same site' as the
|
212
212
|
# request corresponding to the main frame.
|
213
213
|
experimental optional boolean isSameSite
|
214
|
+
# True when the resource request is ad-related.
|
215
|
+
experimental optional boolean isAdRelated
|
214
216
|
|
215
217
|
# Details of a signed certificate timestamp (SCT).
|
216
218
|
type SignedCertificateTimestamp extends object
|
package/pdl/js_protocol.pdl
CHANGED
@@ -1142,6 +1142,8 @@ domain Runtime
|
|
1142
1142
|
dataview
|
1143
1143
|
webassemblymemory
|
1144
1144
|
wasmvalue
|
1145
|
+
# blink's subtypes.
|
1146
|
+
trustedtype
|
1145
1147
|
# Object class (constructor) name. Specified for `object` type values only.
|
1146
1148
|
optional string className
|
1147
1149
|
# Remote object value in case of primitive values or JSON values (if it was requested).
|
@@ -1203,6 +1205,8 @@ domain Runtime
|
|
1203
1205
|
dataview
|
1204
1206
|
webassemblymemory
|
1205
1207
|
wasmvalue
|
1208
|
+
# blink's subtypes.
|
1209
|
+
trustedtype
|
1206
1210
|
# String representation of the object.
|
1207
1211
|
optional string description
|
1208
1212
|
# True iff some of the properties or entries of the original object did not fit.
|
@@ -1252,6 +1256,8 @@ domain Runtime
|
|
1252
1256
|
dataview
|
1253
1257
|
webassemblymemory
|
1254
1258
|
wasmvalue
|
1259
|
+
# blink's subtypes.
|
1260
|
+
trustedtype
|
1255
1261
|
|
1256
1262
|
experimental type EntryPreview extends object
|
1257
1263
|
properties
|
package/types/protocol.d.ts
CHANGED
@@ -1683,6 +1683,7 @@ export namespace Protocol {
|
|
1683
1683
|
Dataview = 'dataview',
|
1684
1684
|
Webassemblymemory = 'webassemblymemory',
|
1685
1685
|
Wasmvalue = 'wasmvalue',
|
1686
|
+
Trustedtype = 'trustedtype',
|
1686
1687
|
}
|
1687
1688
|
|
1688
1689
|
/**
|
@@ -1698,7 +1699,7 @@ export namespace Protocol {
|
|
1698
1699
|
* NOTE: If you change anything here, make sure to also update
|
1699
1700
|
* `subtype` in `ObjectPreview` and `PropertyPreview` below.
|
1700
1701
|
*/
|
1701
|
-
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue');
|
1702
|
+
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue' | 'trustedtype');
|
1702
1703
|
/**
|
1703
1704
|
* Object class (constructor) name. Specified for `object` type values only.
|
1704
1705
|
*/
|
@@ -1784,6 +1785,7 @@ export namespace Protocol {
|
|
1784
1785
|
Dataview = 'dataview',
|
1785
1786
|
Webassemblymemory = 'webassemblymemory',
|
1786
1787
|
Wasmvalue = 'wasmvalue',
|
1788
|
+
Trustedtype = 'trustedtype',
|
1787
1789
|
}
|
1788
1790
|
|
1789
1791
|
/**
|
@@ -1798,7 +1800,7 @@ export namespace Protocol {
|
|
1798
1800
|
/**
|
1799
1801
|
* Object subtype hint. Specified for `object` type values only.
|
1800
1802
|
*/
|
1801
|
-
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue');
|
1803
|
+
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue' | 'trustedtype');
|
1802
1804
|
/**
|
1803
1805
|
* String representation of the object.
|
1804
1806
|
*/
|
@@ -1849,6 +1851,7 @@ export namespace Protocol {
|
|
1849
1851
|
Dataview = 'dataview',
|
1850
1852
|
Webassemblymemory = 'webassemblymemory',
|
1851
1853
|
Wasmvalue = 'wasmvalue',
|
1854
|
+
Trustedtype = 'trustedtype',
|
1852
1855
|
}
|
1853
1856
|
|
1854
1857
|
/**
|
@@ -1874,7 +1877,7 @@ export namespace Protocol {
|
|
1874
1877
|
/**
|
1875
1878
|
* Object subtype hint. Specified for `object` type values only.
|
1876
1879
|
*/
|
1877
|
-
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue');
|
1880
|
+
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue' | 'trustedtype');
|
1878
1881
|
}
|
1879
1882
|
|
1880
1883
|
/**
|
@@ -12256,6 +12259,11 @@ export namespace Protocol {
|
|
12256
12259
|
* @experimental
|
12257
12260
|
*/
|
12258
12261
|
isSameSite?: boolean;
|
12262
|
+
/**
|
12263
|
+
* True when the resource request is ad-related.
|
12264
|
+
* @experimental
|
12265
|
+
*/
|
12266
|
+
isAdRelated?: boolean;
|
12259
12267
|
}
|
12260
12268
|
|
12261
12269
|
/**
|