devtools-protocol 0.0.847122 → 0.0.847576

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.
package/changelog.md CHANGED
@@ -1,5 +1,17 @@
1
1
 
2
2
 
3
+ ## Roll protocol to r847122
4
+ ###### _2021-01-26 04:16:07 -0800_ | Diff: [181f9b3...769185f](https://github.com/ChromeDevTools/devtools-protocol/compare/181f9b3...769185f)
5
+ #### `Audits`: new types
6
+ * [`Audits.SharedArrayBufferIssueType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SharedArrayBufferIssueType)
7
+ * [`Audits.SharedArrayBufferIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SharedArrayBufferIssueDetails)
8
+ #### `Audits`: removed type
9
+ * [`Audits.SharedArrayBufferTransferIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SharedArrayBufferTransferIssueDetails)
10
+ #### `Audits`: modified types
11
+ * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `SharedArrayBufferTransferIssue` _updated_.
12
+ * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The `sharedArrayBufferTransferIssueDetails` in the properties had `name` _updated_. The `sharedArrayBufferTransferIssueDetails` in the properties had `$ref` _updated_.
13
+
14
+
3
15
  ## Roll protocol to r846936
4
16
  ###### _2021-01-25 15:16:27 -0800_ | Diff: [d88313d...181f9b3](https://github.com/ChromeDevTools/devtools-protocol/compare/d88313d...181f9b3)
5
17
  #### `Network`: new event
@@ -1291,6 +1291,11 @@
1291
1291
  "id": "SourceCodeLocation",
1292
1292
  "type": "object",
1293
1293
  "properties": [
1294
+ {
1295
+ "name": "scriptId",
1296
+ "optional": true,
1297
+ "$ref": "Runtime.ScriptId"
1298
+ },
1294
1299
  {
1295
1300
  "name": "url",
1296
1301
  "type": "string"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.847122",
3
+ "version": "0.0.847576",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -645,6 +645,7 @@ experimental domain Audits
645
645
 
646
646
  type SourceCodeLocation extends object
647
647
  properties
648
+ optional Runtime.ScriptId scriptId
648
649
  string url
649
650
  integer lineNumber
650
651
  integer columnNumber
@@ -3220,6 +3220,7 @@ export namespace Protocol {
3220
3220
  export type ContentSecurityPolicyViolationType = ('kInlineViolation' | 'kEvalViolation' | 'kURLViolation' | 'kTrustedTypesSinkViolation' | 'kTrustedTypesPolicyViolation');
3221
3221
 
3222
3222
  export interface SourceCodeLocation {
3223
+ scriptId?: Runtime.ScriptId;
3223
3224
  url: string;
3224
3225
  lineNumber: integer;
3225
3226
  columnNumber: integer;