devtools-protocol 0.0.1273222 → 0.0.1275388

Sign up to get free protection for your applications and to get access to all the features.
@@ -12068,7 +12068,8 @@
12068
12068
  },
12069
12069
  {
12070
12070
  "name": "postData",
12071
- "description": "HTTP POST request data.",
12071
+ "description": "HTTP POST request data.\nUse postDataEntries instead.",
12072
+ "deprecated": true,
12072
12073
  "optional": true,
12073
12074
  "type": "string"
12074
12075
  },
@@ -12080,7 +12081,7 @@
12080
12081
  },
12081
12082
  {
12082
12083
  "name": "postDataEntries",
12083
- "description": "Request body elements. This will be converted from base64 to binary",
12084
+ "description": "Request body elements (post data broken into individual entries).",
12084
12085
  "experimental": true,
12085
12086
  "optional": true,
12086
12087
  "type": "array",
@@ -21667,6 +21668,18 @@
21667
21668
  }
21668
21669
  ]
21669
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
+ },
21670
21683
  {
21671
21684
  "name": "getRelatedWebsiteSets",
21672
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.1273222",
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",
@@ -5539,10 +5539,11 @@ domain Network
5539
5539
  # HTTP request headers.
5540
5540
  Headers headers
5541
5541
  # HTTP POST request data.
5542
- optional string postData
5542
+ # Use postDataEntries instead.
5543
+ deprecated optional string postData
5543
5544
  # True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
5544
5545
  optional boolean hasPostData
5545
- # Request body elements. This will be converted from base64 to binary
5546
+ # Request body elements (post data broken into individual entries).
5546
5547
  experimental optional array of PostDataEntry postDataEntries
5547
5548
  # The mixed content type of the request.
5548
5549
  optional Security.MixedContentType mixedContentType
@@ -10147,6 +10148,13 @@ experimental domain Storage
10147
10148
  parameters
10148
10149
  boolean enable
10149
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
+
10150
10158
  experimental type AttributionReportingSourceType extends string
10151
10159
  enum
10152
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.
@@ -10157,6 +10157,7 @@ export namespace Protocol {
10157
10157
  headers: Headers;
10158
10158
  /**
10159
10159
  * HTTP POST request data.
10160
+ * Use postDataEntries instead.
10160
10161
  */
10161
10162
  postData?: string;
10162
10163
  /**
@@ -10164,7 +10165,7 @@ export namespace Protocol {
10164
10165
  */
10165
10166
  hasPostData?: boolean;
10166
10167
  /**
10167
- * Request body elements. This will be converted from base64 to binary
10168
+ * Request body elements (post data broken into individual entries).
10168
10169
  */
10169
10170
  postDataEntries?: PostDataEntry[];
10170
10171
  /**
@@ -15930,6 +15931,13 @@ export namespace Protocol {
15930
15931
  enable: boolean;
15931
15932
  }
15932
15933
 
15934
+ export interface SendPendingAttributionReportsResponse {
15935
+ /**
15936
+ * The number of reports that were sent.
15937
+ */
15938
+ numSent: integer;
15939
+ }
15940
+
15933
15941
  export interface GetRelatedWebsiteSetsResponse {
15934
15942
  sets: RelatedWebsiteSet[];
15935
15943
  }