Skip to content

Commit

Permalink
Roll protocol to r1273771
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Mar 16, 2024
1 parent 4537bcb commit 8241e6c
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 33 deletions.
48 changes: 21 additions & 27 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@


## Roll protocol to r1273771 — _2024-03-16T04:26:55.000Z_
###### Diff: [`4537bcb...5071d2a`](https://github.com/ChromeDevTools/devtools-protocol/compare/4537bcb...5071d2a)

```diff
@@ browser_protocol.pdl:5539 @@ domain Network
# HTTP request headers.
Headers headers
# HTTP POST request data.
- optional string postData
+ # Use postDataEntries instead.
+ deprecated optional string postData
# True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
optional boolean hasPostData
- # Request body elements. This will be converted from base64 to binary
+ # Request body elements (post data broken into individual entries).
experimental optional array of PostDataEntry postDataEntries
# The mixed content type of the request.
optional Security.MixedContentType mixedContentType
```

## Roll protocol to r1273222 — _2024-03-15T04:26:20.000Z_
###### Diff: [`c804ef9...b067874`](https://github.com/ChromeDevTools/devtools-protocol/compare/c804ef9...b067874)
###### Diff: [`c804ef9...4537bcb`](https://github.com/ChromeDevTools/devtools-protocol/compare/c804ef9...4537bcb)

```diff
@@ browser_protocol.pdl:1944 @@ experimental domain CSS
Expand Down Expand Up @@ -11574,30 +11594,4 @@ index 09c420e..bd277eb 100644

returns
# The id of the context created.
```

## Roll protocol to r943452 — _2021-11-19T09:15:22.000Z_
###### Diff: [`bee0143...946136a`](https://github.com/ChromeDevTools/devtools-protocol/compare/bee0143...946136a)

```diff
@@ browser_protocol.pdl:6204 @@ domain Network
parameters
ReportingApiReport report

+ experimental type ReportingApiEndpoint extends object
+ properties
+ # The URL of the endpoint to which reports may be delivered.
+ string url
+ # Name of the endpoint group.
+ string groupName
+
+ experimental event reportingApiEndpointsChangedForOrigin
+ parameters
+ # Origin of the document(s) which configured the endpoints.
+ string origin
+ array of ReportingApiEndpoint endpoints
+
# An object providing the result of a network resource load.
experimental type LoadNetworkResourcePageResult extends object
properties
```
5 changes: 3 additions & 2 deletions json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -12068,7 +12068,8 @@
},
{
"name": "postData",
"description": "HTTP POST request data.",
"description": "HTTP POST request data.\nUse postDataEntries instead.",
"deprecated": true,
"optional": true,
"type": "string"
},
Expand All @@ -12080,7 +12081,7 @@
},
{
"name": "postDataEntries",
"description": "Request body elements. This will be converted from base64 to binary",
"description": "Request body elements (post data broken into individual entries).",
"experimental": true,
"optional": true,
"type": "array",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1273222",
"version": "0.0.1273771",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
5 changes: 3 additions & 2 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -5539,10 +5539,11 @@ domain Network
# HTTP request headers.
Headers headers
# HTTP POST request data.
optional string postData
# Use postDataEntries instead.
deprecated optional string postData
# True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
optional boolean hasPostData
# Request body elements. This will be converted from base64 to binary
# Request body elements (post data broken into individual entries).
experimental optional array of PostDataEntry postDataEntries
# The mixed content type of the request.
optional Security.MixedContentType mixedContentType
Expand Down
3 changes: 2 additions & 1 deletion types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10157,14 +10157,15 @@ export namespace Protocol {
headers: Headers;
/**
* HTTP POST request data.
* Use postDataEntries instead.
*/
postData?: string;
/**
* True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
*/
hasPostData?: boolean;
/**
* Request body elements. This will be converted from base64 to binary
* Request body elements (post data broken into individual entries).
*/
postDataEntries?: PostDataEntry[];
/**
Expand Down

0 comments on commit 8241e6c

Please sign in to comment.