Skip to content

Commit 5a13632

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent ef684b8 commit 5a13632

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

gen-src/ChromeDevtoolsProtocol/Model/WebAuthn/VirtualAuthenticatorOptions.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ final class VirtualAuthenticatorOptions implements \JsonSerializable
2323
/** @var bool */
2424
public $hasUserVerification;
2525

26+
/**
27+
* If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.
28+
*
29+
* @var bool|null
30+
*/
31+
public $automaticPresenceSimulation;
32+
2633

2734
public static function fromJson($data)
2835
{
@@ -39,6 +46,9 @@ public static function fromJson($data)
3946
if (isset($data->hasUserVerification)) {
4047
$instance->hasUserVerification = (bool)$data->hasUserVerification;
4148
}
49+
if (isset($data->automaticPresenceSimulation)) {
50+
$instance->automaticPresenceSimulation = (bool)$data->automaticPresenceSimulation;
51+
}
4252
return $instance;
4353
}
4454

@@ -58,6 +68,9 @@ public function jsonSerialize()
5868
if ($this->hasUserVerification !== null) {
5969
$data->hasUserVerification = $this->hasUserVerification;
6070
}
71+
if ($this->automaticPresenceSimulation !== null) {
72+
$data->automaticPresenceSimulation = $this->automaticPresenceSimulation;
73+
}
6174
return $data;
6275
}
6376
}

protocol.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18271,6 +18271,12 @@
1827118271
{
1827218272
"name": "hasUserVerification",
1827318273
"type": "boolean"
18274+
},
18275+
{
18276+
"name": "automaticPresenceSimulation",
18277+
"description": "If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.",
18278+
"optional": true,
18279+
"type": "boolean"
1827418280
}
1827518281
]
1827618282
},

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f8d1ed13a1ba5a6ab6db14b9950b7a38 protocol.json
1+
f84d650218ecbb59e488c3dad8b340d8 protocol.json

0 commit comments

Comments
 (0)