devtools-protocol 0.0.1456087 → 0.0.1457408
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.
@@ -13444,6 +13444,7 @@
|
|
13444
13444
|
"mixed-content",
|
13445
13445
|
"origin",
|
13446
13446
|
"inspector",
|
13447
|
+
"integrity",
|
13447
13448
|
"subresource-filter",
|
13448
13449
|
"content-type",
|
13449
13450
|
"coep-frame-resource-needs-coep-header",
|
@@ -15751,7 +15752,7 @@
|
|
15751
15752
|
},
|
15752
15753
|
{
|
15753
15754
|
"name": "setCookieControls",
|
15754
|
-
"description": "Sets Controls for third-party cookie access\nPage reload is required before the new cookie
|
15755
|
+
"description": "Sets Controls for third-party cookie access\nPage reload is required before the new cookie behavior will be observed",
|
15755
15756
|
"experimental": true,
|
15756
15757
|
"parameters": [
|
15757
15758
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -6223,6 +6223,7 @@ domain Network
|
|
6223
6223
|
mixed-content
|
6224
6224
|
origin
|
6225
6225
|
inspector
|
6226
|
+
integrity
|
6226
6227
|
subresource-filter
|
6227
6228
|
content-type
|
6228
6229
|
coep-frame-resource-needs-coep-header
|
@@ -7958,7 +7959,7 @@ domain Network
|
|
7958
7959
|
LoadNetworkResourcePageResult resource
|
7959
7960
|
|
7960
7961
|
# Sets Controls for third-party cookie access
|
7961
|
-
# Page reload is required before the new cookie
|
7962
|
+
# Page reload is required before the new cookie behavior will be observed
|
7962
7963
|
experimental command setCookieControls
|
7963
7964
|
parameters
|
7964
7965
|
# Whether 3pc restriction is enabled.
|
@@ -3719,7 +3719,7 @@ export namespace ProtocolMapping {
|
|
3719
3719
|
};
|
3720
3720
|
/**
|
3721
3721
|
* Sets Controls for third-party cookie access
|
3722
|
-
* Page reload is required before the new cookie
|
3722
|
+
* Page reload is required before the new cookie behavior will be observed
|
3723
3723
|
*/
|
3724
3724
|
'Network.setCookieControls': {
|
3725
3725
|
paramsType: [Protocol.Network.SetCookieControlsRequest];
|
@@ -2611,7 +2611,7 @@ export namespace ProtocolProxyApi {
|
|
2611
2611
|
|
2612
2612
|
/**
|
2613
2613
|
* Sets Controls for third-party cookie access
|
2614
|
-
* Page reload is required before the new cookie
|
2614
|
+
* Page reload is required before the new cookie behavior will be observed
|
2615
2615
|
*/
|
2616
2616
|
setCookieControls(params: Protocol.Network.SetCookieControlsRequest): Promise<void>;
|
2617
2617
|
|
@@ -2751,7 +2751,7 @@ export namespace ProtocolTestsProxyApi {
|
|
2751
2751
|
|
2752
2752
|
/**
|
2753
2753
|
* Sets Controls for third-party cookie access
|
2754
|
-
* Page reload is required before the new cookie
|
2754
|
+
* Page reload is required before the new cookie behavior will be observed
|
2755
2755
|
*/
|
2756
2756
|
setCookieControls(params: Protocol.Network.SetCookieControlsRequest): Promise<{id: number, result: void, sessionId: string}>;
|
2757
2757
|
|
package/types/protocol.d.ts
CHANGED
@@ -10954,7 +10954,7 @@ export namespace Protocol {
|
|
10954
10954
|
/**
|
10955
10955
|
* The reason why request was blocked.
|
10956
10956
|
*/
|
10957
|
-
export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site' | 'sri-message-signature-mismatch');
|
10957
|
+
export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'integrity' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site' | 'sri-message-signature-mismatch');
|
10958
10958
|
|
10959
10959
|
/**
|
10960
10960
|
* The reason why request was blocked.
|