devtools-protocol 0.0.1498597 → 0.0.1501779

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.
Files changed (55) hide show
  1. package/json/browser_protocol.json +17960 -17689
  2. package/json/js_protocol.json +6 -0
  3. package/package.json +1 -1
  4. package/pdl/browser_protocol.pdl +47 -13824
  5. package/pdl/domains/Accessibility.pdl +290 -0
  6. package/pdl/domains/Animation.pdl +195 -0
  7. package/pdl/domains/Audits.pdl +755 -0
  8. package/pdl/domains/Autofill.pdl +106 -0
  9. package/pdl/domains/BackgroundService.pdl +77 -0
  10. package/pdl/domains/BluetoothEmulation.pdl +227 -0
  11. package/pdl/domains/Browser.pdl +345 -0
  12. package/pdl/domains/CSS.pdl +996 -0
  13. package/pdl/domains/CacheStorage.pdl +125 -0
  14. package/pdl/domains/Cast.pdl +62 -0
  15. package/pdl/domains/DOM.pdl +932 -0
  16. package/pdl/domains/DOMDebugger.pdl +128 -0
  17. package/pdl/domains/DOMSnapshot.pdl +319 -0
  18. package/pdl/domains/DOMStorage.pdl +72 -0
  19. package/pdl/domains/DeviceAccess.pdl +43 -0
  20. package/pdl/domains/DeviceOrientation.pdl +20 -0
  21. package/pdl/domains/Emulation.pdl +608 -0
  22. package/pdl/domains/EventBreakpoints.pdl +24 -0
  23. package/pdl/domains/Extensions.pdl +72 -0
  24. package/pdl/domains/FedCm.pdl +100 -0
  25. package/pdl/domains/Fetch.pdl +251 -0
  26. package/pdl/domains/FileSystem.pdl +41 -0
  27. package/pdl/domains/HeadlessExperimental.pdl +56 -0
  28. package/pdl/domains/IO.pdl +45 -0
  29. package/pdl/domains/IndexedDB.pdl +226 -0
  30. package/pdl/domains/Input.pdl +336 -0
  31. package/pdl/domains/Inspector.pdl +25 -0
  32. package/pdl/domains/LayerTree.pdl +178 -0
  33. package/pdl/domains/Log.pdl +93 -0
  34. package/pdl/domains/Media.pdl +106 -0
  35. package/pdl/domains/Memory.pdl +112 -0
  36. package/pdl/domains/Network.pdl +2039 -0
  37. package/pdl/domains/Overlay.pdl +498 -0
  38. package/pdl/domains/PWA.pdl +142 -0
  39. package/pdl/domains/Page.pdl +1767 -0
  40. package/pdl/domains/Performance.pdl +54 -0
  41. package/pdl/domains/PerformanceTimeline.pdl +71 -0
  42. package/pdl/domains/Preload.pdl +290 -0
  43. package/pdl/domains/Security.pdl +196 -0
  44. package/pdl/domains/ServiceWorker.pdl +121 -0
  45. package/pdl/domains/Storage.pdl +913 -0
  46. package/pdl/domains/SystemInfo.pdl +145 -0
  47. package/pdl/domains/Target.pdl +327 -0
  48. package/pdl/domains/Tethering.pdl +28 -0
  49. package/pdl/domains/Tracing.pdl +157 -0
  50. package/pdl/domains/WebAudio.pdl +205 -0
  51. package/pdl/domains/WebAuthn.pdl +230 -0
  52. package/types/protocol-mapping.d.ts +992 -615
  53. package/types/protocol-proxy-api.d.ts +543 -522
  54. package/types/protocol-tests-proxy-api.d.ts +628 -607
  55. package/types/protocol.d.ts +8059 -7903
@@ -8,6 +8,7 @@
8
8
  "domain": "Console",
9
9
  "description": "This domain is deprecated - use Runtime or Log instead.",
10
10
  "deprecated": true,
11
+ "source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
11
12
  "dependencies": [
12
13
  "Runtime"
13
14
  ],
@@ -104,6 +105,7 @@
104
105
  {
105
106
  "domain": "Debugger",
106
107
  "description": "Debugger domain exposes JavaScript debugging capabilities. It allows setting and removing\nbreakpoints, stepping through execution, exploring stack traces, etc.",
108
+ "source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
107
109
  "dependencies": [
108
110
  "Runtime"
109
111
  ],
@@ -1535,6 +1537,7 @@
1535
1537
  {
1536
1538
  "domain": "HeapProfiler",
1537
1539
  "experimental": true,
1540
+ "source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
1538
1541
  "dependencies": [
1539
1542
  "Runtime"
1540
1543
  ],
@@ -1854,6 +1857,7 @@
1854
1857
  },
1855
1858
  {
1856
1859
  "domain": "Profiler",
1860
+ "source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
1857
1861
  "dependencies": [
1858
1862
  "Runtime",
1859
1863
  "Debugger"
@@ -2215,6 +2219,7 @@
2215
2219
  {
2216
2220
  "domain": "Runtime",
2217
2221
  "description": "Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror objects.\nEvaluation results are returned as mirror object that expose object type, string representation\nand unique identifier that can be used for further object reference. Original objects are\nmaintained in memory unless they are either explicitly released or are released along with the\nother objects in their object group.",
2222
+ "source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
2218
2223
  "types": [
2219
2224
  {
2220
2225
  "id": "ScriptId",
@@ -3761,6 +3766,7 @@
3761
3766
  "domain": "Schema",
3762
3767
  "description": "This domain is deprecated.",
3763
3768
  "deprecated": true,
3769
+ "source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
3764
3770
  "types": [
3765
3771
  {
3766
3772
  "id": "Domain",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1498597",
3
+ "version": "0.0.1501779",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",