devtools-protocol 0.0.1188743 → 0.0.1191157

Sign up to get free protection for your applications and to get access to all the features.
@@ -20108,6 +20108,26 @@
20108
20108
  }
20109
20109
  ]
20110
20110
  },
20111
+ {
20112
+ "id": "AttributionReportingEventReportWindows",
20113
+ "experimental": true,
20114
+ "type": "object",
20115
+ "properties": [
20116
+ {
20117
+ "name": "start",
20118
+ "description": "duration in seconds",
20119
+ "type": "integer"
20120
+ },
20121
+ {
20122
+ "name": "ends",
20123
+ "description": "duration in seconds",
20124
+ "type": "array",
20125
+ "items": {
20126
+ "type": "integer"
20127
+ }
20128
+ }
20129
+ ]
20130
+ },
20111
20131
  {
20112
20132
  "id": "AttributionReportingSourceRegistration",
20113
20133
  "experimental": true,
@@ -20125,10 +20145,15 @@
20125
20145
  },
20126
20146
  {
20127
20147
  "name": "eventReportWindow",
20128
- "description": "duration in seconds",
20148
+ "description": "eventReportWindow and eventReportWindows are mutually exclusive\nduration in seconds",
20129
20149
  "optional": true,
20130
20150
  "type": "integer"
20131
20151
  },
20152
+ {
20153
+ "name": "eventReportWindows",
20154
+ "optional": true,
20155
+ "$ref": "AttributionReportingEventReportWindows"
20156
+ },
20132
20157
  {
20133
20158
  "name": "aggregatableReportWindow",
20134
20159
  "description": "duration in seconds",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1188743",
3
+ "version": "0.0.1191157",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9770,13 +9770,22 @@ experimental domain Storage
9770
9770
  string key
9771
9771
  UnsignedInt128AsBase16 value
9772
9772
 
9773
+ experimental type AttributionReportingEventReportWindows extends object
9774
+ properties
9775
+ # duration in seconds
9776
+ integer start
9777
+ # duration in seconds
9778
+ array of integer ends
9779
+
9773
9780
  experimental type AttributionReportingSourceRegistration extends object
9774
9781
  properties
9775
9782
  Network.TimeSinceEpoch time
9776
9783
  # duration in seconds
9777
9784
  optional integer expiry
9785
+ # eventReportWindow and eventReportWindows are mutually exclusive
9778
9786
  # duration in seconds
9779
9787
  optional integer eventReportWindow
9788
+ optional AttributionReportingEventReportWindows eventReportWindows
9780
9789
  # duration in seconds
9781
9790
  optional integer aggregatableReportWindow
9782
9791
  AttributionReportingSourceType type
@@ -15167,6 +15167,17 @@ export namespace Protocol {
15167
15167
  value: UnsignedInt128AsBase16;
15168
15168
  }
15169
15169
 
15170
+ export interface AttributionReportingEventReportWindows {
15171
+ /**
15172
+ * duration in seconds
15173
+ */
15174
+ start: integer;
15175
+ /**
15176
+ * duration in seconds
15177
+ */
15178
+ ends: integer[];
15179
+ }
15180
+
15170
15181
  export interface AttributionReportingSourceRegistration {
15171
15182
  time: Network.TimeSinceEpoch;
15172
15183
  /**
@@ -15174,9 +15185,11 @@ export namespace Protocol {
15174
15185
  */
15175
15186
  expiry?: integer;
15176
15187
  /**
15188
+ * eventReportWindow and eventReportWindows are mutually exclusive
15177
15189
  * duration in seconds
15178
15190
  */
15179
15191
  eventReportWindow?: integer;
15192
+ eventReportWindows?: AttributionReportingEventReportWindows;
15180
15193
  /**
15181
15194
  * duration in seconds
15182
15195
  */