devtools-protocol 0.0.1337664 → 0.0.1338258

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- "scriptInitiated",
17792
+ "initialFrameNavigation",
17792
17793
  "metaTagRefresh",
17794
+ "other",
17793
17795
  "pageBlockInterstitial",
17794
17796
  "reload",
17795
- "anchorClick"
17797
+ "scriptInitiated"
17796
17798
  ]
17797
17799
  },
17798
17800
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1337664",
3
+ "version": "0.0.1338258",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
- scriptInitiated
8376
+ initialFrameNavigation
8376
8377
  metaTagRefresh
8378
+ other
8377
8379
  pageBlockInterstitial
8378
8380
  reload
8379
- anchorClick
8381
+ scriptInitiated
8380
8382
 
8381
8383
  experimental type ClientNavigationDisposition extends string
8382
8384
  enum
@@ -13773,7 +13773,7 @@ export namespace Protocol {
13773
13773
  fixed?: integer;
13774
13774
  }
13775
13775
 
13776
- export type ClientNavigationReason = ('formSubmissionGet' | 'formSubmissionPost' | 'httpHeaderRefresh' | 'scriptInitiated' | 'metaTagRefresh' | 'pageBlockInterstitial' | 'reload' | 'anchorClick');
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