devtools-protocol 0.0.1087818 → 0.0.1088570

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.
@@ -2175,6 +2175,7 @@
2175
2175
  "protectedMediaIdentifier",
2176
2176
  "sensors",
2177
2177
  "storageAccess",
2178
+ "topLevelStorageAccess",
2178
2179
  "videoCapture",
2179
2180
  "videoCapturePanTiltZoom",
2180
2181
  "wakeLockScreen",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1087818",
3
+ "version": "0.0.1088570",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1092,6 +1092,7 @@ domain Browser
1092
1092
  protectedMediaIdentifier
1093
1093
  sensors
1094
1094
  storageAccess
1095
+ topLevelStorageAccess
1095
1096
  videoCapture
1096
1097
  videoCapturePanTiltZoom
1097
1098
  wakeLockScreen
@@ -3718,7 +3718,7 @@ export namespace Protocol {
3718
3718
  windowState?: WindowState;
3719
3719
  }
3720
3720
 
3721
- export type PermissionType = ('accessibilityEvents' | 'audioCapture' | 'backgroundSync' | 'backgroundFetch' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'flash' | 'geolocation' | 'idleDetection' | 'localFonts' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'protectedMediaIdentifier' | 'sensors' | 'storageAccess' | 'videoCapture' | 'videoCapturePanTiltZoom' | 'wakeLockScreen' | 'wakeLockSystem' | 'windowManagement');
3721
+ export type PermissionType = ('accessibilityEvents' | 'audioCapture' | 'backgroundSync' | 'backgroundFetch' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'flash' | 'geolocation' | 'idleDetection' | 'localFonts' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'protectedMediaIdentifier' | 'sensors' | 'storageAccess' | 'topLevelStorageAccess' | 'videoCapture' | 'videoCapturePanTiltZoom' | 'wakeLockScreen' | 'wakeLockSystem' | 'windowManagement');
3722
3722
 
3723
3723
  export type PermissionSetting = ('granted' | 'denied' | 'prompt');
3724
3724