devtools-protocol 0.0.1260888 → 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.
- package/json/browser_protocol.json +36 -1
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +17 -1
- package/types/protocol.d.ts +14 -3
@@ -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",
|
@@ -20908,7 +20925,7 @@
|
|
20908
20925
|
]
|
20909
20926
|
},
|
20910
20927
|
{
|
20911
|
-
"id": "
|
20928
|
+
"id": "AttributionReportingAggregatableValueDictEntry",
|
20912
20929
|
"experimental": true,
|
20913
20930
|
"type": "object",
|
20914
20931
|
"properties": [
|
@@ -20923,6 +20940,24 @@
|
|
20923
20940
|
}
|
20924
20941
|
]
|
20925
20942
|
},
|
20943
|
+
{
|
20944
|
+
"id": "AttributionReportingAggregatableValueEntry",
|
20945
|
+
"experimental": true,
|
20946
|
+
"type": "object",
|
20947
|
+
"properties": [
|
20948
|
+
{
|
20949
|
+
"name": "values",
|
20950
|
+
"type": "array",
|
20951
|
+
"items": {
|
20952
|
+
"$ref": "AttributionReportingAggregatableValueDictEntry"
|
20953
|
+
}
|
20954
|
+
},
|
20955
|
+
{
|
20956
|
+
"name": "filters",
|
20957
|
+
"$ref": "AttributionReportingFilterPair"
|
20958
|
+
}
|
20959
|
+
]
|
20960
|
+
},
|
20926
20961
|
{
|
20927
20962
|
"id": "AttributionReportingEventTriggerData",
|
20928
20963
|
"experimental": true,
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
@@ -10198,13 +10209,18 @@ experimental domain Storage
|
|
10198
10209
|
include
|
10199
10210
|
exclude
|
10200
10211
|
|
10201
|
-
experimental type
|
10212
|
+
experimental type AttributionReportingAggregatableValueDictEntry extends object
|
10202
10213
|
properties
|
10203
10214
|
string key
|
10204
10215
|
# number instead of integer because not all uint32 can be represented by
|
10205
10216
|
# int
|
10206
10217
|
number value
|
10207
10218
|
|
10219
|
+
experimental type AttributionReportingAggregatableValueEntry extends object
|
10220
|
+
properties
|
10221
|
+
array of AttributionReportingAggregatableValueDictEntry values
|
10222
|
+
AttributionReportingFilterPair filters
|
10223
|
+
|
10208
10224
|
experimental type AttributionReportingEventTriggerData extends object
|
10209
10225
|
properties
|
10210
10226
|
UnsignedInt64AsBase10 data
|
package/types/protocol.d.ts
CHANGED
@@ -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.
|
@@ -15561,7 +15567,7 @@ export namespace Protocol {
|
|
15561
15567
|
|
15562
15568
|
export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
|
15563
15569
|
|
15564
|
-
export interface
|
15570
|
+
export interface AttributionReportingAggregatableValueDictEntry {
|
15565
15571
|
key: string;
|
15566
15572
|
/**
|
15567
15573
|
* number instead of integer because not all uint32 can be represented by
|
@@ -15570,6 +15576,11 @@ export namespace Protocol {
|
|
15570
15576
|
value: number;
|
15571
15577
|
}
|
15572
15578
|
|
15579
|
+
export interface AttributionReportingAggregatableValueEntry {
|
15580
|
+
values: AttributionReportingAggregatableValueDictEntry[];
|
15581
|
+
filters: AttributionReportingFilterPair;
|
15582
|
+
}
|
15583
|
+
|
15573
15584
|
export interface AttributionReportingEventTriggerData {
|
15574
15585
|
data: UnsignedInt64AsBase10;
|
15575
15586
|
priority: SignedInt64AsBase10;
|