devtools-protocol 0.0.1658499 → 0.0.1662358
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 +29 -62
- package/package.json +1 -1
- package/pdl/domains/Audits.pdl +12 -36
- package/pdl/domains/Network.pdl +0 -1
- package/pdl/domains/Page.pdl +0 -1
- package/types/protocol.d.ts +22 -18
|
@@ -1615,33 +1615,6 @@
|
|
|
1615
1615
|
}
|
|
1616
1616
|
]
|
|
1617
1617
|
},
|
|
1618
|
-
{
|
|
1619
|
-
"id": "AttributionReportingIssueType",
|
|
1620
|
-
"type": "string",
|
|
1621
|
-
"enum": [
|
|
1622
|
-
"PermissionPolicyDisabled",
|
|
1623
|
-
"UntrustworthyReportingOrigin",
|
|
1624
|
-
"InsecureContext",
|
|
1625
|
-
"InvalidHeader",
|
|
1626
|
-
"InvalidRegisterTriggerHeader",
|
|
1627
|
-
"SourceAndTriggerHeaders",
|
|
1628
|
-
"SourceIgnored",
|
|
1629
|
-
"TriggerIgnored",
|
|
1630
|
-
"OsSourceIgnored",
|
|
1631
|
-
"OsTriggerIgnored",
|
|
1632
|
-
"InvalidRegisterOsSourceHeader",
|
|
1633
|
-
"InvalidRegisterOsTriggerHeader",
|
|
1634
|
-
"WebAndOsHeaders",
|
|
1635
|
-
"NoWebOrOsSupport",
|
|
1636
|
-
"NavigationRegistrationWithoutTransientUserActivation",
|
|
1637
|
-
"InvalidInfoHeader",
|
|
1638
|
-
"NoRegisterSourceHeader",
|
|
1639
|
-
"NoRegisterTriggerHeader",
|
|
1640
|
-
"NoRegisterOsSourceHeader",
|
|
1641
|
-
"NoRegisterOsTriggerHeader",
|
|
1642
|
-
"NavigationRegistrationUniqueScopeAlreadySet"
|
|
1643
|
-
]
|
|
1644
|
-
},
|
|
1645
1618
|
{
|
|
1646
1619
|
"id": "SharedDictionaryError",
|
|
1647
1620
|
"type": "string",
|
|
@@ -1727,32 +1700,6 @@
|
|
|
1727
1700
|
"InvalidUrlPattern"
|
|
1728
1701
|
]
|
|
1729
1702
|
},
|
|
1730
|
-
{
|
|
1731
|
-
"id": "AttributionReportingIssueDetails",
|
|
1732
|
-
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
|
|
1733
|
-
"type": "object",
|
|
1734
|
-
"properties": [
|
|
1735
|
-
{
|
|
1736
|
-
"name": "violationType",
|
|
1737
|
-
"$ref": "AttributionReportingIssueType"
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
"name": "request",
|
|
1741
|
-
"optional": true,
|
|
1742
|
-
"$ref": "AffectedRequest"
|
|
1743
|
-
},
|
|
1744
|
-
{
|
|
1745
|
-
"name": "violatingNodeId",
|
|
1746
|
-
"optional": true,
|
|
1747
|
-
"$ref": "DOM.BackendNodeId"
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
"name": "invalidParameter",
|
|
1751
|
-
"optional": true,
|
|
1752
|
-
"type": "string"
|
|
1753
|
-
}
|
|
1754
|
-
]
|
|
1755
|
-
},
|
|
1756
1703
|
{
|
|
1757
1704
|
"id": "QuirksModeIssueDetails",
|
|
1758
1705
|
"description": "Details for issues about documents in Quirks Mode\nor Limited Quirks Mode that affects page layouting.",
|
|
@@ -2443,6 +2390,28 @@
|
|
|
2443
2390
|
}
|
|
2444
2391
|
]
|
|
2445
2392
|
},
|
|
2393
|
+
{
|
|
2394
|
+
"id": "LazyLoadImageIssueDetails",
|
|
2395
|
+
"description": "Details for issues about lazy-loaded images without explicit dimensions.",
|
|
2396
|
+
"type": "object",
|
|
2397
|
+
"properties": [
|
|
2398
|
+
{
|
|
2399
|
+
"name": "nodeId",
|
|
2400
|
+
"description": "DOM node of the problematic HTMLImageElement.",
|
|
2401
|
+
"$ref": "DOM.BackendNodeId"
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"name": "url",
|
|
2405
|
+
"description": "URL or src attribute of the image.",
|
|
2406
|
+
"type": "string"
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
"name": "frameId",
|
|
2410
|
+
"description": "Frame containing the image.",
|
|
2411
|
+
"$ref": "Page.FrameId"
|
|
2412
|
+
}
|
|
2413
|
+
]
|
|
2414
|
+
},
|
|
2446
2415
|
{
|
|
2447
2416
|
"id": "InspectorIssueCode",
|
|
2448
2417
|
"description": "A unique identifier for the type of issue. Each type may use one of the\noptional fields in InspectorIssueDetails to convey more specific\ninformation about the kind of issue.",
|
|
@@ -2455,7 +2424,6 @@
|
|
|
2455
2424
|
"ContentSecurityPolicyIssue",
|
|
2456
2425
|
"SharedArrayBufferIssue",
|
|
2457
2426
|
"CorsIssue",
|
|
2458
|
-
"AttributionReportingIssue",
|
|
2459
2427
|
"QuirksModeIssue",
|
|
2460
2428
|
"PartitioningBlobURLIssue",
|
|
2461
2429
|
"NavigatorUserAgentIssue",
|
|
@@ -2477,7 +2445,8 @@
|
|
|
2477
2445
|
"PermissionElementIssue",
|
|
2478
2446
|
"PerformanceIssue",
|
|
2479
2447
|
"SelectivePermissionsInterventionIssue",
|
|
2480
|
-
"EmailVerificationRequestIssue"
|
|
2448
|
+
"EmailVerificationRequestIssue",
|
|
2449
|
+
"LazyLoadImageIssue"
|
|
2481
2450
|
]
|
|
2482
2451
|
},
|
|
2483
2452
|
{
|
|
@@ -2520,11 +2489,6 @@
|
|
|
2520
2489
|
"optional": true,
|
|
2521
2490
|
"$ref": "CorsIssueDetails"
|
|
2522
2491
|
},
|
|
2523
|
-
{
|
|
2524
|
-
"name": "attributionReportingIssueDetails",
|
|
2525
|
-
"optional": true,
|
|
2526
|
-
"$ref": "AttributionReportingIssueDetails"
|
|
2527
|
-
},
|
|
2528
2492
|
{
|
|
2529
2493
|
"name": "quirksModeIssueDetails",
|
|
2530
2494
|
"optional": true,
|
|
@@ -2635,6 +2599,11 @@
|
|
|
2635
2599
|
"name": "emailVerificationRequestIssueDetails",
|
|
2636
2600
|
"optional": true,
|
|
2637
2601
|
"$ref": "EmailVerificationRequestIssueDetails"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"name": "lazyLoadImageIssueDetails",
|
|
2605
|
+
"optional": true,
|
|
2606
|
+
"$ref": "LazyLoadImageIssueDetails"
|
|
2638
2607
|
}
|
|
2639
2608
|
]
|
|
2640
2609
|
},
|
|
@@ -18228,7 +18197,6 @@
|
|
|
18228
18197
|
"InitializedService",
|
|
18229
18198
|
"Unreachable",
|
|
18230
18199
|
"ServerError",
|
|
18231
|
-
"RefreshQuotaExceeded",
|
|
18232
18200
|
"FatalError",
|
|
18233
18201
|
"SigningQuotaExceeded",
|
|
18234
18202
|
"RefreshedAsWaiter",
|
|
@@ -22000,7 +21968,6 @@
|
|
|
22000
21968
|
"all-screens-capture",
|
|
22001
21969
|
"ambient-light-sensor",
|
|
22002
21970
|
"aria-notify",
|
|
22003
|
-
"attribution-reporting",
|
|
22004
21971
|
"autofill",
|
|
22005
21972
|
"autoplay",
|
|
22006
21973
|
"bluetooth",
|
package/package.json
CHANGED
package/pdl/domains/Audits.pdl
CHANGED
|
@@ -270,31 +270,6 @@ experimental domain Audits
|
|
|
270
270
|
optional Network.IPAddressSpace resourceIPAddressSpace
|
|
271
271
|
optional Network.ClientSecurityState clientSecurityState
|
|
272
272
|
|
|
273
|
-
type AttributionReportingIssueType extends string
|
|
274
|
-
enum
|
|
275
|
-
PermissionPolicyDisabled
|
|
276
|
-
UntrustworthyReportingOrigin
|
|
277
|
-
InsecureContext
|
|
278
|
-
# TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
|
|
279
|
-
InvalidHeader
|
|
280
|
-
InvalidRegisterTriggerHeader
|
|
281
|
-
SourceAndTriggerHeaders
|
|
282
|
-
SourceIgnored
|
|
283
|
-
TriggerIgnored
|
|
284
|
-
OsSourceIgnored
|
|
285
|
-
OsTriggerIgnored
|
|
286
|
-
InvalidRegisterOsSourceHeader
|
|
287
|
-
InvalidRegisterOsTriggerHeader
|
|
288
|
-
WebAndOsHeaders
|
|
289
|
-
NoWebOrOsSupport
|
|
290
|
-
NavigationRegistrationWithoutTransientUserActivation
|
|
291
|
-
InvalidInfoHeader
|
|
292
|
-
NoRegisterSourceHeader
|
|
293
|
-
NoRegisterTriggerHeader
|
|
294
|
-
NoRegisterOsSourceHeader
|
|
295
|
-
NoRegisterOsTriggerHeader
|
|
296
|
-
NavigationRegistrationUniqueScopeAlreadySet
|
|
297
|
-
|
|
298
273
|
type SharedDictionaryError extends string
|
|
299
274
|
enum
|
|
300
275
|
UseErrorCrossOriginNoCorsRequest
|
|
@@ -368,15 +343,6 @@ experimental domain Audits
|
|
|
368
343
|
ReportingEndpointNotToken
|
|
369
344
|
InvalidUrlPattern
|
|
370
345
|
|
|
371
|
-
# Details for issues around "Attribution Reporting API" usage.
|
|
372
|
-
# Explainer: https://github.com/WICG/attribution-reporting-api
|
|
373
|
-
type AttributionReportingIssueDetails extends object
|
|
374
|
-
properties
|
|
375
|
-
AttributionReportingIssueType violationType
|
|
376
|
-
optional AffectedRequest request
|
|
377
|
-
optional DOM.BackendNodeId violatingNodeId
|
|
378
|
-
optional string invalidParameter
|
|
379
|
-
|
|
380
346
|
# Details for issues about documents in Quirks Mode
|
|
381
347
|
# or Limited Quirks Mode that affects page layouting.
|
|
382
348
|
type QuirksModeIssueDetails extends object
|
|
@@ -778,6 +744,16 @@ experimental domain Audits
|
|
|
778
744
|
# The stack trace at the time of the intervention.
|
|
779
745
|
optional Runtime.StackTrace stackTrace
|
|
780
746
|
|
|
747
|
+
# Details for issues about lazy-loaded images without explicit dimensions.
|
|
748
|
+
type LazyLoadImageIssueDetails extends object
|
|
749
|
+
properties
|
|
750
|
+
# DOM node of the problematic HTMLImageElement.
|
|
751
|
+
DOM.BackendNodeId nodeId
|
|
752
|
+
# URL or src attribute of the image.
|
|
753
|
+
string url
|
|
754
|
+
# Frame containing the image.
|
|
755
|
+
Page.FrameId frameId
|
|
756
|
+
|
|
781
757
|
# A unique identifier for the type of issue. Each type may use one of the
|
|
782
758
|
# optional fields in InspectorIssueDetails to convey more specific
|
|
783
759
|
# information about the kind of issue.
|
|
@@ -790,7 +766,6 @@ experimental domain Audits
|
|
|
790
766
|
ContentSecurityPolicyIssue
|
|
791
767
|
SharedArrayBufferIssue
|
|
792
768
|
CorsIssue
|
|
793
|
-
AttributionReportingIssue
|
|
794
769
|
QuirksModeIssue
|
|
795
770
|
PartitioningBlobURLIssue
|
|
796
771
|
# Deprecated
|
|
@@ -814,6 +789,7 @@ experimental domain Audits
|
|
|
814
789
|
PerformanceIssue
|
|
815
790
|
SelectivePermissionsInterventionIssue
|
|
816
791
|
EmailVerificationRequestIssue
|
|
792
|
+
LazyLoadImageIssue
|
|
817
793
|
|
|
818
794
|
# This struct holds a list of optional fields with additional information
|
|
819
795
|
# specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -827,7 +803,6 @@ experimental domain Audits
|
|
|
827
803
|
optional ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails
|
|
828
804
|
optional SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails
|
|
829
805
|
optional CorsIssueDetails corsIssueDetails
|
|
830
|
-
optional AttributionReportingIssueDetails attributionReportingIssueDetails
|
|
831
806
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
|
832
807
|
optional PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails
|
|
833
808
|
deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
|
@@ -850,6 +825,7 @@ experimental domain Audits
|
|
|
850
825
|
optional PerformanceIssueDetails performanceIssueDetails
|
|
851
826
|
optional SelectivePermissionsInterventionIssueDetails selectivePermissionsInterventionIssueDetails
|
|
852
827
|
optional EmailVerificationRequestIssueDetails emailVerificationRequestIssueDetails
|
|
828
|
+
optional LazyLoadImageIssueDetails lazyLoadImageIssueDetails
|
|
853
829
|
|
|
854
830
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
855
831
|
# exceptions, CDP message, console messages, etc.) to reference an issue.
|
package/pdl/domains/Network.pdl
CHANGED
package/pdl/domains/Page.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
|
@@ -3713,8 +3713,6 @@ export namespace Protocol {
|
|
|
3713
3713
|
clientSecurityState?: Network.ClientSecurityState;
|
|
3714
3714
|
}
|
|
3715
3715
|
|
|
3716
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation' | 'InvalidInfoHeader' | 'NoRegisterSourceHeader' | 'NoRegisterTriggerHeader' | 'NoRegisterOsSourceHeader' | 'NoRegisterOsTriggerHeader' | 'NavigationRegistrationUniqueScopeAlreadySet');
|
|
3717
|
-
|
|
3718
3716
|
export type SharedDictionaryError = ('UseErrorCrossOriginNoCorsRequest' | 'UseErrorDictionaryLoadFailure' | 'UseErrorMatchingDictionaryNotUsed' | 'UseErrorUnexpectedContentDictionaryHeader' | 'WriteErrorCossOriginNoCorsRequest' | 'WriteErrorDisallowedBySettings' | 'WriteErrorExpiredResponse' | 'WriteErrorFeatureDisabled' | 'WriteErrorInsufficientResources' | 'WriteErrorInvalidMatchField' | 'WriteErrorInvalidStructuredHeader' | 'WriteErrorInvalidTTLField' | 'WriteErrorNavigationRequest' | 'WriteErrorNoMatchField' | 'WriteErrorNonIntegerTTLField' | 'WriteErrorNonListMatchDestField' | 'WriteErrorNonSecureContext' | 'WriteErrorNonStringIdField' | 'WriteErrorNonStringInMatchDestList' | 'WriteErrorInvalidMatchDestList' | 'WriteErrorNonStringMatchField' | 'WriteErrorNonTokenTypeField' | 'WriteErrorRequestAborted' | 'WriteErrorShuttingDown' | 'WriteErrorTooLongIdField' | 'WriteErrorUnsupportedType');
|
|
3719
3717
|
|
|
3720
3718
|
export type SRIMessageSignatureError = ('MissingSignatureHeader' | 'MissingSignatureInputHeader' | 'InvalidSignatureHeader' | 'InvalidSignatureInputHeader' | 'SignatureHeaderValueIsNotByteSequence' | 'SignatureHeaderValueIsParameterized' | 'SignatureHeaderValueIsIncorrectLength' | 'SignatureInputHeaderMissingLabel' | 'SignatureInputHeaderValueNotInnerList' | 'SignatureInputHeaderValueMissingComponents' | 'SignatureInputHeaderInvalidComponentType' | 'SignatureInputHeaderInvalidComponentName' | 'SignatureInputHeaderInvalidHeaderComponentParameter' | 'SignatureInputHeaderInvalidDerivedComponentParameter' | 'SignatureInputHeaderKeyIdLength' | 'SignatureInputHeaderInvalidParameter' | 'SignatureInputHeaderMissingRequiredParameters' | 'ValidationFailedSignatureExpired' | 'ValidationFailedInvalidLength' | 'ValidationFailedSignatureMismatch' | 'ValidationFailedIntegrityMismatch' | 'SignatureBaseUnknownDerivedComponent' | 'SignatureBaseMissingHeader' | 'SignatureBaseInvalidUnencodedDigest' | 'SignatureBaseUnsupportedComponent');
|
|
@@ -3723,17 +3721,6 @@ export namespace Protocol {
|
|
|
3723
3721
|
|
|
3724
3722
|
export type ConnectionAllowlistError = ('InvalidHeader' | 'MoreThanOneList' | 'ItemNotInnerList' | 'InvalidAllowlistItemType' | 'ReportingEndpointNotToken' | 'InvalidUrlPattern');
|
|
3725
3723
|
|
|
3726
|
-
/**
|
|
3727
|
-
* Details for issues around "Attribution Reporting API" usage.
|
|
3728
|
-
* Explainer: https://github.com/WICG/attribution-reporting-api
|
|
3729
|
-
*/
|
|
3730
|
-
export interface AttributionReportingIssueDetails {
|
|
3731
|
-
violationType: AttributionReportingIssueType;
|
|
3732
|
-
request?: AffectedRequest;
|
|
3733
|
-
violatingNodeId?: DOM.BackendNodeId;
|
|
3734
|
-
invalidParameter?: string;
|
|
3735
|
-
}
|
|
3736
|
-
|
|
3737
3724
|
/**
|
|
3738
3725
|
* Details for issues about documents in Quirks Mode
|
|
3739
3726
|
* or Limited Quirks Mode that affects page layouting.
|
|
@@ -4031,12 +4018,30 @@ export namespace Protocol {
|
|
|
4031
4018
|
stackTrace?: Runtime.StackTrace;
|
|
4032
4019
|
}
|
|
4033
4020
|
|
|
4021
|
+
/**
|
|
4022
|
+
* Details for issues about lazy-loaded images without explicit dimensions.
|
|
4023
|
+
*/
|
|
4024
|
+
export interface LazyLoadImageIssueDetails {
|
|
4025
|
+
/**
|
|
4026
|
+
* DOM node of the problematic HTMLImageElement.
|
|
4027
|
+
*/
|
|
4028
|
+
nodeId: DOM.BackendNodeId;
|
|
4029
|
+
/**
|
|
4030
|
+
* URL or src attribute of the image.
|
|
4031
|
+
*/
|
|
4032
|
+
url: string;
|
|
4033
|
+
/**
|
|
4034
|
+
* Frame containing the image.
|
|
4035
|
+
*/
|
|
4036
|
+
frameId: Page.FrameId;
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4034
4039
|
/**
|
|
4035
4040
|
* A unique identifier for the type of issue. Each type may use one of the
|
|
4036
4041
|
* optional fields in InspectorIssueDetails to convey more specific
|
|
4037
4042
|
* information about the kind of issue.
|
|
4038
4043
|
*/
|
|
4039
|
-
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'CorsIssue' | '
|
|
4044
|
+
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'CorsIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'ElementAccessibilityIssue' | 'SRIMessageSignatureIssue' | 'UnencodedDigestIssue' | 'ConnectionAllowlistIssue' | 'UserReidentificationIssue' | 'PermissionElementIssue' | 'PerformanceIssue' | 'SelectivePermissionsInterventionIssue' | 'EmailVerificationRequestIssue' | 'LazyLoadImageIssue');
|
|
4040
4045
|
|
|
4041
4046
|
/**
|
|
4042
4047
|
* This struct holds a list of optional fields with additional information
|
|
@@ -4051,7 +4056,6 @@ export namespace Protocol {
|
|
|
4051
4056
|
contentSecurityPolicyIssueDetails?: ContentSecurityPolicyIssueDetails;
|
|
4052
4057
|
sharedArrayBufferIssueDetails?: SharedArrayBufferIssueDetails;
|
|
4053
4058
|
corsIssueDetails?: CorsIssueDetails;
|
|
4054
|
-
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
4055
4059
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
4056
4060
|
partitioningBlobURLIssueDetails?: PartitioningBlobURLIssueDetails;
|
|
4057
4061
|
/**
|
|
@@ -4077,6 +4081,7 @@ export namespace Protocol {
|
|
|
4077
4081
|
performanceIssueDetails?: PerformanceIssueDetails;
|
|
4078
4082
|
selectivePermissionsInterventionIssueDetails?: SelectivePermissionsInterventionIssueDetails;
|
|
4079
4083
|
emailVerificationRequestIssueDetails?: EmailVerificationRequestIssueDetails;
|
|
4084
|
+
lazyLoadImageIssueDetails?: LazyLoadImageIssueDetails;
|
|
4080
4085
|
}
|
|
4081
4086
|
|
|
4082
4087
|
/**
|
|
@@ -14230,7 +14235,6 @@ export namespace Protocol {
|
|
|
14230
14235
|
InitializedService = 'InitializedService',
|
|
14231
14236
|
Unreachable = 'Unreachable',
|
|
14232
14237
|
ServerError = 'ServerError',
|
|
14233
|
-
RefreshQuotaExceeded = 'RefreshQuotaExceeded',
|
|
14234
14238
|
FatalError = 'FatalError',
|
|
14235
14239
|
SigningQuotaExceeded = 'SigningQuotaExceeded',
|
|
14236
14240
|
RefreshedAsWaiter = 'RefreshedAsWaiter',
|
|
@@ -14245,7 +14249,7 @@ export namespace Protocol {
|
|
|
14245
14249
|
/**
|
|
14246
14250
|
* The result of a refresh.
|
|
14247
14251
|
*/
|
|
14248
|
-
refreshResult: ('Refreshed' | 'InitializedService' | 'Unreachable' | 'ServerError' | '
|
|
14252
|
+
refreshResult: ('Refreshed' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'FatalError' | 'SigningQuotaExceeded' | 'RefreshedAsWaiter' | 'TransientSigningError');
|
|
14249
14253
|
/**
|
|
14250
14254
|
* If there was a fetch attempt, the result of that.
|
|
14251
14255
|
*/
|
|
@@ -16797,7 +16801,7 @@ export namespace Protocol {
|
|
|
16797
16801
|
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
16798
16802
|
* @experimental
|
|
16799
16803
|
*/
|
|
16800
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | '
|
|
16804
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'autofill' | '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-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | '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' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | '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' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'webnn' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
|
|
16801
16805
|
|
|
16802
16806
|
/**
|
|
16803
16807
|
* Reason for a permissions policy feature to be disabled.
|