devtools-protocol 0.0.1356896 → 0.0.1359167
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.
@@ -17194,6 +17194,7 @@
|
|
17194
17194
|
"deferred-fetch",
|
17195
17195
|
"digital-credentials-get",
|
17196
17196
|
"direct-sockets",
|
17197
|
+
"direct-sockets-private",
|
17197
17198
|
"display-capture",
|
17198
17199
|
"document-domain",
|
17199
17200
|
"encrypted-media",
|
package/json/js_protocol.json
CHANGED
@@ -374,7 +374,6 @@
|
|
374
374
|
"description": "Type of the debug symbols.",
|
375
375
|
"type": "string",
|
376
376
|
"enum": [
|
377
|
-
"None",
|
378
377
|
"SourceMap",
|
379
378
|
"EmbeddedDWARF",
|
380
379
|
"ExternalDWARF"
|
@@ -1456,10 +1455,13 @@
|
|
1456
1455
|
},
|
1457
1456
|
{
|
1458
1457
|
"name": "debugSymbols",
|
1459
|
-
"description": "If the scriptLanguage is
|
1458
|
+
"description": "If the scriptLanguage is WebAssembly, the source of debug symbols for the module.",
|
1460
1459
|
"experimental": true,
|
1461
1460
|
"optional": true,
|
1462
|
-
"
|
1461
|
+
"type": "array",
|
1462
|
+
"items": {
|
1463
|
+
"$ref": "Debugger.DebugSymbols"
|
1464
|
+
}
|
1463
1465
|
},
|
1464
1466
|
{
|
1465
1467
|
"name": "embedderName",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
package/pdl/js_protocol.pdl
CHANGED
@@ -606,7 +606,6 @@ domain Debugger
|
|
606
606
|
properties
|
607
607
|
# Type of the debug symbols.
|
608
608
|
enum type
|
609
|
-
None
|
610
609
|
SourceMap
|
611
610
|
EmbeddedDWARF
|
612
611
|
ExternalDWARF
|
@@ -689,8 +688,8 @@ domain Debugger
|
|
689
688
|
experimental optional integer codeOffset
|
690
689
|
# The language of the script.
|
691
690
|
experimental optional Debugger.ScriptLanguage scriptLanguage
|
692
|
-
# If the scriptLanguage is
|
693
|
-
experimental optional Debugger.DebugSymbols debugSymbols
|
691
|
+
# If the scriptLanguage is WebAssembly, the source of debug symbols for the module.
|
692
|
+
experimental optional array of Debugger.DebugSymbols debugSymbols
|
694
693
|
# The name the embedder supplied for this script.
|
695
694
|
experimental optional string embedderName
|
696
695
|
|
package/types/protocol.d.ts
CHANGED
@@ -270,7 +270,6 @@ export namespace Protocol {
|
|
270
270
|
export type ScriptLanguage = ('JavaScript' | 'WebAssembly');
|
271
271
|
|
272
272
|
export const enum DebugSymbolsType {
|
273
|
-
None = 'None',
|
274
273
|
SourceMap = 'SourceMap',
|
275
274
|
EmbeddedDWARF = 'EmbeddedDWARF',
|
276
275
|
ExternalDWARF = 'ExternalDWARF',
|
@@ -283,7 +282,7 @@ export namespace Protocol {
|
|
283
282
|
/**
|
284
283
|
* Type of the debug symbols. (DebugSymbolsType enum)
|
285
284
|
*/
|
286
|
-
type: ('
|
285
|
+
type: ('SourceMap' | 'EmbeddedDWARF' | 'ExternalDWARF');
|
287
286
|
/**
|
288
287
|
* URL of the external symbol source.
|
289
288
|
*/
|
@@ -1023,9 +1022,9 @@ export namespace Protocol {
|
|
1023
1022
|
*/
|
1024
1023
|
scriptLanguage?: Debugger.ScriptLanguage;
|
1025
1024
|
/**
|
1026
|
-
* If the scriptLanguage is
|
1025
|
+
* If the scriptLanguage is WebAssembly, the source of debug symbols for the module.
|
1027
1026
|
*/
|
1028
|
-
debugSymbols?: Debugger.DebugSymbols;
|
1027
|
+
debugSymbols?: Debugger.DebugSymbols[];
|
1029
1028
|
/**
|
1030
1029
|
* The name the embedder supplied for this script.
|
1031
1030
|
*/
|
@@ -13424,7 +13423,7 @@ export namespace Protocol {
|
|
13424
13423
|
* All Permissions Policy features. This enum should match the one defined
|
13425
13424
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
13426
13425
|
*/
|
13427
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'digital-credentials-get' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'xr-spatial-tracking');
|
13426
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'xr-spatial-tracking');
|
13428
13427
|
|
13429
13428
|
/**
|
13430
13429
|
* Reason for a permissions policy feature to be disabled.
|