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

Commit

Permalink
Fix #200 Update tlsClientAuth object to reflect docs (#256)
Browse files Browse the repository at this point in the history
Co-authored-by: Kellen Fox <kellen@cloudflare.com>
  • Loading branch information
Kellel and Kellen Fox committed Jun 29, 2022
1 parent f45703c commit 9b4290b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/wicked-hairs-give.md
@@ -0,0 +1,5 @@
---
"@cloudflare/workers-types": minor
---

Update tlsClientAuth properties
6 changes: 6 additions & 0 deletions overrides/cf.d.ts
Expand Up @@ -352,9 +352,13 @@ interface IncomingRequestCfPropertiesBotManagement {
interface IncomingRequestCfPropertiesTLSClientAuth {
certIssuerDNLegacy: string;
certIssuerDN: string;
certIssuerDNRFC2253: string;
certIssuerSKI: string;
certIssuerSerial: string;
certPresented: "0" | "1";
certSubjectDNLegacy: string;
certSubjectDN: string;
certSubjectDNRFC2253: string;
/** In format "Dec 22 19:39:00 2018 GMT" */
certNotBefore: string;
/** In format "Dec 22 19:39:00 2018 GMT" */
Expand All @@ -363,6 +367,8 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
certFingerprintSHA1: string;
/** "SUCCESS", "FAILED:reason", "NONE" */
certVerified: string;
certRevoked: string;
certSKI: string;
}

export {};

0 comments on commit 9b4290b

Please sign in to comment.