devtools-protocol 0.0.942138 → 0.0.943026
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 +28 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +13 -0
- package/types/protocol.d.ts +21 -0
|
@@ -11184,6 +11184,20 @@
|
|
|
11184
11184
|
"description": "Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.\nAn unspecified port value allows protocol clients to emulate legacy cookie scope for the port.\nThis is a temporary ability and it will be removed in the future.",
|
|
11185
11185
|
"experimental": true,
|
|
11186
11186
|
"type": "integer"
|
|
11187
|
+
},
|
|
11188
|
+
{
|
|
11189
|
+
"name": "partitionKey",
|
|
11190
|
+
"description": "Cookie partition key. The site of the top-level URL the browser was visiting at the start\nof the request to the endpoint that set the cookie.",
|
|
11191
|
+
"experimental": true,
|
|
11192
|
+
"optional": true,
|
|
11193
|
+
"type": "string"
|
|
11194
|
+
},
|
|
11195
|
+
{
|
|
11196
|
+
"name": "partitionKeyOpaque",
|
|
11197
|
+
"description": "True if cookie partition key is opaque.",
|
|
11198
|
+
"experimental": true,
|
|
11199
|
+
"optional": true,
|
|
11200
|
+
"type": "boolean"
|
|
11187
11201
|
}
|
|
11188
11202
|
]
|
|
11189
11203
|
},
|
|
@@ -11367,6 +11381,13 @@
|
|
|
11367
11381
|
"experimental": true,
|
|
11368
11382
|
"optional": true,
|
|
11369
11383
|
"type": "integer"
|
|
11384
|
+
},
|
|
11385
|
+
{
|
|
11386
|
+
"name": "partitionKey",
|
|
11387
|
+
"description": "Cookie partition key. The site of the top-level URL the browser was visiting at the start\nof the request to the endpoint that set the cookie.\nIf not set, the cookie will be set as not partitioned.",
|
|
11388
|
+
"experimental": true,
|
|
11389
|
+
"optional": true,
|
|
11390
|
+
"type": "string"
|
|
11370
11391
|
}
|
|
11371
11392
|
]
|
|
11372
11393
|
},
|
|
@@ -12438,6 +12459,13 @@
|
|
|
12438
12459
|
"experimental": true,
|
|
12439
12460
|
"optional": true,
|
|
12440
12461
|
"type": "integer"
|
|
12462
|
+
},
|
|
12463
|
+
{
|
|
12464
|
+
"name": "partitionKey",
|
|
12465
|
+
"description": "Cookie partition key. The site of the top-level URL the browser was visiting at the start\nof the request to the endpoint that set the cookie.\nIf not set, the cookie will be set as not partitioned.",
|
|
12466
|
+
"experimental": true,
|
|
12467
|
+
"optional": true,
|
|
12468
|
+
"type": "string"
|
|
12441
12469
|
}
|
|
12442
12470
|
],
|
|
12443
12471
|
"returns": [
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -5117,6 +5117,11 @@ domain Network
|
|
|
5117
5117
|
# An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
|
|
5118
5118
|
# This is a temporary ability and it will be removed in the future.
|
|
5119
5119
|
experimental integer sourcePort
|
|
5120
|
+
# Cookie partition key. The site of the top-level URL the browser was visiting at the start
|
|
5121
|
+
# of the request to the endpoint that set the cookie.
|
|
5122
|
+
experimental optional string partitionKey
|
|
5123
|
+
# True if cookie partition key is opaque.
|
|
5124
|
+
experimental optional boolean partitionKeyOpaque
|
|
5120
5125
|
|
|
5121
5126
|
# Types of reasons why a cookie may not be stored from a response.
|
|
5122
5127
|
experimental type SetCookieBlockedReason extends string
|
|
@@ -5275,6 +5280,10 @@ domain Network
|
|
|
5275
5280
|
# An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
|
|
5276
5281
|
# This is a temporary ability and it will be removed in the future.
|
|
5277
5282
|
experimental optional integer sourcePort
|
|
5283
|
+
# Cookie partition key. The site of the top-level URL the browser was visiting at the start
|
|
5284
|
+
# of the request to the endpoint that set the cookie.
|
|
5285
|
+
# If not set, the cookie will be set as not partitioned.
|
|
5286
|
+
experimental optional string partitionKey
|
|
5278
5287
|
|
|
5279
5288
|
# Authorization challenge for HTTP status code 401 or 407.
|
|
5280
5289
|
experimental type AuthChallenge extends object
|
|
@@ -5645,6 +5654,10 @@ domain Network
|
|
|
5645
5654
|
# An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
|
|
5646
5655
|
# This is a temporary ability and it will be removed in the future.
|
|
5647
5656
|
experimental optional integer sourcePort
|
|
5657
|
+
# Cookie partition key. The site of the top-level URL the browser was visiting at the start
|
|
5658
|
+
# of the request to the endpoint that set the cookie.
|
|
5659
|
+
# If not set, the cookie will be set as not partitioned.
|
|
5660
|
+
experimental optional string partitionKey
|
|
5648
5661
|
returns
|
|
5649
5662
|
# Always set to true. If an error occurs, the response indicates protocol error.
|
|
5650
5663
|
deprecated boolean success
|
package/types/protocol.d.ts
CHANGED
|
@@ -9563,6 +9563,15 @@ export namespace Protocol {
|
|
|
9563
9563
|
* This is a temporary ability and it will be removed in the future.
|
|
9564
9564
|
*/
|
|
9565
9565
|
sourcePort: integer;
|
|
9566
|
+
/**
|
|
9567
|
+
* Cookie partition key. The site of the top-level URL the browser was visiting at the start
|
|
9568
|
+
* of the request to the endpoint that set the cookie.
|
|
9569
|
+
*/
|
|
9570
|
+
partitionKey?: string;
|
|
9571
|
+
/**
|
|
9572
|
+
* True if cookie partition key is opaque.
|
|
9573
|
+
*/
|
|
9574
|
+
partitionKeyOpaque?: boolean;
|
|
9566
9575
|
}
|
|
9567
9576
|
|
|
9568
9577
|
/**
|
|
@@ -9669,6 +9678,12 @@ export namespace Protocol {
|
|
|
9669
9678
|
* This is a temporary ability and it will be removed in the future.
|
|
9670
9679
|
*/
|
|
9671
9680
|
sourcePort?: integer;
|
|
9681
|
+
/**
|
|
9682
|
+
* Cookie partition key. The site of the top-level URL the browser was visiting at the start
|
|
9683
|
+
* of the request to the endpoint that set the cookie.
|
|
9684
|
+
* If not set, the cookie will be set as not partitioned.
|
|
9685
|
+
*/
|
|
9686
|
+
partitionKey?: string;
|
|
9672
9687
|
}
|
|
9673
9688
|
|
|
9674
9689
|
export const enum AuthChallengeSource {
|
|
@@ -10309,6 +10324,12 @@ export namespace Protocol {
|
|
|
10309
10324
|
* This is a temporary ability and it will be removed in the future.
|
|
10310
10325
|
*/
|
|
10311
10326
|
sourcePort?: integer;
|
|
10327
|
+
/**
|
|
10328
|
+
* Cookie partition key. The site of the top-level URL the browser was visiting at the start
|
|
10329
|
+
* of the request to the endpoint that set the cookie.
|
|
10330
|
+
* If not set, the cookie will be set as not partitioned.
|
|
10331
|
+
*/
|
|
10332
|
+
partitionKey?: string;
|
|
10312
10333
|
}
|
|
10313
10334
|
|
|
10314
10335
|
export interface SetCookieResponse {
|