devtools-protocol 0.0.1032240 → 0.0.1034791
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.
@@ -1454,7 +1454,9 @@
|
|
1454
1454
|
"InvalidRegisterTriggerHeader",
|
1455
1455
|
"InvalidEligibleHeader",
|
1456
1456
|
"TooManyConcurrentRequests",
|
1457
|
-
"SourceAndTriggerHeaders"
|
1457
|
+
"SourceAndTriggerHeaders",
|
1458
|
+
"SourceIgnored",
|
1459
|
+
"TriggerIgnored"
|
1458
1460
|
]
|
1459
1461
|
},
|
1460
1462
|
{
|
@@ -3165,6 +3167,16 @@
|
|
3165
3167
|
"description": "The entire property range in the enclosing style declaration (if available).",
|
3166
3168
|
"optional": true,
|
3167
3169
|
"$ref": "SourceRange"
|
3170
|
+
},
|
3171
|
+
{
|
3172
|
+
"name": "longhandProperties",
|
3173
|
+
"description": "Parsed longhand components of this property if it is a shorthand.\nThis field will be empty if the given property is not a shorthand.",
|
3174
|
+
"experimental": true,
|
3175
|
+
"optional": true,
|
3176
|
+
"type": "array",
|
3177
|
+
"items": {
|
3178
|
+
"$ref": "CSSProperty"
|
3179
|
+
}
|
3168
3180
|
}
|
3169
3181
|
]
|
3170
3182
|
},
|
@@ -15271,6 +15283,7 @@
|
|
15271
15283
|
"storage-access-api",
|
15272
15284
|
"sync-xhr",
|
15273
15285
|
"trust-token-redemption",
|
15286
|
+
"unload",
|
15274
15287
|
"usb",
|
15275
15288
|
"vertical-scroll",
|
15276
15289
|
"web-share",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -709,6 +709,8 @@ experimental domain Audits
|
|
709
709
|
InvalidEligibleHeader
|
710
710
|
TooManyConcurrentRequests
|
711
711
|
SourceAndTriggerHeaders
|
712
|
+
SourceIgnored
|
713
|
+
TriggerIgnored
|
712
714
|
|
713
715
|
# Details for issues around "Attribution Reporting API" usage.
|
714
716
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
@@ -1535,6 +1537,9 @@ experimental domain CSS
|
|
1535
1537
|
optional boolean disabled
|
1536
1538
|
# The entire property range in the enclosing style declaration (if available).
|
1537
1539
|
optional SourceRange range
|
1540
|
+
# Parsed longhand components of this property if it is a shorthand.
|
1541
|
+
# This field will be empty if the given property is not a shorthand.
|
1542
|
+
experimental optional array of CSSProperty longhandProperties
|
1538
1543
|
|
1539
1544
|
# CSS media rule descriptor.
|
1540
1545
|
type CSSMedia extends object
|
@@ -7154,6 +7159,7 @@ domain Page
|
|
7154
7159
|
storage-access-api
|
7155
7160
|
sync-xhr
|
7156
7161
|
trust-token-redemption
|
7162
|
+
unload
|
7157
7163
|
usb
|
7158
7164
|
vertical-scroll
|
7159
7165
|
web-share
|
package/types/protocol.d.ts
CHANGED
@@ -3423,7 +3423,7 @@ export namespace Protocol {
|
|
3423
3423
|
clientSecurityState?: Network.ClientSecurityState;
|
3424
3424
|
}
|
3425
3425
|
|
3426
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders');
|
3426
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored');
|
3427
3427
|
|
3428
3428
|
/**
|
3429
3429
|
* Details for issues around "Attribution Reporting API" usage.
|
@@ -4431,6 +4431,11 @@ export namespace Protocol {
|
|
4431
4431
|
* The entire property range in the enclosing style declaration (if available).
|
4432
4432
|
*/
|
4433
4433
|
range?: SourceRange;
|
4434
|
+
/**
|
4435
|
+
* Parsed longhand components of this property if it is a shorthand.
|
4436
|
+
* This field will be empty if the given property is not a shorthand.
|
4437
|
+
*/
|
4438
|
+
longhandProperties?: CSSProperty[];
|
4434
4439
|
}
|
4435
4440
|
|
4436
4441
|
export const enum CSSMediaSource {
|
@@ -12308,7 +12313,7 @@ export namespace Protocol {
|
|
12308
12313
|
* All Permissions Policy features. This enum should match the one defined
|
12309
12314
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12310
12315
|
*/
|
12311
|
-
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-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' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'federated-credentials' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
|
12316
|
+
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-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' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'federated-credentials' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
|
12312
12317
|
|
12313
12318
|
/**
|
12314
12319
|
* Reason for a permissions policy feature to be disabled.
|