devtools-protocol 0.0.1523998 → 0.0.1526016
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/json/browser_protocol.json +10 -8
- package/package.json +1 -1
- package/pdl/domains/Browser.pdl +9 -8
- package/pdl/domains/Network.pdl +3 -3
- package/pdl/domains/Preload.pdl +1 -0
- package/types/protocol-mapping.d.ts +4 -2
- package/types/protocol-proxy-api.d.ts +4 -2
- package/types/protocol-tests-proxy-api.d.ts +4 -2
- package/types/protocol.d.ts +9 -9
@@ -3532,7 +3532,7 @@
|
|
3532
3532
|
"commands": [
|
3533
3533
|
{
|
3534
3534
|
"name": "setPermission",
|
3535
|
-
"description": "Set permission settings for given
|
3535
|
+
"description": "Set permission settings for given embedding and embedded origins.",
|
3536
3536
|
"experimental": true,
|
3537
3537
|
"parameters": [
|
3538
3538
|
{
|
@@ -3547,13 +3547,13 @@
|
|
3547
3547
|
},
|
3548
3548
|
{
|
3549
3549
|
"name": "origin",
|
3550
|
-
"description": "
|
3550
|
+
"description": "Embedding origin the permission applies to, all origins if not specified.",
|
3551
3551
|
"optional": true,
|
3552
3552
|
"type": "string"
|
3553
3553
|
},
|
3554
3554
|
{
|
3555
|
-
"name": "
|
3556
|
-
"description": "
|
3555
|
+
"name": "embeddedOrigin",
|
3556
|
+
"description": "Embedded origin the permission applies to. It is ignored unless the embedding origin is\npresent and valid. If the embedding origin is provided but the embedded origin isn't, the\nembedding origin is used as the embedded origin.",
|
3557
3557
|
"optional": true,
|
3558
3558
|
"type": "string"
|
3559
3559
|
},
|
@@ -3567,8 +3567,9 @@
|
|
3567
3567
|
},
|
3568
3568
|
{
|
3569
3569
|
"name": "grantPermissions",
|
3570
|
-
"description": "Grant specific permissions to the given origin and reject all others.",
|
3570
|
+
"description": "Grant specific permissions to the given origin and reject all others. Deprecated. Use\nsetPermission instead.",
|
3571
3571
|
"experimental": true,
|
3572
|
+
"deprecated": true,
|
3572
3573
|
"parameters": [
|
3573
3574
|
{
|
3574
3575
|
"name": "permissions",
|
@@ -16551,7 +16552,7 @@
|
|
16551
16552
|
"properties": [
|
16552
16553
|
{
|
16553
16554
|
"name": "urlPattern",
|
16554
|
-
"description": "Only matching requests will be affected by these conditions. Patterns use the URLPattern constructor string\nsyntax (https://urlpattern.spec.whatwg.org/). If the pattern is empty, all requests are
|
16555
|
+
"description": "Only matching requests will be affected by these conditions. Patterns use the URLPattern constructor string\nsyntax (https://urlpattern.spec.whatwg.org/) and must be absolute. If the pattern is empty, all requests are\nmatched (including p2p connections).",
|
16555
16556
|
"type": "string"
|
16556
16557
|
},
|
16557
16558
|
{
|
@@ -17573,7 +17574,7 @@
|
|
17573
17574
|
"parameters": [
|
17574
17575
|
{
|
17575
17576
|
"name": "urlPatterns",
|
17576
|
-
"description": "URL patterns to block. Patterns use the URLPattern constructor string syntax\n(https://urlpattern.spec.whatwg.org/). Example: `*://*:*/*.css`.",
|
17577
|
+
"description": "URL patterns to block. Patterns use the URLPattern constructor string syntax\n(https://urlpattern.spec.whatwg.org/) and must be absolute. Example: `*://*:*/*.css`.",
|
17577
17578
|
"optional": true,
|
17578
17579
|
"type": "array",
|
17579
17580
|
"items": {
|
@@ -24236,7 +24237,8 @@
|
|
24236
24237
|
"type": "string",
|
24237
24238
|
"enum": [
|
24238
24239
|
"Prefetch",
|
24239
|
-
"Prerender"
|
24240
|
+
"Prerender",
|
24241
|
+
"PrerenderUntilScript"
|
24240
24242
|
]
|
24241
24243
|
},
|
24242
24244
|
{
|
package/package.json
CHANGED
package/pdl/domains/Browser.pdl
CHANGED
@@ -103,24 +103,25 @@ domain Browser
|
|
103
103
|
closeTabSearch
|
104
104
|
openGlic
|
105
105
|
|
106
|
-
# Set permission settings for given
|
106
|
+
# Set permission settings for given embedding and embedded origins.
|
107
107
|
experimental command setPermission
|
108
108
|
parameters
|
109
109
|
# Descriptor of permission to override.
|
110
110
|
PermissionDescriptor permission
|
111
111
|
# Setting of the permission.
|
112
112
|
PermissionSetting setting
|
113
|
-
#
|
113
|
+
# Embedding origin the permission applies to, all origins if not specified.
|
114
114
|
optional string origin
|
115
|
-
#
|
116
|
-
# present and valid. If the
|
117
|
-
#
|
118
|
-
optional string
|
115
|
+
# Embedded origin the permission applies to. It is ignored unless the embedding origin is
|
116
|
+
# present and valid. If the embedding origin is provided but the embedded origin isn't, the
|
117
|
+
# embedding origin is used as the embedded origin.
|
118
|
+
optional string embeddedOrigin
|
119
119
|
# Context to override. When omitted, default browser context is used.
|
120
120
|
optional BrowserContextID browserContextId
|
121
121
|
|
122
|
-
# Grant specific permissions to the given origin and reject all others.
|
123
|
-
|
122
|
+
# Grant specific permissions to the given origin and reject all others. Deprecated. Use
|
123
|
+
# setPermission instead.
|
124
|
+
experimental deprecated command grantPermissions
|
124
125
|
parameters
|
125
126
|
array of PermissionType permissions
|
126
127
|
# Origin the permission applies to, all origins if not specified.
|
package/pdl/domains/Network.pdl
CHANGED
@@ -1090,8 +1090,8 @@ domain Network
|
|
1090
1090
|
experimental type NetworkConditions extends object
|
1091
1091
|
properties
|
1092
1092
|
# Only matching requests will be affected by these conditions. Patterns use the URLPattern constructor string
|
1093
|
-
# syntax (https://urlpattern.spec.whatwg.org/). If the pattern is empty, all requests are
|
1094
|
-
# connections).
|
1093
|
+
# syntax (https://urlpattern.spec.whatwg.org/) and must be absolute. If the pattern is empty, all requests are
|
1094
|
+
# matched (including p2p connections).
|
1095
1095
|
string urlPattern
|
1096
1096
|
# Minimum latency from request sent to response headers received (ms).
|
1097
1097
|
number latency
|
@@ -1269,7 +1269,7 @@ domain Network
|
|
1269
1269
|
experimental command setBlockedURLs
|
1270
1270
|
parameters
|
1271
1271
|
# URL patterns to block. Patterns use the URLPattern constructor string syntax
|
1272
|
-
# (https://urlpattern.spec.whatwg.org/). Example: `*://*:*/*.css`.
|
1272
|
+
# (https://urlpattern.spec.whatwg.org/) and must be absolute. Example: `*://*:*/*.css`.
|
1273
1273
|
optional array of string urlPatterns
|
1274
1274
|
# URL patterns to block. Wildcards ('*') are allowed.
|
1275
1275
|
deprecated optional array of string urls
|
package/pdl/domains/Preload.pdl
CHANGED
@@ -1928,7 +1928,7 @@ export namespace ProtocolMapping {
|
|
1928
1928
|
returnType: void;
|
1929
1929
|
};
|
1930
1930
|
/**
|
1931
|
-
* Set permission settings for given
|
1931
|
+
* Set permission settings for given embedding and embedded origins.
|
1932
1932
|
* @experimental
|
1933
1933
|
*/
|
1934
1934
|
'Browser.setPermission': {
|
@@ -1936,7 +1936,9 @@ export namespace ProtocolMapping {
|
|
1936
1936
|
returnType: void;
|
1937
1937
|
};
|
1938
1938
|
/**
|
1939
|
-
* Grant specific permissions to the given origin and reject all others.
|
1939
|
+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
|
1940
|
+
* setPermission instead.
|
1941
|
+
* @deprecated
|
1940
1942
|
* @experimental
|
1941
1943
|
*/
|
1942
1944
|
'Browser.grantPermissions': {
|
@@ -1035,13 +1035,15 @@ export namespace ProtocolProxyApi {
|
|
1035
1035
|
|
1036
1036
|
export interface BrowserApi {
|
1037
1037
|
/**
|
1038
|
-
* Set permission settings for given
|
1038
|
+
* Set permission settings for given embedding and embedded origins.
|
1039
1039
|
* @experimental
|
1040
1040
|
*/
|
1041
1041
|
setPermission(params: Protocol.Browser.SetPermissionRequest): Promise<void>;
|
1042
1042
|
|
1043
1043
|
/**
|
1044
|
-
* Grant specific permissions to the given origin and reject all others.
|
1044
|
+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
|
1045
|
+
* setPermission instead.
|
1046
|
+
* @deprecated
|
1045
1047
|
* @experimental
|
1046
1048
|
*/
|
1047
1049
|
grantPermissions(params: Protocol.Browser.GrantPermissionsRequest): Promise<void>;
|
@@ -1105,13 +1105,15 @@ export namespace ProtocolTestsProxyApi {
|
|
1105
1105
|
|
1106
1106
|
export interface BrowserApi {
|
1107
1107
|
/**
|
1108
|
-
* Set permission settings for given
|
1108
|
+
* Set permission settings for given embedding and embedded origins.
|
1109
1109
|
* @experimental
|
1110
1110
|
*/
|
1111
1111
|
setPermission(params: Protocol.Browser.SetPermissionRequest): Promise<{id: number, result: void, sessionId: string}>;
|
1112
1112
|
|
1113
1113
|
/**
|
1114
|
-
* Grant specific permissions to the given origin and reject all others.
|
1114
|
+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
|
1115
|
+
* setPermission instead.
|
1116
|
+
* @deprecated
|
1115
1117
|
* @experimental
|
1116
1118
|
*/
|
1117
1119
|
grantPermissions(params: Protocol.Browser.GrantPermissionsRequest): Promise<{id: number, result: void, sessionId: string}>;
|
package/types/protocol.d.ts
CHANGED
@@ -4624,15 +4624,15 @@ export namespace Protocol {
|
|
4624
4624
|
*/
|
4625
4625
|
setting: PermissionSetting;
|
4626
4626
|
/**
|
4627
|
-
*
|
4627
|
+
* Embedding origin the permission applies to, all origins if not specified.
|
4628
4628
|
*/
|
4629
4629
|
origin?: string;
|
4630
4630
|
/**
|
4631
|
-
*
|
4632
|
-
* present and valid. If the
|
4633
|
-
*
|
4631
|
+
* Embedded origin the permission applies to. It is ignored unless the embedding origin is
|
4632
|
+
* present and valid. If the embedding origin is provided but the embedded origin isn't, the
|
4633
|
+
* embedding origin is used as the embedded origin.
|
4634
4634
|
*/
|
4635
|
-
|
4635
|
+
embeddedOrigin?: string;
|
4636
4636
|
/**
|
4637
4637
|
* Context to override. When omitted, default browser context is used.
|
4638
4638
|
*/
|
@@ -13193,8 +13193,8 @@ export namespace Protocol {
|
|
13193
13193
|
export interface NetworkConditions {
|
13194
13194
|
/**
|
13195
13195
|
* Only matching requests will be affected by these conditions. Patterns use the URLPattern constructor string
|
13196
|
-
* syntax (https://urlpattern.spec.whatwg.org/). If the pattern is empty, all requests are
|
13197
|
-
* connections).
|
13196
|
+
* syntax (https://urlpattern.spec.whatwg.org/) and must be absolute. If the pattern is empty, all requests are
|
13197
|
+
* matched (including p2p connections).
|
13198
13198
|
*/
|
13199
13199
|
urlPattern: string;
|
13200
13200
|
/**
|
@@ -13816,7 +13816,7 @@ export namespace Protocol {
|
|
13816
13816
|
export interface SetBlockedURLsRequest {
|
13817
13817
|
/**
|
13818
13818
|
* URL patterns to block. Patterns use the URLPattern constructor string syntax
|
13819
|
-
* (https://urlpattern.spec.whatwg.org/). Example:
|
13819
|
+
* (https://urlpattern.spec.whatwg.org/) and must be absolute. Example: `*://*:*\/*.css`.
|
13820
13820
|
*/
|
13821
13821
|
urlPatterns?: string[];
|
13822
13822
|
/**
|
@@ -18149,7 +18149,7 @@ export namespace Protocol {
|
|
18149
18149
|
* mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it
|
18150
18150
|
* isn't being used by clients).
|
18151
18151
|
*/
|
18152
|
-
export type SpeculationAction = ('Prefetch' | 'Prerender');
|
18152
|
+
export type SpeculationAction = ('Prefetch' | 'Prerender' | 'PrerenderUntilScript');
|
18153
18153
|
|
18154
18154
|
/**
|
18155
18155
|
* Corresponds to mojom::SpeculationTargetHint.
|