devtools-protocol 0.0.1396320 → 0.0.1399977

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.
@@ -1017,11 +1017,11 @@
1017
1017
  {
1018
1018
  "name": "requestId",
1019
1019
  "description": "The unique request id.",
1020
+ "optional": true,
1020
1021
  "$ref": "Network.RequestId"
1021
1022
  },
1022
1023
  {
1023
1024
  "name": "url",
1024
- "optional": true,
1025
1025
  "type": "string"
1026
1026
  }
1027
1027
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1396320",
3
+ "version": "0.0.1399977",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -499,8 +499,8 @@ experimental domain Audits
499
499
  type AffectedRequest extends object
500
500
  properties
501
501
  # The unique request id.
502
- Network.RequestId requestId
503
- optional string url
502
+ optional Network.RequestId requestId
503
+ string url
504
504
 
505
505
  # Information about the frame affected by an inspector issue.
506
506
  type AffectedFrame extends object
@@ -3314,8 +3314,8 @@ export namespace Protocol {
3314
3314
  /**
3315
3315
  * The unique request id.
3316
3316
  */
3317
- requestId: Network.RequestId;
3318
- url?: string;
3317
+ requestId?: Network.RequestId;
3318
+ url: string;
3319
3319
  }
3320
3320
 
3321
3321
  /**