devtools-protocol 0.0.1253724 → 0.0.1254350

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1253724",
3
+ "version": "0.0.1254350",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
 
@@ -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 {