devtools-protocol 0.0.1045489 → 0.0.1046751

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.
@@ -17902,8 +17902,8 @@
17902
17902
  "$ref": "PrerenderFinalStatus"
17903
17903
  },
17904
17904
  {
17905
- "name": "reasonDetails",
17906
- "description": "This is used to give users more information about the cancellation details,\nand this will be formatted for display.",
17905
+ "name": "disallowedApiMethod",
17906
+ "description": "This is used to give users more information about the name of the API call\nthat is incompatible with prerender and has caused the cancellation of the attempt",
17907
17907
  "optional": true,
17908
17908
  "type": "string"
17909
17909
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1045489",
3
+ "version": "0.0.1046751",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8475,9 +8475,9 @@ domain Page
8475
8475
  FrameId initiatingFrameId
8476
8476
  string prerenderingUrl
8477
8477
  PrerenderFinalStatus finalStatus
8478
- # This is used to give users more information about the cancellation details,
8479
- # and this will be formatted for display.
8480
- optional string reasonDetails
8478
+ # This is used to give users more information about the name of the API call
8479
+ # that is incompatible with prerender and has caused the cancellation of the attempt
8480
+ optional string disallowedApiMethod
8481
8481
 
8482
8482
  event loadEventFired
8483
8483
  parameters
@@ -13879,10 +13879,10 @@ export namespace Protocol {
13879
13879
  prerenderingUrl: string;
13880
13880
  finalStatus: PrerenderFinalStatus;
13881
13881
  /**
13882
- * This is used to give users more information about the cancellation details,
13883
- * and this will be formatted for display.
13882
+ * This is used to give users more information about the name of the API call
13883
+ * that is incompatible with prerender and has caused the cancellation of the attempt
13884
13884
  */
13885
- reasonDetails?: string;
13885
+ disallowedApiMethod?: string;
13886
13886
  }
13887
13887
 
13888
13888
  export interface LoadEventFiredEvent {