devtools-protocol 0.0.1447524 → 0.0.1448144

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.
@@ -23763,6 +23763,26 @@
23763
23763
  }
23764
23764
  }
23765
23765
  ]
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
+ ]
23766
23786
  }
23767
23787
  ],
23768
23788
  "events": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1447524",
3
+ "version": "0.0.1448144",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -11333,6 +11333,12 @@ experimental domain Storage
11333
11333
  # party URL, only the first-party URL is returned in the array.
11334
11334
  array of string matchedUrls
11335
11335
 
11336
+ command setProtectedAudienceKAnonymity
11337
+ parameters
11338
+ string owner
11339
+ string name
11340
+ array of binary hashes
11341
+
11336
11342
  # The SystemInfo domain defines methods and events for querying low-level system information.
11337
11343
  experimental domain SystemInfo
11338
11344
 
@@ -4712,6 +4712,10 @@ export namespace ProtocolMapping {
4712
4712
  paramsType: [Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest];
4713
4713
  returnType: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataResponse;
4714
4714
  };
4715
+ 'Storage.setProtectedAudienceKAnonymity': {
4716
+ paramsType: [Protocol.Storage.SetProtectedAudienceKAnonymityRequest];
4717
+ returnType: void;
4718
+ };
4715
4719
  /**
4716
4720
  * Returns information about the system.
4717
4721
  */
@@ -3770,6 +3770,8 @@ export namespace ProtocolProxyApi {
3770
3770
  */
3771
3771
  getAffectedUrlsForThirdPartyCookieMetadata(params: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest): Promise<Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataResponse>;
3772
3772
 
3773
+ setProtectedAudienceKAnonymity(params: Protocol.Storage.SetProtectedAudienceKAnonymityRequest): Promise<void>;
3774
+
3773
3775
  /**
3774
3776
  * A cache's contents have been modified.
3775
3777
  */
@@ -4068,6 +4068,8 @@ export namespace ProtocolTestsProxyApi {
4068
4068
  */
4069
4069
  getAffectedUrlsForThirdPartyCookieMetadata(params: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest): Promise<{id: number, result: Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataResponse, sessionId: string}>;
4070
4070
 
4071
+ setProtectedAudienceKAnonymity(params: Protocol.Storage.SetProtectedAudienceKAnonymityRequest): Promise<{id: number, result: void, sessionId: string}>;
4072
+
4071
4073
  /**
4072
4074
  * A cache's contents have been modified.
4073
4075
  */
@@ -17037,6 +17037,12 @@ export namespace Protocol {
17037
17037
  matchedUrls: string[];
17038
17038
  }
17039
17039
 
17040
+ export interface SetProtectedAudienceKAnonymityRequest {
17041
+ owner: string;
17042
+ name: string;
17043
+ hashes: string[];
17044
+ }
17045
+
17040
17046
  /**
17041
17047
  * A cache's contents have been modified.
17042
17048
  */