devtools-protocol 0.0.1557841 → 0.0.1558402

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.
@@ -3469,7 +3469,9 @@
3469
3469
  "idleDetection",
3470
3470
  "keyboardLock",
3471
3471
  "localFonts",
3472
+ "localNetwork",
3472
3473
  "localNetworkAccess",
3474
+ "loopbackNetwork",
3473
3475
  "midi",
3474
3476
  "midiSysex",
3475
3477
  "nfc",
@@ -28040,6 +28042,13 @@
28040
28042
  "items": {
28041
28043
  "$ref": "Browser.BrowserContextID"
28042
28044
  }
28045
+ },
28046
+ {
28047
+ "name": "defaultBrowserContextId",
28048
+ "description": "The id of the default browser context if available.",
28049
+ "experimental": true,
28050
+ "optional": true,
28051
+ "$ref": "Browser.BrowserContextID"
28043
28052
  }
28044
28053
  ]
28045
28054
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1557841",
3
+ "version": "0.0.1558402",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -49,7 +49,9 @@ domain Browser
49
49
  idleDetection
50
50
  keyboardLock
51
51
  localFonts
52
+ localNetwork
52
53
  localNetworkAccess
54
+ loopbackNetwork
53
55
  midi
54
56
  midiSysex
55
57
  nfc
@@ -132,6 +132,8 @@ domain Target
132
132
  returns
133
133
  # An array of browser context ids.
134
134
  array of Browser.BrowserContextID browserContextIds
135
+ # The id of the default browser context if available.
136
+ experimental optional Browser.BrowserContextID defaultBrowserContextId
135
137
 
136
138
  # Creates a new page.
137
139
  command createTarget
@@ -4559,7 +4559,7 @@ export namespace Protocol {
4559
4559
  /**
4560
4560
  * @experimental
4561
4561
  */
4562
- export type PermissionType = ('ar' | 'audioCapture' | 'automaticFullscreen' | 'backgroundFetch' | 'backgroundSync' | 'cameraPanTiltZoom' | 'capturedSurfaceControl' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'geolocation' | 'handTracking' | 'idleDetection' | 'keyboardLock' | 'localFonts' | 'localNetworkAccess' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'pointerLock' | 'protectedMediaIdentifier' | 'sensors' | 'smartCard' | 'speakerSelection' | 'storageAccess' | 'topLevelStorageAccess' | 'videoCapture' | 'vr' | 'wakeLockScreen' | 'wakeLockSystem' | 'webAppInstallation' | 'webPrinting' | 'windowManagement');
4562
+ export type PermissionType = ('ar' | 'audioCapture' | 'automaticFullscreen' | 'backgroundFetch' | 'backgroundSync' | 'cameraPanTiltZoom' | 'capturedSurfaceControl' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'geolocation' | 'handTracking' | 'idleDetection' | 'keyboardLock' | 'localFonts' | 'localNetwork' | 'localNetworkAccess' | 'loopbackNetwork' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'pointerLock' | 'protectedMediaIdentifier' | 'sensors' | 'smartCard' | 'speakerSelection' | 'storageAccess' | 'topLevelStorageAccess' | 'videoCapture' | 'vr' | 'wakeLockScreen' | 'wakeLockSystem' | 'webAppInstallation' | 'webPrinting' | 'windowManagement');
4563
4563
 
4564
4564
  /**
4565
4565
  * @experimental
@@ -20244,6 +20244,11 @@ export namespace Protocol {
20244
20244
  * An array of browser context ids.
20245
20245
  */
20246
20246
  browserContextIds: Browser.BrowserContextID[];
20247
+ /**
20248
+ * The id of the default browser context if available.
20249
+ * @experimental
20250
+ */
20251
+ defaultBrowserContextId?: Browser.BrowserContextID;
20247
20252
  }
20248
20253
 
20249
20254
  export interface CreateTargetRequest {