devtools-protocol 0.0.1030018 → 0.0.1031356
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.
@@ -991,7 +991,8 @@
|
|
991
991
|
"ExcludeSameSiteLax",
|
992
992
|
"ExcludeSameSiteStrict",
|
993
993
|
"ExcludeInvalidSameParty",
|
994
|
-
"ExcludeSamePartyCrossPartyContext"
|
994
|
+
"ExcludeSamePartyCrossPartyContext",
|
995
|
+
"ExcludeDomainNonASCII"
|
995
996
|
]
|
996
997
|
},
|
997
998
|
{
|
@@ -1006,7 +1007,8 @@
|
|
1006
1007
|
"WarnSameSiteStrictCrossDowngradeLax",
|
1007
1008
|
"WarnSameSiteLaxCrossDowngradeStrict",
|
1008
1009
|
"WarnSameSiteLaxCrossDowngradeLax",
|
1009
|
-
"WarnAttributeValueExceedsMaxSize"
|
1010
|
+
"WarnAttributeValueExceedsMaxSize",
|
1011
|
+
"WarnDomainNonASCII"
|
1010
1012
|
]
|
1011
1013
|
},
|
1012
1014
|
{
|
@@ -1450,7 +1452,8 @@
|
|
1450
1452
|
"InsecureContext",
|
1451
1453
|
"InvalidHeader",
|
1452
1454
|
"InvalidRegisterTriggerHeader",
|
1453
|
-
"InvalidEligibleHeader"
|
1455
|
+
"InvalidEligibleHeader",
|
1456
|
+
"TooManyConcurrentRequests"
|
1454
1457
|
]
|
1455
1458
|
},
|
1456
1459
|
{
|
@@ -1664,7 +1667,6 @@
|
|
1664
1667
|
"ClientMetadataHttpNotFound",
|
1665
1668
|
"ClientMetadataNoResponse",
|
1666
1669
|
"ClientMetadataInvalidResponse",
|
1667
|
-
"ClientMetadataMissingPrivacyPolicyUrl",
|
1668
1670
|
"DisabledInSettings",
|
1669
1671
|
"ErrorFetchingSignin",
|
1670
1672
|
"InvalidSigninResponse",
|
@@ -9119,7 +9121,14 @@
|
|
9119
9121
|
"parameters": [
|
9120
9122
|
{
|
9121
9123
|
"name": "securityOrigin",
|
9122
|
-
"description": "
|
9124
|
+
"description": "At least and at most one of securityOrigin, storageKey must be specified.\nSecurity origin.",
|
9125
|
+
"optional": true,
|
9126
|
+
"type": "string"
|
9127
|
+
},
|
9128
|
+
{
|
9129
|
+
"name": "storageKey",
|
9130
|
+
"description": "Storage key.",
|
9131
|
+
"optional": true,
|
9123
9132
|
"type": "string"
|
9124
9133
|
}
|
9125
9134
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -481,6 +481,7 @@ experimental domain Audits
|
|
481
481
|
ExcludeSameSiteStrict
|
482
482
|
ExcludeInvalidSameParty
|
483
483
|
ExcludeSamePartyCrossPartyContext
|
484
|
+
ExcludeDomainNonASCII
|
484
485
|
|
485
486
|
type CookieWarningReason extends string
|
486
487
|
enum
|
@@ -493,6 +494,7 @@ experimental domain Audits
|
|
493
494
|
WarnSameSiteLaxCrossDowngradeStrict
|
494
495
|
WarnSameSiteLaxCrossDowngradeLax
|
495
496
|
WarnAttributeValueExceedsMaxSize
|
497
|
+
WarnDomainNonASCII
|
496
498
|
|
497
499
|
type CookieOperation extends string
|
498
500
|
enum
|
@@ -705,6 +707,7 @@ experimental domain Audits
|
|
705
707
|
InvalidHeader
|
706
708
|
InvalidRegisterTriggerHeader
|
707
709
|
InvalidEligibleHeader
|
710
|
+
TooManyConcurrentRequests
|
708
711
|
|
709
712
|
# Details for issues around "Attribution Reporting API" usage.
|
710
713
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
@@ -842,7 +845,6 @@ experimental domain Audits
|
|
842
845
|
ClientMetadataHttpNotFound
|
843
846
|
ClientMetadataNoResponse
|
844
847
|
ClientMetadataInvalidResponse
|
845
|
-
ClientMetadataMissingPrivacyPolicyUrl
|
846
848
|
DisabledInSettings
|
847
849
|
ErrorFetchingSignin
|
848
850
|
InvalidSigninResponse
|
@@ -4180,8 +4182,11 @@ experimental domain IndexedDB
|
|
4180
4182
|
# Requests database names for given security origin.
|
4181
4183
|
command requestDatabaseNames
|
4182
4184
|
parameters
|
4185
|
+
# At least and at most one of securityOrigin, storageKey must be specified.
|
4183
4186
|
# Security origin.
|
4184
|
-
string securityOrigin
|
4187
|
+
optional string securityOrigin
|
4188
|
+
# Storage key.
|
4189
|
+
optional string storageKey
|
4185
4190
|
returns
|
4186
4191
|
# Database names for origin.
|
4187
4192
|
array of string databaseNames
|
@@ -2740,7 +2740,7 @@ export namespace ProtocolMapping {
|
|
2740
2740
|
* Requests database names for given security origin.
|
2741
2741
|
*/
|
2742
2742
|
'IndexedDB.requestDatabaseNames': {
|
2743
|
-
paramsType: [Protocol.IndexedDB.RequestDatabaseNamesRequest];
|
2743
|
+
paramsType: [Protocol.IndexedDB.RequestDatabaseNamesRequest?];
|
2744
2744
|
returnType: Protocol.IndexedDB.RequestDatabaseNamesResponse;
|
2745
2745
|
};
|
2746
2746
|
/**
|
package/types/protocol.d.ts
CHANGED
@@ -3237,9 +3237,9 @@ export namespace Protocol {
|
|
3237
3237
|
frameId: Page.FrameId;
|
3238
3238
|
}
|
3239
3239
|
|
3240
|
-
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext');
|
3240
|
+
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII');
|
3241
3241
|
|
3242
|
-
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize');
|
3242
|
+
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII');
|
3243
3243
|
|
3244
3244
|
export type CookieOperation = ('SetCookie' | 'ReadCookie');
|
3245
3245
|
|
@@ -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');
|
3426
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests');
|
3427
3427
|
|
3428
3428
|
/**
|
3429
3429
|
* Details for issues around "Attribution Reporting API" usage.
|
@@ -3494,7 +3494,7 @@ export namespace Protocol {
|
|
3494
3494
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3495
3495
|
* all cases except for success.
|
3496
3496
|
*/
|
3497
|
-
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestListHttpNotFound' | 'ManifestListNoResponse' | 'ManifestListInvalidResponse' | 'ManifestNotInManifestList' | 'ManifestListTooBig' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | '
|
3497
|
+
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestListHttpNotFound' | 'ManifestListNoResponse' | 'ManifestListInvalidResponse' | 'ManifestNotInManifestList' | 'ManifestListTooBig' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3498
3498
|
|
3499
3499
|
/**
|
3500
3500
|
* This issue tracks client hints related issues. It's used to deprecate old
|
@@ -8262,9 +8262,14 @@ export namespace Protocol {
|
|
8262
8262
|
|
8263
8263
|
export interface RequestDatabaseNamesRequest {
|
8264
8264
|
/**
|
8265
|
+
* At least and at most one of securityOrigin, storageKey must be specified.
|
8265
8266
|
* Security origin.
|
8266
8267
|
*/
|
8267
|
-
securityOrigin
|
8268
|
+
securityOrigin?: string;
|
8269
|
+
/**
|
8270
|
+
* Storage key.
|
8271
|
+
*/
|
8272
|
+
storageKey?: string;
|
8268
8273
|
}
|
8269
8274
|
|
8270
8275
|
export interface RequestDatabaseNamesResponse {
|