devtools-protocol 0.0.1134390 → 0.0.1135726
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.
@@ -1461,7 +1461,8 @@
|
|
1461
1461
|
"OsTriggerIgnored",
|
1462
1462
|
"InvalidRegisterOsSourceHeader",
|
1463
1463
|
"InvalidRegisterOsTriggerHeader",
|
1464
|
-
"WebAndOsHeaders"
|
1464
|
+
"WebAndOsHeaders",
|
1465
|
+
"NoWebOrOsSupport"
|
1465
1466
|
]
|
1466
1467
|
},
|
1467
1468
|
{
|
@@ -10278,7 +10279,6 @@
|
|
10278
10279
|
{
|
10279
10280
|
"name": "compositingReasons",
|
10280
10281
|
"description": "A list of strings specifying reasons for the given layer to become composited.",
|
10281
|
-
"deprecated": true,
|
10282
10282
|
"type": "array",
|
10283
10283
|
"items": {
|
10284
10284
|
"type": "string"
|
@@ -15442,6 +15442,8 @@
|
|
15442
15442
|
"payment",
|
15443
15443
|
"picture-in-picture",
|
15444
15444
|
"private-aggregation",
|
15445
|
+
"private-state-token-issuance",
|
15446
|
+
"private-state-token-redemption",
|
15445
15447
|
"publickey-credentials-get",
|
15446
15448
|
"run-ad-auction",
|
15447
15449
|
"screen-wake-lock",
|
@@ -15452,7 +15454,6 @@
|
|
15452
15454
|
"smart-card",
|
15453
15455
|
"storage-access",
|
15454
15456
|
"sync-xhr",
|
15455
|
-
"trust-token-redemption",
|
15456
15457
|
"unload",
|
15457
15458
|
"usb",
|
15458
15459
|
"vertical-scroll",
|
@@ -19947,6 +19948,20 @@
|
|
19947
19948
|
"type": "string"
|
19948
19949
|
}
|
19949
19950
|
]
|
19951
|
+
},
|
19952
|
+
{
|
19953
|
+
"name": "runBounceTrackingMitigations",
|
19954
|
+
"description": "Deletes state for sites identified as potential bounce trackers, immediately.",
|
19955
|
+
"experimental": true,
|
19956
|
+
"returns": [
|
19957
|
+
{
|
19958
|
+
"name": "deletedSites",
|
19959
|
+
"type": "array",
|
19960
|
+
"items": {
|
19961
|
+
"type": "string"
|
19962
|
+
}
|
19963
|
+
}
|
19964
|
+
]
|
19950
19965
|
}
|
19951
19966
|
],
|
19952
19967
|
"events": [
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -716,6 +716,7 @@ experimental domain Audits
|
|
716
716
|
InvalidRegisterOsSourceHeader
|
717
717
|
InvalidRegisterOsTriggerHeader
|
718
718
|
WebAndOsHeaders
|
719
|
+
NoWebOrOsSupport
|
719
720
|
|
720
721
|
# Details for issues around "Attribution Reporting API" usage.
|
721
722
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
@@ -4667,7 +4668,7 @@ experimental domain LayerTree
|
|
4667
4668
|
LayerId layerId
|
4668
4669
|
returns
|
4669
4670
|
# A list of strings specifying reasons for the given layer to become composited.
|
4670
|
-
|
4671
|
+
array of string compositingReasons
|
4671
4672
|
# A list of strings specifying reason IDs for the given layer to become composited.
|
4672
4673
|
array of string compositingReasonIds
|
4673
4674
|
|
@@ -7227,6 +7228,8 @@ domain Page
|
|
7227
7228
|
payment
|
7228
7229
|
picture-in-picture
|
7229
7230
|
private-aggregation
|
7231
|
+
private-state-token-issuance
|
7232
|
+
private-state-token-redemption
|
7230
7233
|
publickey-credentials-get
|
7231
7234
|
run-ad-auction
|
7232
7235
|
screen-wake-lock
|
@@ -7237,7 +7240,6 @@ domain Page
|
|
7237
7240
|
smart-card
|
7238
7241
|
storage-access
|
7239
7242
|
sync-xhr
|
7240
|
-
trust-token-redemption
|
7241
7243
|
unload
|
7242
7244
|
usb
|
7243
7245
|
vertical-scroll
|
@@ -9383,6 +9385,11 @@ experimental domain Storage
|
|
9383
9385
|
string storageKey
|
9384
9386
|
string bucketName
|
9385
9387
|
|
9388
|
+
# Deletes state for sites identified as potential bounce trackers, immediately.
|
9389
|
+
experimental command runBounceTrackingMitigations
|
9390
|
+
returns
|
9391
|
+
array of string deletedSites
|
9392
|
+
|
9386
9393
|
# A cache's contents have been modified.
|
9387
9394
|
event cacheStorageContentUpdated
|
9388
9395
|
parameters
|
@@ -4221,6 +4221,13 @@ export namespace ProtocolMapping {
|
|
4221
4221
|
paramsType: [Protocol.Storage.DeleteStorageBucketRequest];
|
4222
4222
|
returnType: void;
|
4223
4223
|
};
|
4224
|
+
/**
|
4225
|
+
* Deletes state for sites identified as potential bounce trackers, immediately.
|
4226
|
+
*/
|
4227
|
+
'Storage.runBounceTrackingMitigations': {
|
4228
|
+
paramsType: [];
|
4229
|
+
returnType: Protocol.Storage.RunBounceTrackingMitigationsResponse;
|
4230
|
+
};
|
4224
4231
|
/**
|
4225
4232
|
* Returns information about the system.
|
4226
4233
|
*/
|
@@ -3375,6 +3375,11 @@ export namespace ProtocolProxyApi {
|
|
3375
3375
|
*/
|
3376
3376
|
deleteStorageBucket(params: Protocol.Storage.DeleteStorageBucketRequest): Promise<void>;
|
3377
3377
|
|
3378
|
+
/**
|
3379
|
+
* Deletes state for sites identified as potential bounce trackers, immediately.
|
3380
|
+
*/
|
3381
|
+
runBounceTrackingMitigations(): Promise<Protocol.Storage.RunBounceTrackingMitigationsResponse>;
|
3382
|
+
|
3378
3383
|
/**
|
3379
3384
|
* A cache's contents have been modified.
|
3380
3385
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -3410,7 +3410,7 @@ export namespace Protocol {
|
|
3410
3410
|
clientSecurityState?: Network.ClientSecurityState;
|
3411
3411
|
}
|
3412
3412
|
|
3413
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders');
|
3413
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport');
|
3414
3414
|
|
3415
3415
|
/**
|
3416
3416
|
* Details for issues around "Attribution Reporting API" usage.
|
@@ -12414,7 +12414,7 @@ export namespace Protocol {
|
|
12414
12414
|
* All Permissions Policy features. This enum should match the one defined
|
12415
12415
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12416
12416
|
*/
|
12417
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | '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' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | '
|
12417
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | '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-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12418
12418
|
|
12419
12419
|
/**
|
12420
12420
|
* Reason for a permissions policy feature to be disabled.
|
@@ -15033,6 +15033,10 @@ export namespace Protocol {
|
|
15033
15033
|
bucketName: string;
|
15034
15034
|
}
|
15035
15035
|
|
15036
|
+
export interface RunBounceTrackingMitigationsResponse {
|
15037
|
+
deletedSites: string[];
|
15038
|
+
}
|
15039
|
+
|
15036
15040
|
/**
|
15037
15041
|
* A cache's contents have been modified.
|
15038
15042
|
*/
|