Skip to content

Commit e416e48

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent 4318225 commit e416e48

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ final class DeprecationIssueTypeEnum
2424
public const DEPRECATION_EXAMPLE = 'DeprecationExample';
2525
public const DOCUMENT_DOMAIN_SETTING_WITHOUT_ORIGIN_AGENT_CLUSTER_HEADER = 'DocumentDomainSettingWithoutOriginAgentClusterHeader';
2626
public const EVENT_PATH = 'EventPath';
27-
public const EXPECT_C_T_HEADER = 'ExpectCTHeader';
2827
public const GEOLOCATION_INSECURE_ORIGIN = 'GeolocationInsecureOrigin';
2928
public const GEOLOCATION_INSECURE_ORIGIN_DEPRECATED_NOT_REMOVED = 'GeolocationInsecureOriginDeprecatedNotRemoved';
3029
public const GET_USER_MEDIA_INSECURE_ORIGIN = 'GetUserMediaInsecureOrigin';

gen-src/ChromeDevtoolsProtocol/Model/Network/SecurityDetails.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,20 @@ final class SecurityDetails implements \JsonSerializable
102102
*/
103103
public $certificateTransparencyCompliance;
104104

105+
/**
106+
* The signature algorithm used by the server in the TLS server signature, represented as a TLS SignatureScheme code point. Omitted if not applicable or not known.
107+
*
108+
* @var int|null
109+
*/
110+
public $serverSignatureAlgorithm;
111+
112+
/**
113+
* Whether the connection used Encrypted ClientHello
114+
*
115+
* @var bool
116+
*/
117+
public $encryptedClientHello;
118+
105119

106120
/**
107121
* @param object $data
@@ -155,6 +169,12 @@ public static function fromJson($data)
155169
if (isset($data->certificateTransparencyCompliance)) {
156170
$instance->certificateTransparencyCompliance = (string)$data->certificateTransparencyCompliance;
157171
}
172+
if (isset($data->serverSignatureAlgorithm)) {
173+
$instance->serverSignatureAlgorithm = (int)$data->serverSignatureAlgorithm;
174+
}
175+
if (isset($data->encryptedClientHello)) {
176+
$instance->encryptedClientHello = (bool)$data->encryptedClientHello;
177+
}
158178
return $instance;
159179
}
160180

@@ -207,6 +227,12 @@ public function jsonSerialize()
207227
if ($this->certificateTransparencyCompliance !== null) {
208228
$data->certificateTransparencyCompliance = $this->certificateTransparencyCompliance;
209229
}
230+
if ($this->serverSignatureAlgorithm !== null) {
231+
$data->serverSignatureAlgorithm = $this->serverSignatureAlgorithm;
232+
}
233+
if ($this->encryptedClientHello !== null) {
234+
$data->encryptedClientHello = $this->encryptedClientHello;
235+
}
210236
return $data;
211237
}
212238
}

protocol.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,6 @@
15601560
"DeprecationExample",
15611561
"DocumentDomainSettingWithoutOriginAgentClusterHeader",
15621562
"EventPath",
1563-
"ExpectCTHeader",
15641563
"GeolocationInsecureOrigin",
15651564
"GeolocationInsecureOriginDeprecatedNotRemoved",
15661565
"GetUserMediaInsecureOrigin",
@@ -13490,6 +13489,17 @@
1349013489
"name": "certificateTransparencyCompliance",
1349113490
"description": "Whether the request complied with Certificate Transparency policy",
1349213491
"$ref": "CertificateTransparencyCompliance"
13492+
},
13493+
{
13494+
"name": "serverSignatureAlgorithm",
13495+
"description": "The signature algorithm used by the server in the TLS server signature, represented as a TLS SignatureScheme code point. Omitted if not applicable or not known.",
13496+
"optional": true,
13497+
"type": "integer"
13498+
},
13499+
{
13500+
"name": "encryptedClientHello",
13501+
"description": "Whether the connection used Encrypted ClientHello",
13502+
"type": "boolean"
1349313503
}
1349413504
]
1349513505
},

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
08ae06db649c50671368a8f6a5cec24b protocol.json
1+
bd494623754b7d547367e4907507420d protocol.json

0 commit comments

Comments
 (0)