devtools-protocol 0.0.1358005 → 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.
@@ -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 WebASsembly, the source of debug symbols for the module.",
1458
+ "description": "If the scriptLanguage is WebAssembly, the source of debug symbols for the module.",
1460
1459
  "experimental": true,
1461
1460
  "optional": true,
1462
- "$ref": "Debugger.DebugSymbols"
1461
+ "type": "array",
1462
+ "items": {
1463
+ "$ref": "Debugger.DebugSymbols"
1464
+ }
1463
1465
  },
1464
1466
  {
1465
1467
  "name": "embedderName",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1358005",
3
+ "version": "0.0.1359167",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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 WebASsembly, the source of debug symbols for the module.
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
 
@@ -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: ('None' | 'SourceMap' | 'EmbeddedDWARF' | 'ExternalDWARF');
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 WebASsembly, the source of debug symbols for the module.
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
  */