devtools-protocol 0.0.1134181 → 0.0.1135028
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
|
{
|
@@ -15442,6 +15443,7 @@
|
|
15442
15443
|
"payment",
|
15443
15444
|
"picture-in-picture",
|
15444
15445
|
"private-aggregation",
|
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",
|
package/json/js_protocol.json
CHANGED
@@ -1294,7 +1294,7 @@
|
|
1294
1294
|
},
|
1295
1295
|
{
|
1296
1296
|
"name": "executionContextAuxData",
|
1297
|
-
"description": "Embedder-specific auxiliary data
|
1297
|
+
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
|
1298
1298
|
"optional": true,
|
1299
1299
|
"type": "object"
|
1300
1300
|
},
|
@@ -1398,7 +1398,7 @@
|
|
1398
1398
|
},
|
1399
1399
|
{
|
1400
1400
|
"name": "executionContextAuxData",
|
1401
|
-
"description": "Embedder-specific auxiliary data
|
1401
|
+
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
|
1402
1402
|
"optional": true,
|
1403
1403
|
"type": "object"
|
1404
1404
|
},
|
@@ -2668,7 +2668,7 @@
|
|
2668
2668
|
},
|
2669
2669
|
{
|
2670
2670
|
"name": "auxData",
|
2671
|
-
"description": "Embedder-specific auxiliary data
|
2671
|
+
"description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
|
2672
2672
|
"optional": true,
|
2673
2673
|
"type": "object"
|
2674
2674
|
}
|
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
|
@@ -7227,6 +7228,7 @@ domain Page
|
|
7227
7228
|
payment
|
7228
7229
|
picture-in-picture
|
7229
7230
|
private-aggregation
|
7231
|
+
private-state-token-redemption
|
7230
7232
|
publickey-credentials-get
|
7231
7233
|
run-ad-auction
|
7232
7234
|
screen-wake-lock
|
@@ -7237,7 +7239,6 @@ domain Page
|
|
7237
7239
|
smart-card
|
7238
7240
|
storage-access
|
7239
7241
|
sync-xhr
|
7240
|
-
trust-token-redemption
|
7241
7242
|
unload
|
7242
7243
|
usb
|
7243
7244
|
vertical-scroll
|
package/pdl/js_protocol.pdl
CHANGED
@@ -632,7 +632,7 @@ domain Debugger
|
|
632
632
|
Runtime.ExecutionContextId executionContextId
|
633
633
|
# Content hash of the script, SHA-256.
|
634
634
|
string hash
|
635
|
-
# Embedder-specific auxiliary data
|
635
|
+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
636
636
|
optional object executionContextAuxData
|
637
637
|
# URL of source map associated with script (if any).
|
638
638
|
optional string sourceMapURL
|
@@ -671,7 +671,7 @@ domain Debugger
|
|
671
671
|
Runtime.ExecutionContextId executionContextId
|
672
672
|
# Content hash of the script, SHA-256.
|
673
673
|
string hash
|
674
|
-
# Embedder-specific auxiliary data
|
674
|
+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
675
675
|
optional object executionContextAuxData
|
676
676
|
# True, if this script is generated as a result of the live edit operation.
|
677
677
|
experimental optional boolean isLiveEdit
|
@@ -1284,7 +1284,7 @@ domain Runtime
|
|
1284
1284
|
# multiple processes, so can be reliably used to identify specific context while backend
|
1285
1285
|
# performs a cross-process navigation.
|
1286
1286
|
experimental string uniqueId
|
1287
|
-
# Embedder-specific auxiliary data
|
1287
|
+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
1288
1288
|
optional object auxData
|
1289
1289
|
|
1290
1290
|
# Detailed information about exception (or error) that was thrown during script compilation or
|
package/types/protocol.d.ts
CHANGED
@@ -912,7 +912,7 @@ export namespace Protocol {
|
|
912
912
|
*/
|
913
913
|
hash: string;
|
914
914
|
/**
|
915
|
-
* Embedder-specific auxiliary data
|
915
|
+
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
916
916
|
*/
|
917
917
|
executionContextAuxData?: any;
|
918
918
|
/**
|
@@ -987,7 +987,7 @@ export namespace Protocol {
|
|
987
987
|
*/
|
988
988
|
hash: string;
|
989
989
|
/**
|
990
|
-
* Embedder-specific auxiliary data
|
990
|
+
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
991
991
|
*/
|
992
992
|
executionContextAuxData?: any;
|
993
993
|
/**
|
@@ -1900,7 +1900,7 @@ export namespace Protocol {
|
|
1900
1900
|
*/
|
1901
1901
|
uniqueId: string;
|
1902
1902
|
/**
|
1903
|
-
* Embedder-specific auxiliary data
|
1903
|
+
* Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
|
1904
1904
|
*/
|
1905
1905
|
auxData?: any;
|
1906
1906
|
}
|
@@ -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-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.
|