devtools-protocol 0.0.1566079 → 0.0.1568893
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 +5 -26
- package/package.json +1 -1
- package/pdl/domains/Audits.pdl +0 -2
- package/pdl/domains/Network.pdl +2 -14
- package/types/protocol.d.ts +7 -19
|
@@ -1063,8 +1063,6 @@
|
|
|
1063
1063
|
"ExcludeSameSiteNoneInsecure",
|
|
1064
1064
|
"ExcludeSameSiteLax",
|
|
1065
1065
|
"ExcludeSameSiteStrict",
|
|
1066
|
-
"ExcludeInvalidSameParty",
|
|
1067
|
-
"ExcludeSamePartyCrossPartyContext",
|
|
1068
1066
|
"ExcludeDomainNonASCII",
|
|
1069
1067
|
"ExcludeThirdPartyCookieBlockedInFirstPartySet",
|
|
1070
1068
|
"ExcludeThirdPartyPhaseout",
|
|
@@ -16129,13 +16127,6 @@
|
|
|
16129
16127
|
"experimental": true,
|
|
16130
16128
|
"$ref": "CookiePriority"
|
|
16131
16129
|
},
|
|
16132
|
-
{
|
|
16133
|
-
"name": "sameParty",
|
|
16134
|
-
"description": "True if cookie is SameParty.",
|
|
16135
|
-
"experimental": true,
|
|
16136
|
-
"deprecated": true,
|
|
16137
|
-
"type": "boolean"
|
|
16138
|
-
},
|
|
16139
16130
|
{
|
|
16140
16131
|
"name": "sourceScheme",
|
|
16141
16132
|
"description": "Cookie source scheme type.",
|
|
@@ -16187,8 +16178,6 @@
|
|
|
16187
16178
|
"SchemefulSameSiteStrict",
|
|
16188
16179
|
"SchemefulSameSiteLax",
|
|
16189
16180
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
|
16190
|
-
"SamePartyFromCrossPartyContext",
|
|
16191
|
-
"SamePartyConflictsWithOtherAttributes",
|
|
16192
16181
|
"NameValuePairExceedsMaxSize",
|
|
16193
16182
|
"DisallowedCharacter",
|
|
16194
16183
|
"NoCookieContent"
|
|
@@ -16214,7 +16203,6 @@
|
|
|
16214
16203
|
"SchemefulSameSiteStrict",
|
|
16215
16204
|
"SchemefulSameSiteLax",
|
|
16216
16205
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
|
16217
|
-
"SamePartyFromCrossPartyContext",
|
|
16218
16206
|
"NameValuePairExceedsMaxSize",
|
|
16219
16207
|
"PortMismatch",
|
|
16220
16208
|
"SchemeMismatch",
|
|
@@ -16381,13 +16369,6 @@
|
|
|
16381
16369
|
"optional": true,
|
|
16382
16370
|
"$ref": "CookiePriority"
|
|
16383
16371
|
},
|
|
16384
|
-
{
|
|
16385
|
-
"name": "sameParty",
|
|
16386
|
-
"description": "True if cookie is SameParty.",
|
|
16387
|
-
"experimental": true,
|
|
16388
|
-
"optional": true,
|
|
16389
|
-
"type": "boolean"
|
|
16390
|
-
},
|
|
16391
16372
|
{
|
|
16392
16373
|
"name": "sourceScheme",
|
|
16393
16374
|
"description": "Cookie source scheme type.",
|
|
@@ -17995,6 +17976,11 @@
|
|
|
17995
17976
|
"name": "postData",
|
|
17996
17977
|
"description": "Request body string, omitting files from multipart requests",
|
|
17997
17978
|
"type": "string"
|
|
17979
|
+
},
|
|
17980
|
+
{
|
|
17981
|
+
"name": "base64Encoded",
|
|
17982
|
+
"description": "True, if content was sent as base64.",
|
|
17983
|
+
"type": "boolean"
|
|
17998
17984
|
}
|
|
17999
17985
|
]
|
|
18000
17986
|
},
|
|
@@ -18201,13 +18187,6 @@
|
|
|
18201
18187
|
"optional": true,
|
|
18202
18188
|
"$ref": "CookiePriority"
|
|
18203
18189
|
},
|
|
18204
|
-
{
|
|
18205
|
-
"name": "sameParty",
|
|
18206
|
-
"description": "True if cookie is SameParty.",
|
|
18207
|
-
"experimental": true,
|
|
18208
|
-
"optional": true,
|
|
18209
|
-
"type": "boolean"
|
|
18210
|
-
},
|
|
18211
18190
|
{
|
|
18212
18191
|
"name": "sourceScheme",
|
|
18213
18192
|
"description": "Cookie source scheme type.",
|
package/package.json
CHANGED
package/pdl/domains/Audits.pdl
CHANGED
|
@@ -34,8 +34,6 @@ experimental domain Audits
|
|
|
34
34
|
ExcludeSameSiteNoneInsecure
|
|
35
35
|
ExcludeSameSiteLax
|
|
36
36
|
ExcludeSameSiteStrict
|
|
37
|
-
ExcludeInvalidSameParty
|
|
38
|
-
ExcludeSamePartyCrossPartyContext
|
|
39
37
|
ExcludeDomainNonASCII
|
|
40
38
|
ExcludeThirdPartyCookieBlockedInFirstPartySet
|
|
41
39
|
ExcludeThirdPartyPhaseout
|
package/pdl/domains/Network.pdl
CHANGED
|
@@ -622,8 +622,6 @@ domain Network
|
|
|
622
622
|
optional CookieSameSite sameSite
|
|
623
623
|
# Cookie Priority
|
|
624
624
|
experimental CookiePriority priority
|
|
625
|
-
# True if cookie is SameParty.
|
|
626
|
-
experimental deprecated boolean sameParty
|
|
627
625
|
# Cookie source scheme type.
|
|
628
626
|
experimental CookieSourceScheme sourceScheme
|
|
629
627
|
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
|
|
@@ -687,12 +685,6 @@ domain Network
|
|
|
687
685
|
# value.
|
|
688
686
|
# This is the "Schemeful Same-Site" version of the blocked reason.
|
|
689
687
|
SchemefulSameSiteUnspecifiedTreatedAsLax
|
|
690
|
-
# The cookie had the "SameParty" attribute but came from a cross-party response.
|
|
691
|
-
SamePartyFromCrossPartyContext
|
|
692
|
-
# The cookie had the "SameParty" attribute but did not specify the "Secure" attribute
|
|
693
|
-
# (which is required in order to use "SameParty"); or specified the "SameSite=Strict"
|
|
694
|
-
# attribute (which is forbidden when using "SameParty").
|
|
695
|
-
SamePartyConflictsWithOtherAttributes
|
|
696
688
|
# The cookie's name/value pair size exceeded the size limit defined in
|
|
697
689
|
# RFC6265bis.
|
|
698
690
|
NameValuePairExceedsMaxSize
|
|
@@ -749,8 +741,6 @@ domain Network
|
|
|
749
741
|
# value.
|
|
750
742
|
# This is the "Schemeful Same-Site" version of the blocked reason.
|
|
751
743
|
SchemefulSameSiteUnspecifiedTreatedAsLax
|
|
752
|
-
# The cookie had the "SameParty" attribute and the request was made from a cross-party context.
|
|
753
|
-
SamePartyFromCrossPartyContext
|
|
754
744
|
# The cookie's name/value pair size exceeded the size limit defined in
|
|
755
745
|
# RFC6265bis.
|
|
756
746
|
NameValuePairExceedsMaxSize
|
|
@@ -847,8 +837,6 @@ domain Network
|
|
|
847
837
|
optional TimeSinceEpoch expires
|
|
848
838
|
# Cookie Priority.
|
|
849
839
|
experimental optional CookiePriority priority
|
|
850
|
-
# True if cookie is SameParty.
|
|
851
|
-
experimental optional boolean sameParty
|
|
852
840
|
# Cookie source scheme type.
|
|
853
841
|
experimental optional CookieSourceScheme sourceScheme
|
|
854
842
|
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
|
|
@@ -1216,6 +1204,8 @@ domain Network
|
|
|
1216
1204
|
returns
|
|
1217
1205
|
# Request body string, omitting files from multipart requests
|
|
1218
1206
|
string postData
|
|
1207
|
+
# True, if content was sent as base64.
|
|
1208
|
+
boolean base64Encoded
|
|
1219
1209
|
|
|
1220
1210
|
# Returns content served for the given currently intercepted request.
|
|
1221
1211
|
experimental command getResponseBodyForInterception
|
|
@@ -1315,8 +1305,6 @@ domain Network
|
|
|
1315
1305
|
optional TimeSinceEpoch expires
|
|
1316
1306
|
# Cookie Priority type.
|
|
1317
1307
|
experimental optional CookiePriority priority
|
|
1318
|
-
# True if cookie is SameParty.
|
|
1319
|
-
experimental optional boolean sameParty
|
|
1320
1308
|
# Cookie source scheme type.
|
|
1321
1309
|
experimental optional CookieSourceScheme sourceScheme
|
|
1322
1310
|
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
|
package/types/protocol.d.ts
CHANGED
|
@@ -3453,7 +3453,7 @@ export namespace Protocol {
|
|
|
3453
3453
|
frameId: Page.FrameId;
|
|
3454
3454
|
}
|
|
3455
3455
|
|
|
3456
|
-
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | '
|
|
3456
|
+
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout' | 'ExcludePortMismatch' | 'ExcludeSchemeMismatch');
|
|
3457
3457
|
|
|
3458
3458
|
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout' | 'WarnCrossSiteRedirectDowngradeChangesInclusion' | 'WarnDeprecationTrialMetadata' | 'WarnThirdPartyCookieHeuristic');
|
|
3459
3459
|
|
|
@@ -12870,12 +12870,6 @@ export namespace Protocol {
|
|
|
12870
12870
|
* @experimental
|
|
12871
12871
|
*/
|
|
12872
12872
|
priority: CookiePriority;
|
|
12873
|
-
/**
|
|
12874
|
-
* True if cookie is SameParty.
|
|
12875
|
-
* @deprecated
|
|
12876
|
-
* @experimental
|
|
12877
|
-
*/
|
|
12878
|
-
sameParty: boolean;
|
|
12879
12873
|
/**
|
|
12880
12874
|
* Cookie source scheme type.
|
|
12881
12875
|
* @experimental
|
|
@@ -12904,13 +12898,13 @@ export namespace Protocol {
|
|
|
12904
12898
|
* Types of reasons why a cookie may not be stored from a response.
|
|
12905
12899
|
* @experimental
|
|
12906
12900
|
*/
|
|
12907
|
-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | '
|
|
12901
|
+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter' | 'NoCookieContent');
|
|
12908
12902
|
|
|
12909
12903
|
/**
|
|
12910
12904
|
* Types of reasons why a cookie may not be sent with a request.
|
|
12911
12905
|
* @experimental
|
|
12912
12906
|
*/
|
|
12913
|
-
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | '
|
|
12907
|
+
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'NameValuePairExceedsMaxSize' | 'PortMismatch' | 'SchemeMismatch' | 'AnonymousContext');
|
|
12914
12908
|
|
|
12915
12909
|
/**
|
|
12916
12910
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
@@ -13027,11 +13021,6 @@ export namespace Protocol {
|
|
|
13027
13021
|
* @experimental
|
|
13028
13022
|
*/
|
|
13029
13023
|
priority?: CookiePriority;
|
|
13030
|
-
/**
|
|
13031
|
-
* True if cookie is SameParty.
|
|
13032
|
-
* @experimental
|
|
13033
|
-
*/
|
|
13034
|
-
sameParty?: boolean;
|
|
13035
13024
|
/**
|
|
13036
13025
|
* Cookie source scheme type.
|
|
13037
13026
|
* @experimental
|
|
@@ -14084,6 +14073,10 @@ export namespace Protocol {
|
|
|
14084
14073
|
* Request body string, omitting files from multipart requests
|
|
14085
14074
|
*/
|
|
14086
14075
|
postData: string;
|
|
14076
|
+
/**
|
|
14077
|
+
* True, if content was sent as base64.
|
|
14078
|
+
*/
|
|
14079
|
+
base64Encoded: boolean;
|
|
14087
14080
|
}
|
|
14088
14081
|
|
|
14089
14082
|
export interface GetResponseBodyForInterceptionRequest {
|
|
@@ -14215,11 +14208,6 @@ export namespace Protocol {
|
|
|
14215
14208
|
* @experimental
|
|
14216
14209
|
*/
|
|
14217
14210
|
priority?: CookiePriority;
|
|
14218
|
-
/**
|
|
14219
|
-
* True if cookie is SameParty.
|
|
14220
|
-
* @experimental
|
|
14221
|
-
*/
|
|
14222
|
-
sameParty?: boolean;
|
|
14223
14211
|
/**
|
|
14224
14212
|
* Cookie source scheme type.
|
|
14225
14213
|
* @experimental
|