devtools-protocol 0.0.952438 → 0.0.955664

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.
@@ -1598,6 +1598,10 @@
1598
1598
  "deprecated": true,
1599
1599
  "optional": true,
1600
1600
  "type": "string"
1601
+ },
1602
+ {
1603
+ "name": "deprecationType",
1604
+ "type": "string"
1601
1605
  }
1602
1606
  ]
1603
1607
  },
@@ -15722,6 +15726,34 @@
15722
15726
  "$ref": "BackForwardCacheNotRestoredReason"
15723
15727
  }
15724
15728
  ]
15729
+ },
15730
+ {
15731
+ "id": "BackForwardCacheNotRestoredExplanationTree",
15732
+ "experimental": true,
15733
+ "type": "object",
15734
+ "properties": [
15735
+ {
15736
+ "name": "url",
15737
+ "description": "URL of each frame",
15738
+ "type": "string"
15739
+ },
15740
+ {
15741
+ "name": "explanations",
15742
+ "description": "Not restored reasons of each frame",
15743
+ "type": "array",
15744
+ "items": {
15745
+ "$ref": "BackForwardCacheNotRestoredExplanation"
15746
+ }
15747
+ },
15748
+ {
15749
+ "name": "children",
15750
+ "description": "Array of children frame",
15751
+ "type": "array",
15752
+ "items": {
15753
+ "$ref": "BackForwardCacheNotRestoredExplanationTree"
15754
+ }
15755
+ }
15756
+ ]
15725
15757
  }
15726
15758
  ],
15727
15759
  "commands": [
@@ -17250,6 +17282,12 @@
17250
17282
  "items": {
17251
17283
  "$ref": "BackForwardCacheNotRestoredExplanation"
17252
17284
  }
17285
+ },
17286
+ {
17287
+ "name": "notRestoredExplanationsTree",
17288
+ "description": "Tree structure of reasons why the page could not be cached for each frame.",
17289
+ "optional": true,
17290
+ "$ref": "BackForwardCacheNotRestoredExplanationTree"
17253
17291
  }
17254
17292
  ]
17255
17293
  },
@@ -20850,6 +20888,12 @@
20850
20888
  "optional": true,
20851
20889
  "type": "boolean"
20852
20890
  },
20891
+ {
20892
+ "name": "hasMinPinLength",
20893
+ "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.",
20894
+ "optional": true,
20895
+ "type": "boolean"
20896
+ },
20853
20897
  {
20854
20898
  "name": "automaticPresenceSimulation",
20855
20899
  "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.952438",
3
+ "version": "0.0.955664",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -769,6 +769,7 @@ experimental domain Audits
769
769
  # instead. This standard was abandoned in January, 1970. See
770
770
  # https://www.chromestatus.com/feature/5684870116278272 for more details."
771
771
  deprecated optional string message
772
+ string deprecationType
772
773
 
773
774
  type ClientHintIssueReason extends string
774
775
  enum
@@ -8100,6 +8101,15 @@ domain Page
8100
8101
  # Not restored reason
8101
8102
  BackForwardCacheNotRestoredReason reason
8102
8103
 
8104
+ experimental type BackForwardCacheNotRestoredExplanationTree extends object
8105
+ properties
8106
+ # URL of each frame
8107
+ string url
8108
+ # Not restored reasons of each frame
8109
+ array of BackForwardCacheNotRestoredExplanation explanations
8110
+ # Array of children frame
8111
+ array of BackForwardCacheNotRestoredExplanationTree children
8112
+
8103
8113
  # Fired for failed bfcache history navigations if BackForwardCache feature is enabled. Do
8104
8114
  # not assume any ordering with the Page.frameNavigated event. This event is fired only for
8105
8115
  # main-frame history navigation where the document changes (non-same-document navigations),
@@ -8112,6 +8122,8 @@ domain Page
8112
8122
  FrameId frameId
8113
8123
  # Array of reasons why the page could not be cached. This must not be empty.
8114
8124
  array of BackForwardCacheNotRestoredExplanation notRestoredExplanations
8125
+ # Tree structure of reasons why the page could not be cached for each frame.
8126
+ optional BackForwardCacheNotRestoredExplanationTree notRestoredExplanationsTree
8115
8127
 
8116
8128
  event loadEventFired
8117
8129
  parameters
@@ -9784,6 +9796,10 @@ experimental domain WebAuthn
9784
9796
  # https://fidoalliance.org/specs/fido-v2.1-rd-20201208/fido-client-to-authenticator-protocol-v2.1-rd-20201208.html#sctn-credBlob-extension
9785
9797
  # Defaults to false.
9786
9798
  optional boolean hasCredBlob
9799
+ # If set to true, the authenticator will support the minPinLength extension.
9800
+ # https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
9801
+ # Defaults to false.
9802
+ optional boolean hasMinPinLength
9787
9803
  # If set to true, tests of user presence will succeed immediately.
9788
9804
  # Otherwise, they will not be resolved. Defaults to true.
9789
9805
  optional boolean automaticPresenceSimulation
@@ -3334,6 +3334,7 @@ export namespace Protocol {
3334
3334
  * https://www.chromestatus.com/feature/5684870116278272 for more details."
3335
3335
  */
3336
3336
  message?: string;
3337
+ deprecationType: string;
3337
3338
  }
3338
3339
 
3339
3340
  export type ClientHintIssueReason = ('MetaTagAllowListInvalidOrigin' | 'MetaTagModifiedHTML');
@@ -12387,6 +12388,21 @@ export namespace Protocol {
12387
12388
  reason: BackForwardCacheNotRestoredReason;
12388
12389
  }
12389
12390
 
12391
+ export interface BackForwardCacheNotRestoredExplanationTree {
12392
+ /**
12393
+ * URL of each frame
12394
+ */
12395
+ url: string;
12396
+ /**
12397
+ * Not restored reasons of each frame
12398
+ */
12399
+ explanations: BackForwardCacheNotRestoredExplanation[];
12400
+ /**
12401
+ * Array of children frame
12402
+ */
12403
+ children: BackForwardCacheNotRestoredExplanationTree[];
12404
+ }
12405
+
12390
12406
  export interface AddScriptToEvaluateOnLoadRequest {
12391
12407
  scriptSource: string;
12392
12408
  }
@@ -13382,6 +13398,10 @@ export namespace Protocol {
13382
13398
  * Array of reasons why the page could not be cached. This must not be empty.
13383
13399
  */
13384
13400
  notRestoredExplanations: BackForwardCacheNotRestoredExplanation[];
13401
+ /**
13402
+ * Tree structure of reasons why the page could not be cached for each frame.
13403
+ */
13404
+ notRestoredExplanationsTree?: BackForwardCacheNotRestoredExplanationTree;
13385
13405
  }
13386
13406
 
13387
13407
  export interface LoadEventFiredEvent {
@@ -15628,6 +15648,12 @@ export namespace Protocol {
15628
15648
  * Defaults to false.
15629
15649
  */
15630
15650
  hasCredBlob?: boolean;
15651
+ /**
15652
+ * If set to true, the authenticator will support the minPinLength extension.
15653
+ * https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
15654
+ * Defaults to false.
15655
+ */
15656
+ hasMinPinLength?: boolean;
15631
15657
  /**
15632
15658
  * If set to true, tests of user presence will succeed immediately.
15633
15659
  * Otherwise, they will not be resolved. Defaults to true.