devtools-protocol 0.0.1227218 → 0.0.1231134
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 +24 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +10 -0
- package/types/protocol.d.ts +11 -3
@@ -12262,6 +12262,17 @@
|
|
12262
12262
|
"unspecifiedReason"
|
12263
12263
|
]
|
12264
12264
|
},
|
12265
|
+
{
|
12266
|
+
"id": "ServiceWorkerRouterInfo",
|
12267
|
+
"experimental": true,
|
12268
|
+
"type": "object",
|
12269
|
+
"properties": [
|
12270
|
+
{
|
12271
|
+
"name": "ruleIdMatched",
|
12272
|
+
"type": "integer"
|
12273
|
+
}
|
12274
|
+
]
|
12275
|
+
},
|
12265
12276
|
{
|
12266
12277
|
"id": "Response",
|
12267
12278
|
"description": "HTTP response data.",
|
@@ -12352,6 +12363,13 @@
|
|
12352
12363
|
"optional": true,
|
12353
12364
|
"type": "boolean"
|
12354
12365
|
},
|
12366
|
+
{
|
12367
|
+
"name": "serviceWorkerRouterInfo",
|
12368
|
+
"description": "Infomation about how Service Worker Static Router was used.",
|
12369
|
+
"experimental": true,
|
12370
|
+
"optional": true,
|
12371
|
+
"$ref": "ServiceWorkerRouterInfo"
|
12372
|
+
},
|
12355
12373
|
{
|
12356
12374
|
"name": "encodedDataLength",
|
12357
12375
|
"description": "Total number of bytes received for this request so far.",
|
@@ -16304,6 +16322,7 @@
|
|
16304
16322
|
"sync-xhr",
|
16305
16323
|
"unload",
|
16306
16324
|
"usb",
|
16325
|
+
"usb-unrestricted",
|
16307
16326
|
"vertical-scroll",
|
16308
16327
|
"web-printing",
|
16309
16328
|
"web-share",
|
@@ -24586,7 +24605,8 @@
|
|
24586
24605
|
"enum": [
|
24587
24606
|
"AccountChooser",
|
24588
24607
|
"AutoReauthn",
|
24589
|
-
"ConfirmIdpLogin"
|
24608
|
+
"ConfirmIdpLogin",
|
24609
|
+
"Error"
|
24590
24610
|
]
|
24591
24611
|
},
|
24592
24612
|
{
|
@@ -24594,7 +24614,9 @@
|
|
24594
24614
|
"description": "The buttons on the FedCM dialog.",
|
24595
24615
|
"type": "string",
|
24596
24616
|
"enum": [
|
24597
|
-
"ConfirmIdpLoginContinue"
|
24617
|
+
"ConfirmIdpLoginContinue",
|
24618
|
+
"ErrorGotIt",
|
24619
|
+
"ErrorMoreDetails"
|
24598
24620
|
]
|
24599
24621
|
},
|
24600
24622
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -5679,6 +5679,10 @@ domain Network
|
|
5679
5679
|
# This value is used when the reason is unknown.
|
5680
5680
|
unspecifiedReason
|
5681
5681
|
|
5682
|
+
experimental type ServiceWorkerRouterInfo extends object
|
5683
|
+
properties
|
5684
|
+
integer ruleIdMatched
|
5685
|
+
|
5682
5686
|
# HTTP response data.
|
5683
5687
|
type Response extends object
|
5684
5688
|
properties
|
@@ -5712,6 +5716,8 @@ domain Network
|
|
5712
5716
|
optional boolean fromServiceWorker
|
5713
5717
|
# Specifies that the request was served from the prefetch cache.
|
5714
5718
|
optional boolean fromPrefetchCache
|
5719
|
+
# Infomation about how Service Worker Static Router was used.
|
5720
|
+
experimental optional ServiceWorkerRouterInfo serviceWorkerRouterInfo
|
5715
5721
|
# Total number of bytes received for this request so far.
|
5716
5722
|
number encodedDataLength
|
5717
5723
|
# Timing information for the given request.
|
@@ -7645,6 +7651,7 @@ domain Page
|
|
7645
7651
|
sync-xhr
|
7646
7652
|
unload
|
7647
7653
|
usb
|
7654
|
+
usb-unrestricted
|
7648
7655
|
vertical-scroll
|
7649
7656
|
web-printing
|
7650
7657
|
web-share
|
@@ -11630,11 +11637,14 @@ experimental domain FedCm
|
|
11630
11637
|
AccountChooser
|
11631
11638
|
AutoReauthn
|
11632
11639
|
ConfirmIdpLogin
|
11640
|
+
Error
|
11633
11641
|
|
11634
11642
|
# The buttons on the FedCM dialog.
|
11635
11643
|
type DialogButton extends string
|
11636
11644
|
enum
|
11637
11645
|
ConfirmIdpLoginContinue
|
11646
|
+
ErrorGotIt
|
11647
|
+
ErrorMoreDetails
|
11638
11648
|
|
11639
11649
|
# Corresponds to IdentityRequestAccount
|
11640
11650
|
type Account extends object
|
package/types/protocol.d.ts
CHANGED
@@ -10239,6 +10239,10 @@ export namespace Protocol {
|
|
10239
10239
|
*/
|
10240
10240
|
export type AlternateProtocolUsage = ('alternativeJobWonWithoutRace' | 'alternativeJobWonRace' | 'mainJobWonRace' | 'mappingMissing' | 'broken' | 'dnsAlpnH3JobWonWithoutRace' | 'dnsAlpnH3JobWonRace' | 'unspecifiedReason');
|
10241
10241
|
|
10242
|
+
export interface ServiceWorkerRouterInfo {
|
10243
|
+
ruleIdMatched: integer;
|
10244
|
+
}
|
10245
|
+
|
10242
10246
|
/**
|
10243
10247
|
* HTTP response data.
|
10244
10248
|
*/
|
@@ -10303,6 +10307,10 @@ export namespace Protocol {
|
|
10303
10307
|
* Specifies that the request was served from the prefetch cache.
|
10304
10308
|
*/
|
10305
10309
|
fromPrefetchCache?: boolean;
|
10310
|
+
/**
|
10311
|
+
* Infomation about how Service Worker Static Router was used.
|
10312
|
+
*/
|
10313
|
+
serviceWorkerRouterInfo?: ServiceWorkerRouterInfo;
|
10306
10314
|
/**
|
10307
10315
|
* Total number of bytes received for this request so far.
|
10308
10316
|
*/
|
@@ -12891,7 +12899,7 @@ export namespace Protocol {
|
|
12891
12899
|
* All Permissions Policy features. This enum should match the one defined
|
12892
12900
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12893
12901
|
*/
|
12894
|
-
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-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-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-printing' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12902
|
+
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-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-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12895
12903
|
|
12896
12904
|
/**
|
12897
12905
|
* Reason for a permissions policy feature to be disabled.
|
@@ -17765,12 +17773,12 @@ export namespace Protocol {
|
|
17765
17773
|
/**
|
17766
17774
|
* The types of FedCM dialogs.
|
17767
17775
|
*/
|
17768
|
-
export type DialogType = ('AccountChooser' | 'AutoReauthn' | 'ConfirmIdpLogin');
|
17776
|
+
export type DialogType = ('AccountChooser' | 'AutoReauthn' | 'ConfirmIdpLogin' | 'Error');
|
17769
17777
|
|
17770
17778
|
/**
|
17771
17779
|
* The buttons on the FedCM dialog.
|
17772
17780
|
*/
|
17773
|
-
export type DialogButton = ('ConfirmIdpLoginContinue');
|
17781
|
+
export type DialogButton = ('ConfirmIdpLoginContinue' | 'ErrorGotIt' | 'ErrorMoreDetails');
|
17774
17782
|
|
17775
17783
|
/**
|
17776
17784
|
* Corresponds to IdentityRequestAccount
|