devtools-protocol 0.0.1261483 → 0.0.1262051

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.
@@ -2554,6 +2554,7 @@
2554
2554
  "protectedMediaIdentifier",
2555
2555
  "sensors",
2556
2556
  "storageAccess",
2557
+ "speakerSelection",
2557
2558
  "topLevelStorageAccess",
2558
2559
  "videoCapture",
2559
2560
  "videoCapturePanTiltZoom",
@@ -12355,6 +12356,17 @@
12355
12356
  "unspecifiedReason"
12356
12357
  ]
12357
12358
  },
12359
+ {
12360
+ "id": "ServiceWorkerRouterSource",
12361
+ "description": "Source of service worker router.",
12362
+ "type": "string",
12363
+ "enum": [
12364
+ "network",
12365
+ "cache",
12366
+ "fetch-event",
12367
+ "race-network-and-fetch-handler"
12368
+ ]
12369
+ },
12358
12370
  {
12359
12371
  "id": "ServiceWorkerRouterInfo",
12360
12372
  "experimental": true,
@@ -12363,6 +12375,10 @@
12363
12375
  {
12364
12376
  "name": "ruleIdMatched",
12365
12377
  "type": "integer"
12378
+ },
12379
+ {
12380
+ "name": "matchedSourceType",
12381
+ "$ref": "ServiceWorkerRouterSource"
12366
12382
  }
12367
12383
  ]
12368
12384
  },
@@ -16499,6 +16515,7 @@
16499
16515
  "shared-storage",
16500
16516
  "shared-storage-select-url",
16501
16517
  "smart-card",
16518
+ "speaker-selection",
16502
16519
  "storage-access",
16503
16520
  "sub-apps",
16504
16521
  "sync-xhr",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1261483",
3
+ "version": "0.0.1262051",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1270,6 +1270,7 @@ domain Browser
1270
1270
  protectedMediaIdentifier
1271
1271
  sensors
1272
1272
  storageAccess
1273
+ speakerSelection
1273
1274
  topLevelStorageAccess
1274
1275
  videoCapture
1275
1276
  videoCapturePanTiltZoom
@@ -5736,9 +5737,18 @@ domain Network
5736
5737
  # This value is used when the reason is unknown.
5737
5738
  unspecifiedReason
5738
5739
 
5740
+ # Source of service worker router.
5741
+ type ServiceWorkerRouterSource extends string
5742
+ enum
5743
+ network
5744
+ cache
5745
+ fetch-event
5746
+ race-network-and-fetch-handler
5747
+
5739
5748
  experimental type ServiceWorkerRouterInfo extends object
5740
5749
  properties
5741
5750
  integer ruleIdMatched
5751
+ ServiceWorkerRouterSource matchedSourceType
5742
5752
 
5743
5753
  # HTTP response data.
5744
5754
  type Response extends object
@@ -7761,6 +7771,7 @@ domain Page
7761
7771
  shared-storage
7762
7772
  shared-storage-select-url
7763
7773
  smart-card
7774
+ speaker-selection
7764
7775
  storage-access
7765
7776
  sub-apps
7766
7777
  sync-xhr
@@ -4017,7 +4017,7 @@ export namespace Protocol {
4017
4017
  windowState?: WindowState;
4018
4018
  }
4019
4019
 
4020
- 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' | 'topLevelStorageAccess' | 'videoCapture' | 'videoCapturePanTiltZoom' | 'wakeLockScreen' | 'wakeLockSystem' | 'windowManagement');
4020
+ 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' | 'windowManagement');
4021
4021
 
4022
4022
  export type PermissionSetting = ('granted' | 'denied' | 'prompt');
4023
4023
 
@@ -10321,8 +10321,14 @@ export namespace Protocol {
10321
10321
  */
10322
10322
  export type AlternateProtocolUsage = ('alternativeJobWonWithoutRace' | 'alternativeJobWonRace' | 'mainJobWonRace' | 'mappingMissing' | 'broken' | 'dnsAlpnH3JobWonWithoutRace' | 'dnsAlpnH3JobWonRace' | 'unspecifiedReason');
10323
10323
 
10324
+ /**
10325
+ * Source of service worker router.
10326
+ */
10327
+ export type ServiceWorkerRouterSource = ('network' | 'cache' | 'fetch-event' | 'race-network-and-fetch-handler');
10328
+
10324
10329
  export interface ServiceWorkerRouterInfo {
10325
10330
  ruleIdMatched: integer;
10331
+ matchedSourceType: ServiceWorkerRouterSource;
10326
10332
  }
10327
10333
 
10328
10334
  /**
@@ -13039,7 +13045,7 @@ export namespace Protocol {
13039
13045
  * All Permissions Policy features. This enum should match the one defined
13040
13046
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
13041
13047
  */
13042
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factor' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
13048
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factor' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
13043
13049
 
13044
13050
  /**
13045
13051
  * Reason for a permissions policy feature to be disabled.