devtools-protocol 0.0.1260275 → 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.
@@ -2227,6 +2227,11 @@
2227
2227
  "description": "The filling strategy",
2228
2228
  "$ref": "FillingStrategy"
2229
2229
  },
2230
+ {
2231
+ "name": "frameId",
2232
+ "description": "The frame the field belongs to",
2233
+ "$ref": "Page.FrameId"
2234
+ },
2230
2235
  {
2231
2236
  "name": "fieldId",
2232
2237
  "description": "The form field's DOM node",
@@ -20903,7 +20908,7 @@
20903
20908
  ]
20904
20909
  },
20905
20910
  {
20906
- "id": "AttributionReportingAggregatableValueEntry",
20911
+ "id": "AttributionReportingAggregatableValueDictEntry",
20907
20912
  "experimental": true,
20908
20913
  "type": "object",
20909
20914
  "properties": [
@@ -20918,6 +20923,24 @@
20918
20923
  }
20919
20924
  ]
20920
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
+ },
20921
20944
  {
20922
20945
  "id": "AttributionReportingEventTriggerData",
20923
20946
  "experimental": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1260275",
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",
@@ -1110,6 +1110,8 @@ experimental domain Autofill
1110
1110
  string autofillType
1111
1111
  # The filling strategy
1112
1112
  FillingStrategy fillingStrategy
1113
+ # The frame the field belongs to
1114
+ Page.FrameId frameId
1113
1115
  # The form field's DOM node
1114
1116
  DOM.BackendNodeId fieldId
1115
1117
 
@@ -10196,13 +10198,18 @@ experimental domain Storage
10196
10198
  include
10197
10199
  exclude
10198
10200
 
10199
- experimental type AttributionReportingAggregatableValueEntry extends object
10201
+ experimental type AttributionReportingAggregatableValueDictEntry extends object
10200
10202
  properties
10201
10203
  string key
10202
10204
  # number instead of integer because not all uint32 can be represented by
10203
10205
  # int
10204
10206
  number value
10205
10207
 
10208
+ experimental type AttributionReportingAggregatableValueEntry extends object
10209
+ properties
10210
+ array of AttributionReportingAggregatableValueDictEntry values
10211
+ AttributionReportingFilterPair filters
10212
+
10206
10213
  experimental type AttributionReportingEventTriggerData extends object
10207
10214
  properties
10208
10215
  UnsignedInt64AsBase10 data
@@ -3843,6 +3843,10 @@ export namespace Protocol {
3843
3843
  * The filling strategy
3844
3844
  */
3845
3845
  fillingStrategy: FillingStrategy;
3846
+ /**
3847
+ * The frame the field belongs to
3848
+ */
3849
+ frameId: Page.FrameId;
3846
3850
  /**
3847
3851
  * The form field's DOM node
3848
3852
  */
@@ -15557,7 +15561,7 @@ export namespace Protocol {
15557
15561
 
15558
15562
  export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
15559
15563
 
15560
- export interface AttributionReportingAggregatableValueEntry {
15564
+ export interface AttributionReportingAggregatableValueDictEntry {
15561
15565
  key: string;
15562
15566
  /**
15563
15567
  * number instead of integer because not all uint32 can be represented by
@@ -15566,6 +15570,11 @@ export namespace Protocol {
15566
15570
  value: number;
15567
15571
  }
15568
15572
 
15573
+ export interface AttributionReportingAggregatableValueEntry {
15574
+ values: AttributionReportingAggregatableValueDictEntry[];
15575
+ filters: AttributionReportingFilterPair;
15576
+ }
15577
+
15569
15578
  export interface AttributionReportingEventTriggerData {
15570
15579
  data: UnsignedInt64AsBase10;
15571
15580
  priority: SignedInt64AsBase10;