devtools-protocol 0.0.818814 → 0.0.818844
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 +8 -0
- package/json/browser_protocol.json +4 -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,13 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## Roll protocol to r818814
|
|
4
|
+
###### _2020-10-20 00:15:59_ | Diff: [f72d9f7...e1b8740](https://github.com/ChromeDevTools/devtools-protocol/compare/f72d9f7...e1b8740)
|
|
5
|
+
#### `Storage`: new command
|
|
6
|
+
* [`Storage.overrideQuotaForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-overrideQuotaForOrigin)
|
|
7
|
+
#### `Storage`: modified command
|
|
8
|
+
* [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota) - The `usageBreakdown` in the return value had `items` _removed_. The `usageBreakdown` in the return value had `name` _updated_. The `usageBreakdown` in the return value had `description` _updated_. The `usageBreakdown` in the return value had `type` _updated_. The return value's `usageBreakdown` _added_.
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
## Roll protocol to r816699
|
|
4
12
|
###### _2020-10-13 12:16:04_ | Diff: [d268e57...f72d9f7](https://github.com/ChromeDevTools/devtools-protocol/compare/d268e57...f72d9f7)
|
|
5
13
|
#### `Network`: modified types
|
|
@@ -1291,6 +1291,10 @@
|
|
|
1291
1291
|
"description": "Specific directive that is violated, causing the CSP issue.",
|
|
1292
1292
|
"type": "string"
|
|
1293
1293
|
},
|
|
1294
|
+
{
|
|
1295
|
+
"name": "isReportOnly",
|
|
1296
|
+
"type": "boolean"
|
|
1297
|
+
},
|
|
1294
1298
|
{
|
|
1295
1299
|
"name": "contentSecurityPolicyViolationType",
|
|
1296
1300
|
"$ref": "ContentSecurityPolicyViolationType"
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -642,6 +642,7 @@ experimental domain Audits
|
|
|
642
642
|
optional string blockedURL
|
|
643
643
|
# Specific directive that is violated, causing the CSP issue.
|
|
644
644
|
string violatedDirective
|
|
645
|
+
boolean isReportOnly
|
|
645
646
|
ContentSecurityPolicyViolationType contentSecurityPolicyViolationType
|
|
646
647
|
optional AffectedFrame frameAncestor
|
|
647
648
|
optional SourceCodeLocation sourceCodeLocation
|
package/types/protocol.d.ts
CHANGED
|
@@ -3218,6 +3218,7 @@ export namespace Protocol {
|
|
|
3218
3218
|
* Specific directive that is violated, causing the CSP issue.
|
|
3219
3219
|
*/
|
|
3220
3220
|
violatedDirective: string;
|
|
3221
|
+
isReportOnly: boolean;
|
|
3221
3222
|
contentSecurityPolicyViolationType: ContentSecurityPolicyViolationType;
|
|
3222
3223
|
frameAncestor?: AffectedFrame;
|
|
3223
3224
|
sourceCodeLocation?: SourceCodeLocation;
|