devtools-protocol 0.0.1205644 → 0.0.1206220
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.
@@ -20218,24 +20218,15 @@
|
|
20218
20218
|
{
|
20219
20219
|
"name": "expiry",
|
20220
20220
|
"description": "duration in seconds",
|
20221
|
-
"optional": true,
|
20222
|
-
"type": "integer"
|
20223
|
-
},
|
20224
|
-
{
|
20225
|
-
"name": "eventReportWindow",
|
20226
|
-
"description": "eventReportWindow and eventReportWindows are mutually exclusive\nduration in seconds",
|
20227
|
-
"optional": true,
|
20228
20221
|
"type": "integer"
|
20229
20222
|
},
|
20230
20223
|
{
|
20231
20224
|
"name": "eventReportWindows",
|
20232
|
-
"optional": true,
|
20233
20225
|
"$ref": "AttributionReportingEventReportWindows"
|
20234
20226
|
},
|
20235
20227
|
{
|
20236
20228
|
"name": "aggregatableReportWindow",
|
20237
20229
|
"description": "duration in seconds",
|
20238
|
-
"optional": true,
|
20239
20230
|
"type": "integer"
|
20240
20231
|
},
|
20241
20232
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9824,13 +9824,10 @@ experimental domain Storage
|
|
9824
9824
|
properties
|
9825
9825
|
Network.TimeSinceEpoch time
|
9826
9826
|
# duration in seconds
|
9827
|
-
|
9828
|
-
|
9827
|
+
integer expiry
|
9828
|
+
AttributionReportingEventReportWindows eventReportWindows
|
9829
9829
|
# duration in seconds
|
9830
|
-
|
9831
|
-
optional AttributionReportingEventReportWindows eventReportWindows
|
9832
|
-
# duration in seconds
|
9833
|
-
optional integer aggregatableReportWindow
|
9830
|
+
integer aggregatableReportWindow
|
9834
9831
|
AttributionReportingSourceType type
|
9835
9832
|
string sourceOrigin
|
9836
9833
|
string reportingOrigin
|
package/types/protocol.d.ts
CHANGED
@@ -15198,17 +15198,12 @@ export namespace Protocol {
|
|
15198
15198
|
/**
|
15199
15199
|
* duration in seconds
|
15200
15200
|
*/
|
15201
|
-
expiry
|
15201
|
+
expiry: integer;
|
15202
|
+
eventReportWindows: AttributionReportingEventReportWindows;
|
15202
15203
|
/**
|
15203
|
-
* eventReportWindow and eventReportWindows are mutually exclusive
|
15204
15204
|
* duration in seconds
|
15205
15205
|
*/
|
15206
|
-
|
15207
|
-
eventReportWindows?: AttributionReportingEventReportWindows;
|
15208
|
-
/**
|
15209
|
-
* duration in seconds
|
15210
|
-
*/
|
15211
|
-
aggregatableReportWindow?: integer;
|
15206
|
+
aggregatableReportWindow: integer;
|
15212
15207
|
type: AttributionReportingSourceType;
|
15213
15208
|
sourceOrigin: string;
|
15214
15209
|
reportingOrigin: string;
|