devtools-protocol 0.0.1337664 → 0.0.1338258
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.
@@ -17785,14 +17785,16 @@
|
|
17785
17785
|
"experimental": true,
|
17786
17786
|
"type": "string",
|
17787
17787
|
"enum": [
|
17788
|
+
"anchorClick",
|
17788
17789
|
"formSubmissionGet",
|
17789
17790
|
"formSubmissionPost",
|
17790
17791
|
"httpHeaderRefresh",
|
17791
|
-
"
|
17792
|
+
"initialFrameNavigation",
|
17792
17793
|
"metaTagRefresh",
|
17794
|
+
"other",
|
17793
17795
|
"pageBlockInterstitial",
|
17794
17796
|
"reload",
|
17795
|
-
"
|
17797
|
+
"scriptInitiated"
|
17796
17798
|
]
|
17797
17799
|
},
|
17798
17800
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8369,14 +8369,16 @@ domain Page
|
|
8369
8369
|
|
8370
8370
|
experimental type ClientNavigationReason extends string
|
8371
8371
|
enum
|
8372
|
+
anchorClick
|
8372
8373
|
formSubmissionGet
|
8373
8374
|
formSubmissionPost
|
8374
8375
|
httpHeaderRefresh
|
8375
|
-
|
8376
|
+
initialFrameNavigation
|
8376
8377
|
metaTagRefresh
|
8378
|
+
other
|
8377
8379
|
pageBlockInterstitial
|
8378
8380
|
reload
|
8379
|
-
|
8381
|
+
scriptInitiated
|
8380
8382
|
|
8381
8383
|
experimental type ClientNavigationDisposition extends string
|
8382
8384
|
enum
|
package/types/protocol.d.ts
CHANGED
@@ -13773,7 +13773,7 @@ export namespace Protocol {
|
|
13773
13773
|
fixed?: integer;
|
13774
13774
|
}
|
13775
13775
|
|
13776
|
-
export type ClientNavigationReason = ('formSubmissionGet' | 'formSubmissionPost' | 'httpHeaderRefresh' | '
|
13776
|
+
export type ClientNavigationReason = ('anchorClick' | 'formSubmissionGet' | 'formSubmissionPost' | 'httpHeaderRefresh' | 'initialFrameNavigation' | 'metaTagRefresh' | 'other' | 'pageBlockInterstitial' | 'reload' | 'scriptInitiated');
|
13777
13777
|
|
13778
13778
|
export type ClientNavigationDisposition = ('currentTab' | 'newTab' | 'newWindow' | 'download');
|
13779
13779
|
|