devtools-protocol 0.0.1337664 → 0.0.1338866

Sign up to get free protection for your applications and to get access to all the features.
@@ -5603,6 +5603,8 @@
5603
5603
  "first-line-inherited",
5604
5604
  "scroll-marker",
5605
5605
  "scroll-marker-group",
5606
+ "scroll-next-button",
5607
+ "scroll-prev-button",
5606
5608
  "scrollbar",
5607
5609
  "scrollbar-thumb",
5608
5610
  "scrollbar-button",
@@ -17785,14 +17787,16 @@
17785
17787
  "experimental": true,
17786
17788
  "type": "string",
17787
17789
  "enum": [
17790
+ "anchorClick",
17788
17791
  "formSubmissionGet",
17789
17792
  "formSubmissionPost",
17790
17793
  "httpHeaderRefresh",
17791
- "scriptInitiated",
17794
+ "initialFrameNavigation",
17792
17795
  "metaTagRefresh",
17796
+ "other",
17793
17797
  "pageBlockInterstitial",
17794
17798
  "reload",
17795
- "anchorClick"
17799
+ "scriptInitiated"
17796
17800
  ]
17797
17801
  },
17798
17802
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1337664",
3
+ "version": "0.0.1338866",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2660,6 +2660,8 @@ domain DOM
2660
2660
  first-line-inherited
2661
2661
  scroll-marker
2662
2662
  scroll-marker-group
2663
+ scroll-next-button
2664
+ scroll-prev-button
2663
2665
  scrollbar
2664
2666
  scrollbar-thumb
2665
2667
  scrollbar-button
@@ -8369,14 +8371,16 @@ domain Page
8369
8371
 
8370
8372
  experimental type ClientNavigationReason extends string
8371
8373
  enum
8374
+ anchorClick
8372
8375
  formSubmissionGet
8373
8376
  formSubmissionPost
8374
8377
  httpHeaderRefresh
8375
- scriptInitiated
8378
+ initialFrameNavigation
8376
8379
  metaTagRefresh
8380
+ other
8377
8381
  pageBlockInterstitial
8378
8382
  reload
8379
- anchorClick
8383
+ scriptInitiated
8380
8384
 
8381
8385
  experimental type ClientNavigationDisposition extends string
8382
8386
  enum
@@ -5976,7 +5976,7 @@ export namespace Protocol {
5976
5976
  /**
5977
5977
  * Pseudo element type.
5978
5978
  */
5979
- export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new');
5979
+ export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new');
5980
5980
 
5981
5981
  /**
5982
5982
  * Shadow root type.
@@ -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