devtools-protocol 0.0.975298 → 0.0.977469
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.
@@ -999,7 +999,8 @@
|
|
999
999
|
"WarnSameSiteStrictCrossDowngradeStrict",
|
1000
1000
|
"WarnSameSiteStrictCrossDowngradeLax",
|
1001
1001
|
"WarnSameSiteLaxCrossDowngradeStrict",
|
1002
|
-
"WarnSameSiteLaxCrossDowngradeLax"
|
1002
|
+
"WarnSameSiteLaxCrossDowngradeLax",
|
1003
|
+
"WarnAttributeValueExceedsMaxSize"
|
1003
1004
|
]
|
1004
1005
|
},
|
1005
1006
|
{
|
@@ -1608,6 +1609,7 @@
|
|
1608
1609
|
"ClientMetadataHttpNotFound",
|
1609
1610
|
"ClientMetadataNoResponse",
|
1610
1611
|
"ClientMetadataInvalidResponse",
|
1612
|
+
"ClientMetadataMissingPrivacyPolicyUrl",
|
1611
1613
|
"ErrorFetchingSignin",
|
1612
1614
|
"InvalidSigninResponse",
|
1613
1615
|
"AccountsHttpNotFound",
|
@@ -14107,6 +14109,7 @@
|
|
14107
14109
|
"enum": [
|
14108
14110
|
"rgb",
|
14109
14111
|
"hsl",
|
14112
|
+
"hwb",
|
14110
14113
|
"hex"
|
14111
14114
|
]
|
14112
14115
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -490,6 +490,7 @@ experimental domain Audits
|
|
490
490
|
WarnSameSiteStrictCrossDowngradeLax
|
491
491
|
WarnSameSiteLaxCrossDowngradeStrict
|
492
492
|
WarnSameSiteLaxCrossDowngradeLax
|
493
|
+
WarnAttributeValueExceedsMaxSize
|
493
494
|
|
494
495
|
type CookieOperation extends string
|
495
496
|
enum
|
@@ -790,6 +791,7 @@ experimental domain Audits
|
|
790
791
|
ClientMetadataHttpNotFound
|
791
792
|
ClientMetadataNoResponse
|
792
793
|
ClientMetadataInvalidResponse
|
794
|
+
ClientMetadataMissingPrivacyPolicyUrl
|
793
795
|
ErrorFetchingSignin
|
794
796
|
InvalidSigninResponse
|
795
797
|
AccountsHttpNotFound
|
@@ -6540,6 +6542,7 @@ experimental domain Overlay
|
|
6540
6542
|
enum
|
6541
6543
|
rgb
|
6542
6544
|
hsl
|
6545
|
+
hwb
|
6543
6546
|
hex
|
6544
6547
|
|
6545
6548
|
# Configurations for Persistent Grid Highlight
|
package/types/protocol.d.ts
CHANGED
@@ -3073,7 +3073,7 @@ export namespace Protocol {
|
|
3073
3073
|
|
3074
3074
|
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext');
|
3075
3075
|
|
3076
|
-
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax');
|
3076
|
+
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize');
|
3077
3077
|
|
3078
3078
|
export type CookieOperation = ('SetCookie' | 'ReadCookie');
|
3079
3079
|
|
@@ -3338,7 +3338,7 @@ export namespace Protocol {
|
|
3338
3338
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3339
3339
|
* all cases except for success.
|
3340
3340
|
*/
|
3341
|
-
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3341
|
+
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3342
3342
|
|
3343
3343
|
/**
|
3344
3344
|
* This issue tracks client hints related issues. It's used to deprecate old
|
@@ -11515,7 +11515,7 @@ export namespace Protocol {
|
|
11515
11515
|
containerQueryContainerHighlightConfig?: ContainerQueryContainerHighlightConfig;
|
11516
11516
|
}
|
11517
11517
|
|
11518
|
-
export type ColorFormat = ('rgb' | 'hsl' | 'hex');
|
11518
|
+
export type ColorFormat = ('rgb' | 'hsl' | 'hwb' | 'hex');
|
11519
11519
|
|
11520
11520
|
/**
|
11521
11521
|
* Configurations for Persistent Grid Highlight
|