devtools-protocol 0.0.1068969 → 0.0.1070637

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.
@@ -2152,6 +2152,8 @@
2152
2152
  "durableStorage",
2153
2153
  "flash",
2154
2154
  "geolocation",
2155
+ "idleDetection",
2156
+ "localFonts",
2155
2157
  "midi",
2156
2158
  "midiSysex",
2157
2159
  "nfc",
@@ -2160,11 +2162,12 @@
2160
2162
  "periodicBackgroundSync",
2161
2163
  "protectedMediaIdentifier",
2162
2164
  "sensors",
2165
+ "storageAccess",
2163
2166
  "videoCapture",
2164
2167
  "videoCapturePanTiltZoom",
2165
- "idleDetection",
2166
2168
  "wakeLockScreen",
2167
- "wakeLockSystem"
2169
+ "wakeLockSystem",
2170
+ "windowManagement"
2168
2171
  ]
2169
2172
  },
2170
2173
  {
@@ -4369,6 +4372,11 @@
4369
4372
  "description": "Security origin of the cache.",
4370
4373
  "type": "string"
4371
4374
  },
4375
+ {
4376
+ "name": "storageKey",
4377
+ "description": "Storage key of the cache.",
4378
+ "type": "string"
4379
+ },
4372
4380
  {
4373
4381
  "name": "cacheName",
4374
4382
  "description": "The name of the cache.",
@@ -968,7 +968,7 @@
968
968
  },
969
969
  {
970
970
  "name": "setPauseOnExceptions",
971
- "description": "Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or\nno exceptions. Initial pause on exceptions state is `none`.",
971
+ "description": "Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions,\nor caught exceptions, no exceptions. Initial pause on exceptions state is `none`.",
972
972
  "parameters": [
973
973
  {
974
974
  "name": "state",
@@ -976,6 +976,7 @@
976
976
  "type": "string",
977
977
  "enum": [
978
978
  "none",
979
+ "caught",
979
980
  "uncaught",
980
981
  "all"
981
982
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1068969",
3
+ "version": "0.0.1070637",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1076,6 +1076,8 @@ domain Browser
1076
1076
  durableStorage
1077
1077
  flash
1078
1078
  geolocation
1079
+ idleDetection
1080
+ localFonts
1079
1081
  midi
1080
1082
  midiSysex
1081
1083
  nfc
@@ -1084,11 +1086,12 @@ domain Browser
1084
1086
  periodicBackgroundSync
1085
1087
  protectedMediaIdentifier
1086
1088
  sensors
1089
+ storageAccess
1087
1090
  videoCapture
1088
1091
  videoCapturePanTiltZoom
1089
- idleDetection
1090
1092
  wakeLockScreen
1091
1093
  wakeLockSystem
1094
+ windowManagement
1092
1095
 
1093
1096
  experimental type PermissionSetting extends string
1094
1097
  enum
@@ -2062,6 +2065,8 @@ experimental domain CacheStorage
2062
2065
  CacheId cacheId
2063
2066
  # Security origin of the cache.
2064
2067
  string securityOrigin
2068
+ # Storage key of the cache.
2069
+ string storageKey
2065
2070
  # The name of the cache.
2066
2071
  string cacheName
2067
2072
 
@@ -458,13 +458,14 @@ domain Debugger
458
458
  # New value for breakpoints active state.
459
459
  boolean active
460
460
 
461
- # Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or
462
- # no exceptions. Initial pause on exceptions state is `none`.
461
+ # Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions,
462
+ # or caught exceptions, no exceptions. Initial pause on exceptions state is `none`.
463
463
  command setPauseOnExceptions
464
464
  parameters
465
465
  # Pause on exceptions mode.
466
466
  enum state
467
467
  none
468
+ caught
468
469
  uncaught
469
470
  all
470
471
 
@@ -911,8 +911,8 @@ export namespace ProtocolMapping {
911
911
  returnType: void;
912
912
  };
913
913
  /**
914
- * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or
915
- * no exceptions. Initial pause on exceptions state is `none`.
914
+ * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions,
915
+ * or caught exceptions, no exceptions. Initial pause on exceptions state is `none`.
916
916
  */
917
917
  'Debugger.setPauseOnExceptions': {
918
918
  paramsType: [Protocol.Debugger.SetPauseOnExceptionsRequest];
@@ -272,8 +272,8 @@ export namespace ProtocolProxyApi {
272
272
  setBreakpointsActive(params: Protocol.Debugger.SetBreakpointsActiveRequest): Promise<void>;
273
273
 
274
274
  /**
275
- * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or
276
- * no exceptions. Initial pause on exceptions state is `none`.
275
+ * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions,
276
+ * or caught exceptions, no exceptions. Initial pause on exceptions state is `none`.
277
277
  */
278
278
  setPauseOnExceptions(params: Protocol.Debugger.SetPauseOnExceptionsRequest): Promise<void>;
279
279
 
@@ -688,6 +688,7 @@ export namespace Protocol {
688
688
 
689
689
  export const enum SetPauseOnExceptionsRequestState {
690
690
  None = 'none',
691
+ Caught = 'caught',
691
692
  Uncaught = 'uncaught',
692
693
  All = 'all',
693
694
  }
@@ -696,7 +697,7 @@ export namespace Protocol {
696
697
  /**
697
698
  * Pause on exceptions mode. (SetPauseOnExceptionsRequestState enum)
698
699
  */
699
- state: ('none' | 'uncaught' | 'all');
700
+ state: ('none' | 'caught' | 'uncaught' | 'all');
700
701
  }
701
702
 
702
703
  export interface SetReturnValueRequest {
@@ -3703,7 +3704,7 @@ export namespace Protocol {
3703
3704
  windowState?: WindowState;
3704
3705
  }
3705
3706
 
3706
- export type PermissionType = ('accessibilityEvents' | 'audioCapture' | 'backgroundSync' | 'backgroundFetch' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'flash' | 'geolocation' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'protectedMediaIdentifier' | 'sensors' | 'videoCapture' | 'videoCapturePanTiltZoom' | 'idleDetection' | 'wakeLockScreen' | 'wakeLockSystem');
3707
+ 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');
3707
3708
 
3708
3709
  export type PermissionSetting = ('granted' | 'denied');
3709
3710
 
@@ -5172,6 +5173,10 @@ export namespace Protocol {
5172
5173
  * Security origin of the cache.
5173
5174
  */
5174
5175
  securityOrigin: string;
5176
+ /**
5177
+ * Storage key of the cache.
5178
+ */
5179
+ storageKey: string;
5175
5180
  /**
5176
5181
  * The name of the cache.
5177
5182
  */