devtools-protocol 0.0.1260888 → 0.0.1261483

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.
@@ -20908,7 +20908,7 @@
20908
20908
  ]
20909
20909
  },
20910
20910
  {
20911
- "id": "AttributionReportingAggregatableValueEntry",
20911
+ "id": "AttributionReportingAggregatableValueDictEntry",
20912
20912
  "experimental": true,
20913
20913
  "type": "object",
20914
20914
  "properties": [
@@ -20923,6 +20923,24 @@
20923
20923
  }
20924
20924
  ]
20925
20925
  },
20926
+ {
20927
+ "id": "AttributionReportingAggregatableValueEntry",
20928
+ "experimental": true,
20929
+ "type": "object",
20930
+ "properties": [
20931
+ {
20932
+ "name": "values",
20933
+ "type": "array",
20934
+ "items": {
20935
+ "$ref": "AttributionReportingAggregatableValueDictEntry"
20936
+ }
20937
+ },
20938
+ {
20939
+ "name": "filters",
20940
+ "$ref": "AttributionReportingFilterPair"
20941
+ }
20942
+ ]
20943
+ },
20926
20944
  {
20927
20945
  "id": "AttributionReportingEventTriggerData",
20928
20946
  "experimental": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1260888",
3
+ "version": "0.0.1261483",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10198,13 +10198,18 @@ experimental domain Storage
10198
10198
  include
10199
10199
  exclude
10200
10200
 
10201
- experimental type AttributionReportingAggregatableValueEntry extends object
10201
+ experimental type AttributionReportingAggregatableValueDictEntry extends object
10202
10202
  properties
10203
10203
  string key
10204
10204
  # number instead of integer because not all uint32 can be represented by
10205
10205
  # int
10206
10206
  number value
10207
10207
 
10208
+ experimental type AttributionReportingAggregatableValueEntry extends object
10209
+ properties
10210
+ array of AttributionReportingAggregatableValueDictEntry values
10211
+ AttributionReportingFilterPair filters
10212
+
10208
10213
  experimental type AttributionReportingEventTriggerData extends object
10209
10214
  properties
10210
10215
  UnsignedInt64AsBase10 data
@@ -15561,7 +15561,7 @@ export namespace Protocol {
15561
15561
 
15562
15562
  export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
15563
15563
 
15564
- export interface AttributionReportingAggregatableValueEntry {
15564
+ export interface AttributionReportingAggregatableValueDictEntry {
15565
15565
  key: string;
15566
15566
  /**
15567
15567
  * number instead of integer because not all uint32 can be represented by
@@ -15570,6 +15570,11 @@ export namespace Protocol {
15570
15570
  value: number;
15571
15571
  }
15572
15572
 
15573
+ export interface AttributionReportingAggregatableValueEntry {
15574
+ values: AttributionReportingAggregatableValueDictEntry[];
15575
+ filters: AttributionReportingFilterPair;
15576
+ }
15577
+
15573
15578
  export interface AttributionReportingEventTriggerData {
15574
15579
  data: UnsignedInt64AsBase10;
15575
15580
  priority: SignedInt64AsBase10;