devtools-protocol 0.0.1387316 → 0.0.1388031

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.
@@ -2787,18 +2787,21 @@
2787
2787
  "experimental": true,
2788
2788
  "type": "string",
2789
2789
  "enum": [
2790
- "accessibilityEvents",
2790
+ "ar",
2791
2791
  "audioCapture",
2792
- "backgroundSync",
2792
+ "automaticFullscreen",
2793
2793
  "backgroundFetch",
2794
+ "backgroundSync",
2795
+ "cameraPanTiltZoom",
2794
2796
  "capturedSurfaceControl",
2795
2797
  "clipboardReadWrite",
2796
2798
  "clipboardSanitizedWrite",
2797
2799
  "displayCapture",
2798
2800
  "durableStorage",
2799
- "flash",
2800
2801
  "geolocation",
2802
+ "handTracking",
2801
2803
  "idleDetection",
2804
+ "keyboardLock",
2802
2805
  "localFonts",
2803
2806
  "midi",
2804
2807
  "midiSysex",
@@ -2806,16 +2809,19 @@
2806
2809
  "notifications",
2807
2810
  "paymentHandler",
2808
2811
  "periodicBackgroundSync",
2812
+ "pointerLock",
2809
2813
  "protectedMediaIdentifier",
2810
2814
  "sensors",
2811
- "storageAccess",
2815
+ "smartCard",
2812
2816
  "speakerSelection",
2817
+ "storageAccess",
2813
2818
  "topLevelStorageAccess",
2814
2819
  "videoCapture",
2815
- "videoCapturePanTiltZoom",
2820
+ "vr",
2816
2821
  "wakeLockScreen",
2817
2822
  "wakeLockSystem",
2818
2823
  "webAppInstallation",
2824
+ "webPrinting",
2819
2825
  "windowManagement"
2820
2826
  ]
2821
2827
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1387316",
3
+ "version": "0.0.1388031",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1393,18 +1393,21 @@ domain Browser
1393
1393
 
1394
1394
  experimental type PermissionType extends string
1395
1395
  enum
1396
- accessibilityEvents
1396
+ ar
1397
1397
  audioCapture
1398
- backgroundSync
1398
+ automaticFullscreen
1399
1399
  backgroundFetch
1400
+ backgroundSync
1401
+ cameraPanTiltZoom
1400
1402
  capturedSurfaceControl
1401
1403
  clipboardReadWrite
1402
1404
  clipboardSanitizedWrite
1403
1405
  displayCapture
1404
1406
  durableStorage
1405
- flash
1406
1407
  geolocation
1408
+ handTracking
1407
1409
  idleDetection
1410
+ keyboardLock
1408
1411
  localFonts
1409
1412
  midi
1410
1413
  midiSysex
@@ -1412,16 +1415,19 @@ domain Browser
1412
1415
  notifications
1413
1416
  paymentHandler
1414
1417
  periodicBackgroundSync
1418
+ pointerLock
1415
1419
  protectedMediaIdentifier
1416
1420
  sensors
1417
- storageAccess
1421
+ smartCard
1418
1422
  speakerSelection
1423
+ storageAccess
1419
1424
  topLevelStorageAccess
1420
1425
  videoCapture
1421
- videoCapturePanTiltZoom
1426
+ vr
1422
1427
  wakeLockScreen
1423
1428
  wakeLockSystem
1424
1429
  webAppInstallation
1430
+ webPrinting
1425
1431
  windowManagement
1426
1432
 
1427
1433
  experimental type PermissionSetting extends string
@@ -4153,7 +4153,7 @@ export namespace Protocol {
4153
4153
  windowState?: WindowState;
4154
4154
  }
4155
4155
 
4156
- export type PermissionType = ('accessibilityEvents' | 'audioCapture' | 'backgroundSync' | 'backgroundFetch' | 'capturedSurfaceControl' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'flash' | 'geolocation' | 'idleDetection' | 'localFonts' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'protectedMediaIdentifier' | 'sensors' | 'storageAccess' | 'speakerSelection' | 'topLevelStorageAccess' | 'videoCapture' | 'videoCapturePanTiltZoom' | 'wakeLockScreen' | 'wakeLockSystem' | 'webAppInstallation' | 'windowManagement');
4156
+ export type PermissionType = ('ar' | 'audioCapture' | 'automaticFullscreen' | 'backgroundFetch' | 'backgroundSync' | 'cameraPanTiltZoom' | 'capturedSurfaceControl' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'geolocation' | 'handTracking' | 'idleDetection' | 'keyboardLock' | 'localFonts' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'pointerLock' | 'protectedMediaIdentifier' | 'sensors' | 'smartCard' | 'speakerSelection' | 'storageAccess' | 'topLevelStorageAccess' | 'videoCapture' | 'vr' | 'wakeLockScreen' | 'wakeLockSystem' | 'webAppInstallation' | 'webPrinting' | 'windowManagement');
4157
4157
 
4158
4158
  export type PermissionSetting = ('granted' | 'denied' | 'prompt');
4159
4159