devtools-protocol 0.0.1273771 → 0.0.1275388

Sign up to get free protection for your applications and to get access to all the features.
@@ -21668,6 +21668,18 @@
21668
21668
  }
21669
21669
  ]
21670
21670
  },
21671
+ {
21672
+ "name": "sendPendingAttributionReports",
21673
+ "description": "Sends all pending Attribution Reports immediately, regardless of their\nscheduled report time.",
21674
+ "experimental": true,
21675
+ "returns": [
21676
+ {
21677
+ "name": "numSent",
21678
+ "description": "The number of reports that were sent.",
21679
+ "type": "integer"
21680
+ }
21681
+ ]
21682
+ },
21671
21683
  {
21672
21684
  "name": "getRelatedWebsiteSets",
21673
21685
  "description": "Returns the effective Related Website Sets in use by this profile for the browser\nsession. The effective Related Website Sets will not change during a browser session.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1273771",
3
+ "version": "0.0.1275388",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10148,6 +10148,13 @@ experimental domain Storage
10148
10148
  parameters
10149
10149
  boolean enable
10150
10150
 
10151
+ # Sends all pending Attribution Reports immediately, regardless of their
10152
+ # scheduled report time.
10153
+ experimental command sendPendingAttributionReports
10154
+ returns
10155
+ # The number of reports that were sent.
10156
+ integer numSent
10157
+
10151
10158
  experimental type AttributionReportingSourceType extends string
10152
10159
  enum
10153
10160
  navigation
@@ -4392,6 +4392,14 @@ export namespace ProtocolMapping {
4392
4392
  paramsType: [Protocol.Storage.SetAttributionReportingTrackingRequest];
4393
4393
  returnType: void;
4394
4394
  };
4395
+ /**
4396
+ * Sends all pending Attribution Reports immediately, regardless of their
4397
+ * scheduled report time.
4398
+ */
4399
+ 'Storage.sendPendingAttributionReports': {
4400
+ paramsType: [];
4401
+ returnType: Protocol.Storage.SendPendingAttributionReportsResponse;
4402
+ };
4395
4403
  /**
4396
4404
  * Returns the effective Related Website Sets in use by this profile for the browser
4397
4405
  * session. The effective Related Website Sets will not change during a browser session.
@@ -3493,6 +3493,12 @@ export namespace ProtocolProxyApi {
3493
3493
  */
3494
3494
  setAttributionReportingTracking(params: Protocol.Storage.SetAttributionReportingTrackingRequest): Promise<void>;
3495
3495
 
3496
+ /**
3497
+ * Sends all pending Attribution Reports immediately, regardless of their
3498
+ * scheduled report time.
3499
+ */
3500
+ sendPendingAttributionReports(): Promise<Protocol.Storage.SendPendingAttributionReportsResponse>;
3501
+
3496
3502
  /**
3497
3503
  * Returns the effective Related Website Sets in use by this profile for the browser
3498
3504
  * session. The effective Related Website Sets will not change during a browser session.
@@ -3765,6 +3765,12 @@ export namespace ProtocolTestsProxyApi {
3765
3765
  */
3766
3766
  setAttributionReportingTracking(params: Protocol.Storage.SetAttributionReportingTrackingRequest): Promise<void>;
3767
3767
 
3768
+ /**
3769
+ * Sends all pending Attribution Reports immediately, regardless of their
3770
+ * scheduled report time.
3771
+ */
3772
+ sendPendingAttributionReports(): Promise<Protocol.Storage.SendPendingAttributionReportsResponse>;
3773
+
3768
3774
  /**
3769
3775
  * Returns the effective Related Website Sets in use by this profile for the browser
3770
3776
  * session. The effective Related Website Sets will not change during a browser session.
@@ -15931,6 +15931,13 @@ export namespace Protocol {
15931
15931
  enable: boolean;
15932
15932
  }
15933
15933
 
15934
+ export interface SendPendingAttributionReportsResponse {
15935
+ /**
15936
+ * The number of reports that were sent.
15937
+ */
15938
+ numSent: integer;
15939
+ }
15940
+
15934
15941
  export interface GetRelatedWebsiteSetsResponse {
15935
15942
  sets: RelatedWebsiteSet[];
15936
15943
  }