devtools-protocol 0.0.1253724 → 0.0.1255431
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.
@@ -12784,7 +12784,7 @@
|
|
12784
12784
|
"EnterprisePolicy",
|
12785
12785
|
"StorageAccess",
|
12786
12786
|
"TopLevelStorageAccess",
|
12787
|
-
"
|
12787
|
+
"CorsOptIn"
|
12788
12788
|
]
|
12789
12789
|
},
|
12790
12790
|
{
|
@@ -13674,7 +13674,7 @@
|
|
13674
13674
|
},
|
13675
13675
|
{
|
13676
13676
|
"name": "deleteCookies",
|
13677
|
-
"description": "Deletes browser cookies with matching name and url or domain/path pair.",
|
13677
|
+
"description": "Deletes browser cookies with matching name and url or domain/path/partitionKey pair.",
|
13678
13678
|
"parameters": [
|
13679
13679
|
{
|
13680
13680
|
"name": "name",
|
@@ -13698,6 +13698,12 @@
|
|
13698
13698
|
"description": "If specified, deletes only cookies with the exact path.",
|
13699
13699
|
"optional": true,
|
13700
13700
|
"type": "string"
|
13701
|
+
},
|
13702
|
+
{
|
13703
|
+
"name": "partitionKey",
|
13704
|
+
"description": "If specified, deletes only cookies with the the given name and partitionKey where domain\nmatches provided URL.",
|
13705
|
+
"optional": true,
|
13706
|
+
"type": "string"
|
13701
13707
|
}
|
13702
13708
|
]
|
13703
13709
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -6010,8 +6010,8 @@ domain Network
|
|
6010
6010
|
StorageAccess
|
6011
6011
|
# The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
|
6012
6012
|
TopLevelStorageAccess
|
6013
|
-
# The cookie should have been blocked by 3PCD but is exempted by
|
6014
|
-
|
6013
|
+
# The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
|
6014
|
+
CorsOptIn
|
6015
6015
|
|
6016
6016
|
# A cookie which was not stored from a response with the corresponding reason.
|
6017
6017
|
experimental type BlockedSetCookieWithReason extends object
|
@@ -6273,7 +6273,7 @@ domain Network
|
|
6273
6273
|
# Response to a requestIntercepted with an authChallenge. Must not be set otherwise.
|
6274
6274
|
optional AuthChallengeResponse authChallengeResponse
|
6275
6275
|
|
6276
|
-
# Deletes browser cookies with matching name and url or domain/path pair.
|
6276
|
+
# Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
|
6277
6277
|
command deleteCookies
|
6278
6278
|
parameters
|
6279
6279
|
# Name of the cookies to remove.
|
@@ -6285,6 +6285,9 @@ domain Network
|
|
6285
6285
|
optional string domain
|
6286
6286
|
# If specified, deletes only cookies with the exact path.
|
6287
6287
|
optional string path
|
6288
|
+
# If specified, deletes only cookies with the the given name and partitionKey where domain
|
6289
|
+
# matches provided URL.
|
6290
|
+
optional string partitionKey
|
6288
6291
|
|
6289
6292
|
# Disables network tracking, prevents network events from being sent to the client.
|
6290
6293
|
command disable
|
@@ -3200,7 +3200,7 @@ export namespace ProtocolMapping {
|
|
3200
3200
|
returnType: void;
|
3201
3201
|
};
|
3202
3202
|
/**
|
3203
|
-
* Deletes browser cookies with matching name and url or domain/path pair.
|
3203
|
+
* Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
|
3204
3204
|
*/
|
3205
3205
|
'Network.deleteCookies': {
|
3206
3206
|
paramsType: [Protocol.Network.DeleteCookiesRequest];
|
@@ -2281,7 +2281,7 @@ export namespace ProtocolProxyApi {
|
|
2281
2281
|
continueInterceptedRequest(params: Protocol.Network.ContinueInterceptedRequestRequest): Promise<void>;
|
2282
2282
|
|
2283
2283
|
/**
|
2284
|
-
* Deletes browser cookies with matching name and url or domain/path pair.
|
2284
|
+
* Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
|
2285
2285
|
*/
|
2286
2286
|
deleteCookies(params: Protocol.Network.DeleteCookiesRequest): Promise<void>;
|
2287
2287
|
|
@@ -2417,7 +2417,7 @@ export namespace ProtocolTestsProxyApi {
|
|
2417
2417
|
continueInterceptedRequest(params: Protocol.Network.ContinueInterceptedRequestRequest): Promise<void>;
|
2418
2418
|
|
2419
2419
|
/**
|
2420
|
-
* Deletes browser cookies with matching name and url or domain/path pair.
|
2420
|
+
* Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
|
2421
2421
|
*/
|
2422
2422
|
deleteCookies(params: Protocol.Network.DeleteCookiesRequest): Promise<void>;
|
2423
2423
|
|
package/types/protocol.d.ts
CHANGED
@@ -10595,7 +10595,7 @@ export namespace Protocol {
|
|
10595
10595
|
/**
|
10596
10596
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
10597
10597
|
*/
|
10598
|
-
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | '
|
10598
|
+
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'CorsOptIn');
|
10599
10599
|
|
10600
10600
|
/**
|
10601
10601
|
* A cookie which was not stored from a response with the corresponding reason.
|
@@ -11136,6 +11136,11 @@ export namespace Protocol {
|
|
11136
11136
|
* If specified, deletes only cookies with the exact path.
|
11137
11137
|
*/
|
11138
11138
|
path?: string;
|
11139
|
+
/**
|
11140
|
+
* If specified, deletes only cookies with the the given name and partitionKey where domain
|
11141
|
+
* matches provided URL.
|
11142
|
+
*/
|
11143
|
+
partitionKey?: string;
|
11139
11144
|
}
|
11140
11145
|
|
11141
11146
|
export interface EmulateNetworkConditionsRequest {
|