devtools-protocol 0.0.1078443 → 0.0.1079624

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.
@@ -2182,7 +2182,8 @@
2182
2182
  "type": "string",
2183
2183
  "enum": [
2184
2184
  "granted",
2185
- "denied"
2185
+ "denied",
2186
+ "prompt"
2186
2187
  ]
2187
2188
  },
2188
2189
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1078443",
3
+ "version": "0.0.1079624",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1100,6 +1100,7 @@ domain Browser
1100
1100
  enum
1101
1101
  granted
1102
1102
  denied
1103
+ prompt
1103
1104
 
1104
1105
  # Definition of PermissionDescriptor defined in the Permissions API:
1105
1106
  # https://w3c.github.io/permissions/#dictdef-permissiondescriptor.
@@ -3710,7 +3710,7 @@ export namespace Protocol {
3710
3710
 
3711
3711
  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');
3712
3712
 
3713
- export type PermissionSetting = ('granted' | 'denied');
3713
+ export type PermissionSetting = ('granted' | 'denied' | 'prompt');
3714
3714
 
3715
3715
  /**
3716
3716
  * Definition of PermissionDescriptor defined in the Permissions API: