devtools-protocol 0.0.1162774 → 0.0.1163380

Sign up to get free protection for your applications and to get access to all the features.
@@ -20293,6 +20293,18 @@
20293
20293
  }
20294
20294
  }
20295
20295
  ]
20296
+ },
20297
+ {
20298
+ "name": "setAttributionReportingLocalTestingMode",
20299
+ "description": "https://wicg.github.io/attribution-reporting-api/",
20300
+ "experimental": true,
20301
+ "parameters": [
20302
+ {
20303
+ "name": "enabled",
20304
+ "description": "If enabled, noise is suppressed and reports are sent immediately.",
20305
+ "type": "boolean"
20306
+ }
20307
+ ]
20296
20308
  }
20297
20309
  ],
20298
20310
  "events": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1162774",
3
+ "version": "0.0.1163380",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9634,6 +9634,12 @@ experimental domain Storage
9634
9634
  parameters
9635
9635
  string bucketId
9636
9636
 
9637
+ # https://wicg.github.io/attribution-reporting-api/
9638
+ experimental command setAttributionReportingLocalTestingMode
9639
+ parameters
9640
+ # If enabled, noise is suppressed and reports are sent immediately.
9641
+ boolean enabled
9642
+
9637
9643
  # The SystemInfo domain defines methods and events for querying low-level system information.
9638
9644
  experimental domain SystemInfo
9639
9645
 
@@ -4272,6 +4272,13 @@ export namespace ProtocolMapping {
4272
4272
  paramsType: [];
4273
4273
  returnType: Protocol.Storage.RunBounceTrackingMitigationsResponse;
4274
4274
  };
4275
+ /**
4276
+ * https://wicg.github.io/attribution-reporting-api/
4277
+ */
4278
+ 'Storage.setAttributionReportingLocalTestingMode': {
4279
+ paramsType: [Protocol.Storage.SetAttributionReportingLocalTestingModeRequest];
4280
+ returnType: void;
4281
+ };
4275
4282
  /**
4276
4283
  * Returns information about the system.
4277
4284
  */
@@ -3419,6 +3419,11 @@ export namespace ProtocolProxyApi {
3419
3419
  */
3420
3420
  runBounceTrackingMitigations(): Promise<Protocol.Storage.RunBounceTrackingMitigationsResponse>;
3421
3421
 
3422
+ /**
3423
+ * https://wicg.github.io/attribution-reporting-api/
3424
+ */
3425
+ setAttributionReportingLocalTestingMode(params: Protocol.Storage.SetAttributionReportingLocalTestingModeRequest): Promise<void>;
3426
+
3422
3427
  /**
3423
3428
  * A cache's contents have been modified.
3424
3429
  */
@@ -15274,6 +15274,13 @@ export namespace Protocol {
15274
15274
  deletedSites: string[];
15275
15275
  }
15276
15276
 
15277
+ export interface SetAttributionReportingLocalTestingModeRequest {
15278
+ /**
15279
+ * If enabled, noise is suppressed and reports are sent immediately.
15280
+ */
15281
+ enabled: boolean;
15282
+ }
15283
+
15277
15284
  /**
15278
15285
  * A cache's contents have been modified.
15279
15286
  */