devtools-protocol 0.0.1087487 → 0.0.1087713

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.
@@ -12789,7 +12789,8 @@
12789
12789
  },
12790
12790
  {
12791
12791
  "name": "getAllCookies",
12792
- "description": "Returns all browser cookies. Depending on the backend support, will return detailed cookie\ninformation in the `cookies` field.",
12792
+ "description": "Returns all browser cookies. Depending on the backend support, will return detailed cookie\ninformation in the `cookies` field.\nDeprecated. Use Storage.getCookies instead.",
12793
+ "deprecated": true,
12793
12794
  "returns": [
12794
12795
  {
12795
12796
  "name": "cookies",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1087487",
3
+ "version": "0.0.1087713",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5867,7 +5867,8 @@ domain Network
5867
5867
 
5868
5868
  # Returns all browser cookies. Depending on the backend support, will return detailed cookie
5869
5869
  # information in the `cookies` field.
5870
- command getAllCookies
5870
+ # Deprecated. Use Storage.getCookies instead.
5871
+ deprecated command getAllCookies
5871
5872
  returns
5872
5873
  # Array of cookie objects.
5873
5874
  array of Cookie cookies
@@ -3086,6 +3086,7 @@ export namespace ProtocolMapping {
3086
3086
  /**
3087
3087
  * Returns all browser cookies. Depending on the backend support, will return detailed cookie
3088
3088
  * information in the `cookies` field.
3089
+ * Deprecated. Use Storage.getCookies instead.
3089
3090
  */
3090
3091
  'Network.getAllCookies': {
3091
3092
  paramsType: [];
@@ -2221,6 +2221,7 @@ export namespace ProtocolProxyApi {
2221
2221
  /**
2222
2222
  * Returns all browser cookies. Depending on the backend support, will return detailed cookie
2223
2223
  * information in the `cookies` field.
2224
+ * Deprecated. Use Storage.getCookies instead.
2224
2225
  */
2225
2226
  getAllCookies(): Promise<Protocol.Network.GetAllCookiesResponse>;
2226
2227