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 +12 -0
- package/json/browser_protocol.json +5 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +1 -0
- package/types/protocol.d.ts +1 -0
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
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
|
@@ -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;
|