devtools-protocol 0.0.1087487 → 0.0.1087818
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",
|
@@ -16443,7 +16444,9 @@
|
|
16443
16444
|
"ActivationNavigationParameterMismatch",
|
16444
16445
|
"ActivatedInBackground",
|
16445
16446
|
"EmbedderHostDisallowed",
|
16446
|
-
"ActivationNavigationDestroyedBeforeSuccess"
|
16447
|
+
"ActivationNavigationDestroyedBeforeSuccess",
|
16448
|
+
"TabClosedByUserGesture",
|
16449
|
+
"TabClosedWithoutUserGesture"
|
16447
16450
|
]
|
16448
16451
|
}
|
16449
16452
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
-
|
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
|
@@ -8554,6 +8555,8 @@ domain Page
|
|
8554
8555
|
ActivatedInBackground
|
8555
8556
|
EmbedderHostDisallowed
|
8556
8557
|
ActivationNavigationDestroyedBeforeSuccess
|
8558
|
+
TabClosedByUserGesture
|
8559
|
+
TabClosedWithoutUserGesture
|
8557
8560
|
|
8558
8561
|
# Fired when a prerender attempt is completed.
|
8559
8562
|
experimental event prerenderAttemptCompleted
|
@@ -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
|
|
package/types/protocol.d.ts
CHANGED
@@ -12876,7 +12876,7 @@ export namespace Protocol {
|
|
12876
12876
|
/**
|
12877
12877
|
* List of FinalStatus reasons for Prerender2.
|
12878
12878
|
*/
|
12879
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess');
|
12879
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture');
|
12880
12880
|
|
12881
12881
|
export interface AddScriptToEvaluateOnLoadRequest {
|
12882
12882
|
scriptSource: string;
|