Skip to content

Commit

Permalink
Roll protocol to r1399977
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Dec 24, 2024
1 parent 17f0c33 commit 6abdabb
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
19 changes: 18 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@


## Roll protocol to r1399977 — _2024-12-24T04:29:08.000Z_
###### Diff: [`17f0c33...23441e6`](https://github.com/ChromeDevTools/devtools-protocol/compare/17f0c33...23441e6)

```diff
@@ browser_protocol.pdl:499 @@ experimental domain Audits
type AffectedRequest extends object
properties
# The unique request id.
- Network.RequestId requestId
- optional string url
+ optional Network.RequestId requestId
+ string url

# Information about the frame affected by an inspector issue.
type AffectedFrame extends object
```

## Roll protocol to r1396320 — _2024-12-14T04:29:52.000Z_
###### Diff: [`e61f211...8337043`](https://github.com/ChromeDevTools/devtools-protocol/compare/e61f211...8337043)
###### Diff: [`e61f211...17f0c33`](https://github.com/ChromeDevTools/devtools-protocol/compare/e61f211...17f0c33)

```diff
@@ browser_protocol.pdl:2255 @@ experimental domain CSS
Expand Down
2 changes: 1 addition & 1 deletion json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -1017,11 +1017,11 @@
{
"name": "requestId",
"description": "The unique request id.",
"optional": true,
"$ref": "Network.RequestId"
},
{
"name": "url",
"optional": true,
"type": "string"
}
]
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.1396320",
"version": "0.0.1399977",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
4 changes: 2 additions & 2 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,8 @@ experimental domain Audits
type AffectedRequest extends object
properties
# The unique request id.
Network.RequestId requestId
optional string url
optional Network.RequestId requestId
string url

# Information about the frame affected by an inspector issue.
type AffectedFrame extends object
Expand Down
4 changes: 2 additions & 2 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3314,8 +3314,8 @@ export namespace Protocol {
/**
* The unique request id.
*/
requestId: Network.RequestId;
url?: string;
requestId?: Network.RequestId;
url: string;
}

/**
Expand Down

0 comments on commit 6abdabb

Please sign in to comment.