Skip to content

Commit d0d2cf0

Browse files
committed
Roll protocol to r1568225
1 parent 411079d commit d0d2cf0

File tree

6 files changed

+30
-18
lines changed

6 files changed

+30
-18
lines changed

changelog.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11

22

3+
## Roll protocol to r1568225 — _2026-01-13T04:34:57.000Z_
4+
###### Diff: [`411079d...c166df1`](https://github.com/ChromeDevTools/devtools-protocol/compare/411079d...c166df1)
5+
6+
```diff
7+
@@ domains/Network.pdl:1216 @@ domain Network
8+
returns
9+
# Request body string, omitting files from multipart requests
10+
string postData
11+
+ # True, if content was sent as base64.
12+
+ boolean base64Encoded
13+
14+
# Returns content served for the given currently intercepted request.
15+
experimental command getResponseBodyForInterception
16+
```
17+
318
## Roll protocol to r1566079 — _2026-01-08T04:35:00.000Z_
4-
###### Diff: [`2ab0ee0...27d60bc`](https://github.com/ChromeDevTools/devtools-protocol/compare/2ab0ee0...27d60bc)
19+
###### Diff: [`2ab0ee0...411079d`](https://github.com/ChromeDevTools/devtools-protocol/compare/2ab0ee0...411079d)
520

621
```diff
722
@@ domains/Network.pdl:2123 @@ domain Network
@@ -42224,18 +42239,4 @@ index 0dbdc01d..7a3c772c 100644
4222442239
+ optional array of CSSPositionFallbackRule cssPositionFallbackRules
4222542240
# Id of the first parent element that does not have display: contents.
4222642241
experimental optional DOM.NodeId parentLayoutNodeId
42227-
```
42228-
42229-
## Roll protocol to r1122063 — _2023-03-25T04:27:16.000Z_
42230-
###### Diff: [`4295d0a...0b187a3`](https://github.com/ChromeDevTools/devtools-protocol/compare/4295d0a...0b187a3)
42231-
42232-
```diff
42233-
@@ js_protocol.pdl:580 @@ domain Debugger
42234-
other
42235-
promiseRejection
42236-
XHR
42237-
+ step
42238-
# Object containing break-specific auxiliary properties.
42239-
optional object data
42240-
# Hit breakpoints IDs
4224142242
```

json/browser_protocol.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17995,6 +17995,11 @@
1799517995
"name": "postData",
1799617996
"description": "Request body string, omitting files from multipart requests",
1799717997
"type": "string"
17998+
},
17999+
{
18000+
"name": "base64Encoded",
18001+
"description": "True, if content was sent as base64.",
18002+
"type": "boolean"
1799818003
}
1799918004
]
1800018005
},

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1566079",
3+
"version": "0.0.1568225",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Network.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,8 @@ domain Network
12161216
returns
12171217
# Request body string, omitting files from multipart requests
12181218
string postData
1219+
# True, if content was sent as base64.
1220+
boolean base64Encoded
12191221

12201222
# Returns content served for the given currently intercepted request.
12211223
experimental command getResponseBodyForInterception

types/protocol.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14084,6 +14084,10 @@ export namespace Protocol {
1408414084
* Request body string, omitting files from multipart requests
1408514085
*/
1408614086
postData: string;
14087+
/**
14088+
* True, if content was sent as base64.
14089+
*/
14090+
base64Encoded: boolean;
1408714091
}
1408814092

1408914093
export interface GetResponseBodyForInterceptionRequest {

0 commit comments

Comments
 (0)