devtools-protocol 0.0.1515189 → 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 +8 -1
- package/json/js_protocol.json +6 -3
- package/package.json +1 -1
- package/pdl/domains/Network.pdl +5 -0
- package/pdl/js_protocol.pdl +6 -0
- package/types/protocol-mapping.d.ts +5 -1
- package/types/protocol-proxy-api.d.ts +5 -1
- package/types/protocol-tests-proxy-api.d.ts +5 -1
- package/types/protocol.d.ts +19 -4
@@ -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
|
},
|
@@ -15927,7 +15934,7 @@
|
|
15927
15934
|
},
|
15928
15935
|
{
|
15929
15936
|
"name": "expires",
|
15930
|
-
"description": "Cookie expiration date as the number of seconds since the UNIX epoch.",
|
15937
|
+
"description": "Cookie expiration date as the number of seconds since the UNIX epoch.\nThe value is set to -1 if the expiry date is not set.\nThe value can be null for values that cannot be represented in\nJSON (\u00b1Inf).",
|
15931
15938
|
"type": "number"
|
15932
15939
|
},
|
15933
15940
|
{
|
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
|
@@ -622,6 +624,9 @@ domain Network
|
|
622
624
|
# Cookie path.
|
623
625
|
string path
|
624
626
|
# Cookie expiration date as the number of seconds since the UNIX epoch.
|
627
|
+
# The value is set to -1 if the expiry date is not set.
|
628
|
+
# The value can be null for values that cannot be represented in
|
629
|
+
# JSON (±Inf).
|
625
630
|
number expires
|
626
631
|
# Cookie size.
|
627
632
|
integer size
|
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
|
@@ -1,5 +1,9 @@
|
|
1
|
+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
1
5
|
/**********************************************************************
|
2
|
-
* Auto-generated by protocol-dts-generator.ts
|
6
|
+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
|
3
7
|
**********************************************************************/
|
4
8
|
|
5
9
|
import Protocol from './protocol'
|
@@ -1,5 +1,9 @@
|
|
1
|
+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
1
5
|
/**********************************************************************
|
2
|
-
* Auto-generated by protocol-dts-generator.ts
|
6
|
+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
|
3
7
|
**********************************************************************/
|
4
8
|
|
5
9
|
import Protocol from './protocol'
|
@@ -1,5 +1,9 @@
|
|
1
|
+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
1
5
|
/**********************************************************************
|
2
|
-
* Auto-generated by protocol-dts-generator.ts
|
6
|
+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
|
3
7
|
**********************************************************************/
|
4
8
|
|
5
9
|
import Protocol from './protocol'
|
package/types/protocol.d.ts
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
1
5
|
/**********************************************************************
|
2
|
-
* Auto-generated by protocol-dts-generator.ts
|
6
|
+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
|
3
7
|
**********************************************************************/
|
4
8
|
|
5
9
|
/**
|
@@ -1679,6 +1683,7 @@ export namespace Protocol {
|
|
1679
1683
|
Dataview = 'dataview',
|
1680
1684
|
Webassemblymemory = 'webassemblymemory',
|
1681
1685
|
Wasmvalue = 'wasmvalue',
|
1686
|
+
Trustedtype = 'trustedtype',
|
1682
1687
|
}
|
1683
1688
|
|
1684
1689
|
/**
|
@@ -1694,7 +1699,7 @@ export namespace Protocol {
|
|
1694
1699
|
* NOTE: If you change anything here, make sure to also update
|
1695
1700
|
* `subtype` in `ObjectPreview` and `PropertyPreview` below.
|
1696
1701
|
*/
|
1697
|
-
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');
|
1698
1703
|
/**
|
1699
1704
|
* Object class (constructor) name. Specified for `object` type values only.
|
1700
1705
|
*/
|
@@ -1780,6 +1785,7 @@ export namespace Protocol {
|
|
1780
1785
|
Dataview = 'dataview',
|
1781
1786
|
Webassemblymemory = 'webassemblymemory',
|
1782
1787
|
Wasmvalue = 'wasmvalue',
|
1788
|
+
Trustedtype = 'trustedtype',
|
1783
1789
|
}
|
1784
1790
|
|
1785
1791
|
/**
|
@@ -1794,7 +1800,7 @@ export namespace Protocol {
|
|
1794
1800
|
/**
|
1795
1801
|
* Object subtype hint. Specified for `object` type values only.
|
1796
1802
|
*/
|
1797
|
-
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');
|
1798
1804
|
/**
|
1799
1805
|
* String representation of the object.
|
1800
1806
|
*/
|
@@ -1845,6 +1851,7 @@ export namespace Protocol {
|
|
1845
1851
|
Dataview = 'dataview',
|
1846
1852
|
Webassemblymemory = 'webassemblymemory',
|
1847
1853
|
Wasmvalue = 'wasmvalue',
|
1854
|
+
Trustedtype = 'trustedtype',
|
1848
1855
|
}
|
1849
1856
|
|
1850
1857
|
/**
|
@@ -1870,7 +1877,7 @@ export namespace Protocol {
|
|
1870
1877
|
/**
|
1871
1878
|
* Object subtype hint. Specified for `object` type values only.
|
1872
1879
|
*/
|
1873
|
-
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');
|
1874
1881
|
}
|
1875
1882
|
|
1876
1883
|
/**
|
@@ -12252,6 +12259,11 @@ export namespace Protocol {
|
|
12252
12259
|
* @experimental
|
12253
12260
|
*/
|
12254
12261
|
isSameSite?: boolean;
|
12262
|
+
/**
|
12263
|
+
* True when the resource request is ad-related.
|
12264
|
+
* @experimental
|
12265
|
+
*/
|
12266
|
+
isAdRelated?: boolean;
|
12255
12267
|
}
|
12256
12268
|
|
12257
12269
|
/**
|
@@ -12744,6 +12756,9 @@ export namespace Protocol {
|
|
12744
12756
|
path: string;
|
12745
12757
|
/**
|
12746
12758
|
* Cookie expiration date as the number of seconds since the UNIX epoch.
|
12759
|
+
* The value is set to -1 if the expiry date is not set.
|
12760
|
+
* The value can be null for values that cannot be represented in
|
12761
|
+
* JSON (±Inf).
|
12747
12762
|
*/
|
12748
12763
|
expires: number;
|
12749
12764
|
/**
|