devtools-protocol 0.0.1226504 → 0.0.1227218
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.
@@ -12625,6 +12625,7 @@
|
|
12625
12625
|
"name": "sameParty",
|
12626
12626
|
"description": "True if cookie is SameParty.",
|
12627
12627
|
"experimental": true,
|
12628
|
+
"deprecated": true,
|
12628
12629
|
"type": "boolean"
|
12629
12630
|
},
|
12630
12631
|
{
|
@@ -17679,23 +17680,6 @@
|
|
17679
17680
|
}
|
17680
17681
|
]
|
17681
17682
|
},
|
17682
|
-
{
|
17683
|
-
"name": "getCookies",
|
17684
|
-
"description": "Returns all browser cookies for the page and all of its subframes. Depending\non the backend support, will return detailed cookie information in the\n`cookies` field.",
|
17685
|
-
"experimental": true,
|
17686
|
-
"deprecated": true,
|
17687
|
-
"redirect": "Network",
|
17688
|
-
"returns": [
|
17689
|
-
{
|
17690
|
-
"name": "cookies",
|
17691
|
-
"description": "Array of cookie objects.",
|
17692
|
-
"type": "array",
|
17693
|
-
"items": {
|
17694
|
-
"$ref": "Network.Cookie"
|
17695
|
-
}
|
17696
|
-
}
|
17697
|
-
]
|
17698
|
-
},
|
17699
17683
|
{
|
17700
17684
|
"name": "getFrameTree",
|
17701
17685
|
"description": "Returns present frame tree structure.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -5827,7 +5827,7 @@ domain Network
|
|
5827
5827
|
# Cookie Priority
|
5828
5828
|
experimental CookiePriority priority
|
5829
5829
|
# True if cookie is SameParty.
|
5830
|
-
experimental boolean sameParty
|
5830
|
+
experimental deprecated boolean sameParty
|
5831
5831
|
# Cookie source scheme type.
|
5832
5832
|
experimental CookieSourceScheme sourceScheme
|
5833
5833
|
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
|
@@ -8155,16 +8155,6 @@ domain Page
|
|
8155
8155
|
# as an ad. Only sent if frame is labelled as an ad and id is available.
|
8156
8156
|
optional AdScriptId adScriptId
|
8157
8157
|
|
8158
|
-
# Returns all browser cookies for the page and all of its subframes. Depending
|
8159
|
-
# on the backend support, will return detailed cookie information in the
|
8160
|
-
# `cookies` field.
|
8161
|
-
experimental deprecated command getCookies
|
8162
|
-
# Use 'Network.getCookies' instead
|
8163
|
-
redirect Network
|
8164
|
-
returns
|
8165
|
-
# Array of cookie objects.
|
8166
|
-
array of Network.Cookie cookies
|
8167
|
-
|
8168
8158
|
# Returns present frame tree structure.
|
8169
8159
|
command getFrameTree
|
8170
8160
|
returns
|
@@ -3678,15 +3678,6 @@ export namespace ProtocolMapping {
|
|
3678
3678
|
paramsType: [Protocol.Page.GetAdScriptIdRequest];
|
3679
3679
|
returnType: Protocol.Page.GetAdScriptIdResponse;
|
3680
3680
|
};
|
3681
|
-
/**
|
3682
|
-
* Returns all browser cookies for the page and all of its subframes. Depending
|
3683
|
-
* on the backend support, will return detailed cookie information in the
|
3684
|
-
* `cookies` field.
|
3685
|
-
*/
|
3686
|
-
'Page.getCookies': {
|
3687
|
-
paramsType: [];
|
3688
|
-
returnType: Protocol.Page.GetCookiesResponse;
|
3689
|
-
};
|
3690
3681
|
/**
|
3691
3682
|
* Returns present frame tree structure.
|
3692
3683
|
*/
|
@@ -2816,13 +2816,6 @@ export namespace ProtocolProxyApi {
|
|
2816
2816
|
|
2817
2817
|
getAdScriptId(params: Protocol.Page.GetAdScriptIdRequest): Promise<Protocol.Page.GetAdScriptIdResponse>;
|
2818
2818
|
|
2819
|
-
/**
|
2820
|
-
* Returns all browser cookies for the page and all of its subframes. Depending
|
2821
|
-
* on the backend support, will return detailed cookie information in the
|
2822
|
-
* `cookies` field.
|
2823
|
-
*/
|
2824
|
-
getCookies(): Promise<Protocol.Page.GetCookiesResponse>;
|
2825
|
-
|
2826
2819
|
/**
|
2827
2820
|
* Returns present frame tree structure.
|
2828
2821
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -13631,13 +13631,6 @@ export namespace Protocol {
|
|
13631
13631
|
adScriptId?: AdScriptId;
|
13632
13632
|
}
|
13633
13633
|
|
13634
|
-
export interface GetCookiesResponse {
|
13635
|
-
/**
|
13636
|
-
* Array of cookie objects.
|
13637
|
-
*/
|
13638
|
-
cookies: Network.Cookie[];
|
13639
|
-
}
|
13640
|
-
|
13641
13634
|
export interface GetFrameTreeResponse {
|
13642
13635
|
/**
|
13643
13636
|
* Present frame tree structure.
|