Skip to content

Commit a38625f

Browse files
committed
Roll protocol to r1448144
1 parent 82e761e commit a38625f

8 files changed

Lines changed: 60 additions & 2 deletions

changelog.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
11

22

3+
## Roll protocol to r1448144 — _2025-04-17T04:30:33.000Z_
4+
###### Diff: [`82e761e...0a4c91f`](https://github.com/ChromeDevTools/devtools-protocol/compare/82e761e...0a4c91f)
5+
6+
```diff
7+
@@ browser_protocol.pdl:11333 @@ experimental domain Storage
8+
# party URL, only the first-party URL is returned in the array.
9+
array of string matchedUrls
10+
11+
+ command setProtectedAudienceKAnonymity
12+
+ parameters
13+
+ string owner
14+
+ string name
15+
+ array of binary hashes
16+
+
17+
# The SystemInfo domain defines methods and events for querying low-level system information.
18+
experimental domain SystemInfo
19+
```
20+
321
## Roll protocol to r1447524 — _2025-04-16T04:30:24.000Z_
4-
###### Diff: [`4526a56...12a6aa9`](https://github.com/ChromeDevTools/devtools-protocol/compare/4526a56...12a6aa9)
22+
###### Diff: [`4526a56...82e761e`](https://github.com/ChromeDevTools/devtools-protocol/compare/4526a56...82e761e)
523

624
```diff
725
@@ browser_protocol.pdl:7512 @@ domain Network

json/browser_protocol.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23763,6 +23763,26 @@
2376323763
}
2376423764
}
2376523765
]
23766+
},
23767+
{
23768+
"name": "setProtectedAudienceKAnonymity",
23769+
"parameters": [
23770+
{
23771+
"name": "owner",
23772+
"type": "string"
23773+
},
23774+
{
23775+
"name": "name",
23776+
"type": "string"
23777+
},
23778+
{
23779+
"name": "hashes",
23780+
"type": "array",
23781+
"items": {
23782+
"type": "string"
23783+
}
23784+
}
23785+
]
2376623786
}
2376723787
],
2376823788
"events": [

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.1447524",
3+
"version": "0.0.1448144",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/browser_protocol.pdl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11333,6 +11333,12 @@ experimental domain Storage
1133311333
# party URL, only the first-party URL is returned in the array.
1133411334
array of string matchedUrls
1133511335

11336+
command setProtectedAudienceKAnonymity
11337+
parameters
11338+
string owner
11339+
string name
11340+
array of binary hashes
11341+
1133611342
# The SystemInfo domain defines methods and events for querying low-level system information.
1133711343
experimental domain SystemInfo
1133811344

types/protocol-mapping.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4712,6 +4712,10 @@ export namespace ProtocolMapping {
47124712
paramsType: [Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest];
47134713
returnType: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataResponse;
47144714
};
4715+
'Storage.setProtectedAudienceKAnonymity': {
4716+
paramsType: [Protocol.Storage.SetProtectedAudienceKAnonymityRequest];
4717+
returnType: void;
4718+
};
47154719
/**
47164720
* Returns information about the system.
47174721
*/

types/protocol-proxy-api.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3770,6 +3770,8 @@ export namespace ProtocolProxyApi {
37703770
*/
37713771
getAffectedUrlsForThirdPartyCookieMetadata(params: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest): Promise<Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataResponse>;
37723772

3773+
setProtectedAudienceKAnonymity(params: Protocol.Storage.SetProtectedAudienceKAnonymityRequest): Promise<void>;
3774+
37733775
/**
37743776
* A cache's contents have been modified.
37753777
*/

types/protocol-tests-proxy-api.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4068,6 +4068,8 @@ export namespace ProtocolTestsProxyApi {
40684068
*/
40694069
getAffectedUrlsForThirdPartyCookieMetadata(params: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest): Promise<{id: number, result: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataResponse, sessionId: string}>;
40704070

4071+
setProtectedAudienceKAnonymity(params: Protocol.Storage.SetProtectedAudienceKAnonymityRequest): Promise<{id: number, result: void, sessionId: string}>;
4072+
40714073
/**
40724074
* A cache's contents have been modified.
40734075
*/

types/protocol.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17037,6 +17037,12 @@ export namespace Protocol {
1703717037
matchedUrls: string[];
1703817038
}
1703917039

17040+
export interface SetProtectedAudienceKAnonymityRequest {
17041+
owner: string;
17042+
name: string;
17043+
hashes: string[];
17044+
}
17045+
1704017046
/**
1704117047
* A cache's contents have been modified.
1704217048
*/

0 commit comments

Comments
 (0)