devtools-protocol 0.0.952091 → 0.0.955313

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.
@@ -4355,7 +4355,11 @@
4355
4355
  "scrollbar-track-piece",
4356
4356
  "scrollbar-corner",
4357
4357
  "resizer",
4358
- "input-list-button"
4358
+ "input-list-button",
4359
+ "transition",
4360
+ "transition-container",
4361
+ "transition-old-content",
4362
+ "transition-new-content"
4359
4363
  ]
4360
4364
  },
4361
4365
  {
@@ -15718,6 +15722,34 @@
15718
15722
  "$ref": "BackForwardCacheNotRestoredReason"
15719
15723
  }
15720
15724
  ]
15725
+ },
15726
+ {
15727
+ "id": "BackForwardCacheNotRestoredExplanationTree",
15728
+ "experimental": true,
15729
+ "type": "object",
15730
+ "properties": [
15731
+ {
15732
+ "name": "url",
15733
+ "description": "URL of each frame",
15734
+ "type": "string"
15735
+ },
15736
+ {
15737
+ "name": "explanations",
15738
+ "description": "Not restored reasons of each frame",
15739
+ "type": "array",
15740
+ "items": {
15741
+ "$ref": "BackForwardCacheNotRestoredExplanation"
15742
+ }
15743
+ },
15744
+ {
15745
+ "name": "children",
15746
+ "description": "Array of children frame",
15747
+ "type": "array",
15748
+ "items": {
15749
+ "$ref": "BackForwardCacheNotRestoredExplanationTree"
15750
+ }
15751
+ }
15752
+ ]
15721
15753
  }
15722
15754
  ],
15723
15755
  "commands": [
@@ -17246,6 +17278,12 @@
17246
17278
  "items": {
17247
17279
  "$ref": "BackForwardCacheNotRestoredExplanation"
17248
17280
  }
17281
+ },
17282
+ {
17283
+ "name": "notRestoredExplanationsTree",
17284
+ "description": "Tree structure of reasons why the page could not be cached for each frame.",
17285
+ "optional": true,
17286
+ "$ref": "BackForwardCacheNotRestoredExplanationTree"
17249
17287
  }
17250
17288
  ]
17251
17289
  },
@@ -20846,6 +20884,12 @@
20846
20884
  "optional": true,
20847
20885
  "type": "boolean"
20848
20886
  },
20887
+ {
20888
+ "name": "hasMinPinLength",
20889
+ "description": "If set to true, the authenticator will support the minPinLength extension.\nhttps://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension\nDefaults to false.",
20890
+ "optional": true,
20891
+ "type": "boolean"
20892
+ },
20849
20893
  {
20850
20894
  "name": "automaticPresenceSimulation",
20851
20895
  "description": "If set to true, tests of user presence will succeed immediately.\nOtherwise, they will not be resolved. Defaults to true.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.952091",
3
+ "version": "0.0.955313",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2049,6 +2049,10 @@ domain DOM
2049
2049
  scrollbar-corner
2050
2050
  resizer
2051
2051
  input-list-button
2052
+ transition
2053
+ transition-container
2054
+ transition-old-content
2055
+ transition-new-content
2052
2056
 
2053
2057
  # Shadow root type.
2054
2058
  type ShadowRootType extends string
@@ -8096,6 +8100,15 @@ domain Page
8096
8100
  # Not restored reason
8097
8101
  BackForwardCacheNotRestoredReason reason
8098
8102
 
8103
+ experimental type BackForwardCacheNotRestoredExplanationTree extends object
8104
+ properties
8105
+ # URL of each frame
8106
+ string url
8107
+ # Not restored reasons of each frame
8108
+ array of BackForwardCacheNotRestoredExplanation explanations
8109
+ # Array of children frame
8110
+ array of BackForwardCacheNotRestoredExplanationTree children
8111
+
8099
8112
  # Fired for failed bfcache history navigations if BackForwardCache feature is enabled. Do
8100
8113
  # not assume any ordering with the Page.frameNavigated event. This event is fired only for
8101
8114
  # main-frame history navigation where the document changes (non-same-document navigations),
@@ -8108,6 +8121,8 @@ domain Page
8108
8121
  FrameId frameId
8109
8122
  # Array of reasons why the page could not be cached. This must not be empty.
8110
8123
  array of BackForwardCacheNotRestoredExplanation notRestoredExplanations
8124
+ # Tree structure of reasons why the page could not be cached for each frame.
8125
+ optional BackForwardCacheNotRestoredExplanationTree notRestoredExplanationsTree
8111
8126
 
8112
8127
  event loadEventFired
8113
8128
  parameters
@@ -9780,6 +9795,10 @@ experimental domain WebAuthn
9780
9795
  # https://fidoalliance.org/specs/fido-v2.1-rd-20201208/fido-client-to-authenticator-protocol-v2.1-rd-20201208.html#sctn-credBlob-extension
9781
9796
  # Defaults to false.
9782
9797
  optional boolean hasCredBlob
9798
+ # If set to true, the authenticator will support the minPinLength extension.
9799
+ # https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
9800
+ # Defaults to false.
9801
+ optional boolean hasMinPinLength
9783
9802
  # If set to true, tests of user presence will succeed immediately.
9784
9803
  # Otherwise, they will not be resolved. Defaults to true.
9785
9804
  optional boolean automaticPresenceSimulation
@@ -5075,7 +5075,7 @@ export namespace Protocol {
5075
5075
  /**
5076
5076
  * Pseudo element type.
5077
5077
  */
5078
- export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button');
5078
+ export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'transition' | 'transition-container' | 'transition-old-content' | 'transition-new-content');
5079
5079
 
5080
5080
  /**
5081
5081
  * Shadow root type.
@@ -12387,6 +12387,21 @@ export namespace Protocol {
12387
12387
  reason: BackForwardCacheNotRestoredReason;
12388
12388
  }
12389
12389
 
12390
+ export interface BackForwardCacheNotRestoredExplanationTree {
12391
+ /**
12392
+ * URL of each frame
12393
+ */
12394
+ url: string;
12395
+ /**
12396
+ * Not restored reasons of each frame
12397
+ */
12398
+ explanations: BackForwardCacheNotRestoredExplanation[];
12399
+ /**
12400
+ * Array of children frame
12401
+ */
12402
+ children: BackForwardCacheNotRestoredExplanationTree[];
12403
+ }
12404
+
12390
12405
  export interface AddScriptToEvaluateOnLoadRequest {
12391
12406
  scriptSource: string;
12392
12407
  }
@@ -13382,6 +13397,10 @@ export namespace Protocol {
13382
13397
  * Array of reasons why the page could not be cached. This must not be empty.
13383
13398
  */
13384
13399
  notRestoredExplanations: BackForwardCacheNotRestoredExplanation[];
13400
+ /**
13401
+ * Tree structure of reasons why the page could not be cached for each frame.
13402
+ */
13403
+ notRestoredExplanationsTree?: BackForwardCacheNotRestoredExplanationTree;
13385
13404
  }
13386
13405
 
13387
13406
  export interface LoadEventFiredEvent {
@@ -15628,6 +15647,12 @@ export namespace Protocol {
15628
15647
  * Defaults to false.
15629
15648
  */
15630
15649
  hasCredBlob?: boolean;
15650
+ /**
15651
+ * If set to true, the authenticator will support the minPinLength extension.
15652
+ * https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
15653
+ * Defaults to false.
15654
+ */
15655
+ hasMinPinLength?: boolean;
15631
15656
  /**
15632
15657
  * If set to true, tests of user presence will succeed immediately.
15633
15658
  * Otherwise, they will not be resolved. Defaults to true.