Skip to content

Commit 50f4bb0

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent 1d2af13 commit 50f4bb0

File tree

5 files changed

+34
-3
lines changed

5 files changed

+34
-3
lines changed

gen-src/ChromeDevtoolsProtocol/Model/Audits/DeprecationIssueTypeEnum.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ final class DeprecationIssueTypeEnum
3737
public const NO_SYSEX_WEB_M_I_D_I_WITHOUT_PERMISSION = 'NoSysexWebMIDIWithoutPermission';
3838
public const NOTIFICATION_INSECURE_ORIGIN = 'NotificationInsecureOrigin';
3939
public const NOTIFICATION_PERMISSION_REQUESTED_IFRAME = 'NotificationPermissionRequestedIframe';
40+
public const OBSOLETE_CREATE_IMAGE_BITMAP_IMAGE_ORIENTATION_NONE = 'ObsoleteCreateImageBitmapImageOrientationNone';
4041
public const OBSOLETE_WEB_RTC_CIPHER_SUITE = 'ObsoleteWebRtcCipherSuite';
4142
public const OPEN_WEB_DATABASE_INSECURE_CONTEXT = 'OpenWebDatabaseInsecureContext';
4243
public const OVERFLOW_VISIBLE_ON_REPLACED_ELEMENT = 'OverflowVisibleOnReplacedElement';

gen-src/ChromeDevtoolsProtocol/Model/Emulation/UserAgentMetadata.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,18 @@
1111
*/
1212
final class UserAgentMetadata implements \JsonSerializable
1313
{
14-
/** @var UserAgentBrandVersion[]|null */
14+
/**
15+
* Brands appearing in Sec-CH-UA.
16+
*
17+
* @var UserAgentBrandVersion[]|null
18+
*/
1519
public $brands;
1620

17-
/** @var UserAgentBrandVersion[]|null */
21+
/**
22+
* Brands appearing in Sec-CH-UA-Full-Version-List.
23+
*
24+
* @var UserAgentBrandVersion[]|null
25+
*/
1826
public $fullVersionList;
1927

2028
/** @var string|null */

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ final class VirtualAuthenticatorOptions implements \JsonSerializable
5959
*/
6060
public $hasMinPinLength;
6161

62+
/**
63+
* If set to true, the authenticator will support the prf extension. https://w3c.github.io/webauthn/#prf-extension Defaults to false.
64+
*
65+
* @var bool|null
66+
*/
67+
public $hasPrf;
68+
6269
/**
6370
* If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.
6471
*
@@ -105,6 +112,9 @@ public static function fromJson($data)
105112
if (isset($data->hasMinPinLength)) {
106113
$instance->hasMinPinLength = (bool)$data->hasMinPinLength;
107114
}
115+
if (isset($data->hasPrf)) {
116+
$instance->hasPrf = (bool)$data->hasPrf;
117+
}
108118
if (isset($data->automaticPresenceSimulation)) {
109119
$instance->automaticPresenceSimulation = (bool)$data->automaticPresenceSimulation;
110120
}
@@ -142,6 +152,9 @@ public function jsonSerialize()
142152
if ($this->hasMinPinLength !== null) {
143153
$data->hasMinPinLength = $this->hasMinPinLength;
144154
}
155+
if ($this->hasPrf !== null) {
156+
$data->hasPrf = $this->hasPrf;
157+
}
145158
if ($this->automaticPresenceSimulation !== null) {
146159
$data->automaticPresenceSimulation = $this->automaticPresenceSimulation;
147160
}

protocol.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1592,6 +1592,7 @@
15921592
"NoSysexWebMIDIWithoutPermission",
15931593
"NotificationInsecureOrigin",
15941594
"NotificationPermissionRequestedIframe",
1595+
"ObsoleteCreateImageBitmapImageOrientationNone",
15951596
"ObsoleteWebRtcCipherSuite",
15961597
"OpenWebDatabaseInsecureContext",
15971598
"OverflowVisibleOnReplacedElement",
@@ -9453,6 +9454,7 @@
94539454
"properties": [
94549455
{
94559456
"name": "brands",
9457+
"description": "Brands appearing in Sec-CH-UA.",
94569458
"optional": true,
94579459
"type": "array",
94589460
"items": {
@@ -9461,6 +9463,7 @@
94619463
},
94629464
{
94639465
"name": "fullVersionList",
9466+
"description": "Brands appearing in Sec-CH-UA-Full-Version-List.",
94649467
"optional": true,
94659468
"type": "array",
94669469
"items": {
@@ -26205,6 +26208,12 @@
2620526208
"optional": true,
2620626209
"type": "boolean"
2620726210
},
26211+
{
26212+
"name": "hasPrf",
26213+
"description": "If set to true, the authenticator will support the prf extension. https://w3c.github.io/webauthn/#prf-extension Defaults to false.",
26214+
"optional": true,
26215+
"type": "boolean"
26216+
},
2620826217
{
2620926218
"name": "automaticPresenceSimulation",
2621026219
"description": "If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.",

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b2a1cc87e3b2b3ac10350b1dbc5a4ca1 protocol.json
1+
4833f48d9bb2a96b8f886e2ebb632981 protocol.json

0 commit comments

Comments
 (0)