devtools-protocol 0.0.1392711 → 0.0.1393284
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/js_protocol.json +10 -0
- package/package.json +1 -1
- package/pdl/js_protocol.pdl +4 -0
- package/types/protocol.d.ts +8 -0
package/json/js_protocol.json
CHANGED
@@ -1312,6 +1312,11 @@
|
|
1312
1312
|
"description": "Content hash of the script, SHA-256.",
|
1313
1313
|
"type": "string"
|
1314
1314
|
},
|
1315
|
+
{
|
1316
|
+
"name": "buildId",
|
1317
|
+
"description": "For Wasm modules, the content of the `build_id` custom section.",
|
1318
|
+
"type": "string"
|
1319
|
+
},
|
1315
1320
|
{
|
1316
1321
|
"name": "executionContextAuxData",
|
1317
1322
|
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
|
@@ -1416,6 +1421,11 @@
|
|
1416
1421
|
"description": "Content hash of the script, SHA-256.",
|
1417
1422
|
"type": "string"
|
1418
1423
|
},
|
1424
|
+
{
|
1425
|
+
"name": "buildId",
|
1426
|
+
"description": "For Wasm modules, the content of the `build_id` custom section.",
|
1427
|
+
"type": "string"
|
1428
|
+
},
|
1419
1429
|
{
|
1420
1430
|
"name": "executionContextAuxData",
|
1421
1431
|
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
|
package/package.json
CHANGED
package/pdl/js_protocol.pdl
CHANGED
@@ -641,6 +641,8 @@ domain Debugger
|
|
641
641
|
Runtime.ExecutionContextId executionContextId
|
642
642
|
# Content hash of the script, SHA-256.
|
643
643
|
string hash
|
644
|
+
# For Wasm modules, the content of the `build_id` custom section.
|
645
|
+
string buildId
|
644
646
|
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
645
647
|
optional object executionContextAuxData
|
646
648
|
# URL of source map associated with script (if any).
|
@@ -680,6 +682,8 @@ domain Debugger
|
|
680
682
|
Runtime.ExecutionContextId executionContextId
|
681
683
|
# Content hash of the script, SHA-256.
|
682
684
|
string hash
|
685
|
+
# For Wasm modules, the content of the `build_id` custom section.
|
686
|
+
string buildId
|
683
687
|
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
684
688
|
optional object executionContextAuxData
|
685
689
|
# True, if this script is generated as a result of the live edit operation.
|
package/types/protocol.d.ts
CHANGED
@@ -921,6 +921,10 @@ export namespace Protocol {
|
|
921
921
|
* Content hash of the script, SHA-256.
|
922
922
|
*/
|
923
923
|
hash: string;
|
924
|
+
/**
|
925
|
+
* For Wasm modules, the content of the `build_id` custom section.
|
926
|
+
*/
|
927
|
+
buildId: string;
|
924
928
|
/**
|
925
929
|
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
926
930
|
*/
|
@@ -996,6 +1000,10 @@ export namespace Protocol {
|
|
996
1000
|
* Content hash of the script, SHA-256.
|
997
1001
|
*/
|
998
1002
|
hash: string;
|
1003
|
+
/**
|
1004
|
+
* For Wasm modules, the content of the `build_id` custom section.
|
1005
|
+
*/
|
1006
|
+
buildId: string;
|
999
1007
|
/**
|
1000
1008
|
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
1001
1009
|
*/
|