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

Fix #200 Update tlsClientAuth object to reflect docs #256

Merged
merged 1 commit into from
Jun 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/wicked-hairs-give.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cloudflare/workers-types": minor
---

Update tlsClientAuth properties
6 changes: 6 additions & 0 deletions overrides/cf.d.ts
Original file line number Diff line number Diff line change
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 {};