Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 9b4290b

Browse files
KellelKellen Fox
and
Kellen Fox
authored
Fix #200 Update tlsClientAuth object to reflect docs (#256)
Co-authored-by: Kellen Fox <[email protected]>
1 parent f45703c commit 9b4290b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.changeset/wicked-hairs-give.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cloudflare/workers-types": minor
3+
---
4+
5+
Update tlsClientAuth properties

overrides/cf.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,13 @@ interface IncomingRequestCfPropertiesBotManagement {
352352
interface IncomingRequestCfPropertiesTLSClientAuth {
353353
certIssuerDNLegacy: string;
354354
certIssuerDN: string;
355+
certIssuerDNRFC2253: string;
356+
certIssuerSKI: string;
357+
certIssuerSerial: string;
355358
certPresented: "0" | "1";
356359
certSubjectDNLegacy: string;
357360
certSubjectDN: string;
361+
certSubjectDNRFC2253: string;
358362
/** In format "Dec 22 19:39:00 2018 GMT" */
359363
certNotBefore: string;
360364
/** In format "Dec 22 19:39:00 2018 GMT" */
@@ -363,6 +367,8 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
363367
certFingerprintSHA1: string;
364368
/** "SUCCESS", "FAILED:reason", "NONE" */
365369
certVerified: string;
370+
certRevoked: string;
371+
certSKI: string;
366372
}
367373

368374
export {};

0 commit comments

Comments
 (0)