@cloudflare/workers-types 4.20260531.1 → 4.20260602.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/2021-11-03/index.d.ts +30 -0
- package/2021-11-03/index.ts +30 -0
- package/2022-01-31/index.d.ts +30 -0
- package/2022-01-31/index.ts +30 -0
- package/2022-03-21/index.d.ts +30 -0
- package/2022-03-21/index.ts +30 -0
- package/2022-08-04/index.d.ts +30 -0
- package/2022-08-04/index.ts +30 -0
- package/2022-10-31/index.d.ts +30 -0
- package/2022-10-31/index.ts +30 -0
- package/2022-11-30/index.d.ts +30 -0
- package/2022-11-30/index.ts +30 -0
- package/2023-03-01/index.d.ts +30 -0
- package/2023-03-01/index.ts +30 -0
- package/2023-07-01/index.d.ts +30 -0
- package/2023-07-01/index.ts +30 -0
- package/experimental/index.d.ts +30 -0
- package/experimental/index.ts +30 -0
- package/index.d.ts +30 -0
- package/index.ts +30 -0
- package/latest/index.d.ts +30 -0
- package/latest/index.ts +30 -0
- package/oldest/index.d.ts +30 -0
- package/oldest/index.ts +30 -0
- package/package.json +1 -1
package/2021-11-03/index.d.ts
CHANGED
|
@@ -12844,6 +12844,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12844
12844
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12845
12845
|
*/
|
|
12846
12846
|
certNotAfter: string;
|
|
12847
|
+
/**
|
|
12848
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12849
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12850
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12851
|
+
*
|
|
12852
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12853
|
+
*/
|
|
12854
|
+
certRFC9440: string;
|
|
12855
|
+
/**
|
|
12856
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12857
|
+
* {@link certRFC9440}.
|
|
12858
|
+
*/
|
|
12859
|
+
certRFC9440TooLarge: boolean;
|
|
12860
|
+
/**
|
|
12861
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12862
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12863
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12864
|
+
*
|
|
12865
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12866
|
+
*/
|
|
12867
|
+
certChainRFC9440: string;
|
|
12868
|
+
/**
|
|
12869
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12870
|
+
* {@link certChainRFC9440}.
|
|
12871
|
+
*/
|
|
12872
|
+
certChainRFC9440TooLarge: boolean;
|
|
12847
12873
|
}
|
|
12848
12874
|
/** Placeholder values for TLS Client Authorization */
|
|
12849
12875
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12864,6 +12890,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12864
12890
|
certFingerprintSHA256: "";
|
|
12865
12891
|
certNotBefore: "";
|
|
12866
12892
|
certNotAfter: "";
|
|
12893
|
+
certRFC9440: "";
|
|
12894
|
+
certRFC9440TooLarge: false;
|
|
12895
|
+
certChainRFC9440: "";
|
|
12896
|
+
certChainRFC9440TooLarge: false;
|
|
12867
12897
|
}
|
|
12868
12898
|
/** Possible outcomes of TLS verification */
|
|
12869
12899
|
declare type CertVerificationStatus =
|
package/2021-11-03/index.ts
CHANGED
|
@@ -12861,6 +12861,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12861
12861
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12862
12862
|
*/
|
|
12863
12863
|
certNotAfter: string;
|
|
12864
|
+
/**
|
|
12865
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12866
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12867
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12868
|
+
*
|
|
12869
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12870
|
+
*/
|
|
12871
|
+
certRFC9440: string;
|
|
12872
|
+
/**
|
|
12873
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12874
|
+
* {@link certRFC9440}.
|
|
12875
|
+
*/
|
|
12876
|
+
certRFC9440TooLarge: boolean;
|
|
12877
|
+
/**
|
|
12878
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12879
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12880
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12881
|
+
*
|
|
12882
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12883
|
+
*/
|
|
12884
|
+
certChainRFC9440: string;
|
|
12885
|
+
/**
|
|
12886
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12887
|
+
* {@link certChainRFC9440}.
|
|
12888
|
+
*/
|
|
12889
|
+
certChainRFC9440TooLarge: boolean;
|
|
12864
12890
|
}
|
|
12865
12891
|
/** Placeholder values for TLS Client Authorization */
|
|
12866
12892
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12881,6 +12907,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12881
12907
|
certFingerprintSHA256: "";
|
|
12882
12908
|
certNotBefore: "";
|
|
12883
12909
|
certNotAfter: "";
|
|
12910
|
+
certRFC9440: "";
|
|
12911
|
+
certRFC9440TooLarge: false;
|
|
12912
|
+
certChainRFC9440: "";
|
|
12913
|
+
certChainRFC9440TooLarge: false;
|
|
12884
12914
|
}
|
|
12885
12915
|
/** Possible outcomes of TLS verification */
|
|
12886
12916
|
export declare type CertVerificationStatus =
|
package/2022-01-31/index.d.ts
CHANGED
|
@@ -12911,6 +12911,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12911
12911
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12912
12912
|
*/
|
|
12913
12913
|
certNotAfter: string;
|
|
12914
|
+
/**
|
|
12915
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12916
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12917
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12918
|
+
*
|
|
12919
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12920
|
+
*/
|
|
12921
|
+
certRFC9440: string;
|
|
12922
|
+
/**
|
|
12923
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12924
|
+
* {@link certRFC9440}.
|
|
12925
|
+
*/
|
|
12926
|
+
certRFC9440TooLarge: boolean;
|
|
12927
|
+
/**
|
|
12928
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12929
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12930
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12931
|
+
*
|
|
12932
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12933
|
+
*/
|
|
12934
|
+
certChainRFC9440: string;
|
|
12935
|
+
/**
|
|
12936
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12937
|
+
* {@link certChainRFC9440}.
|
|
12938
|
+
*/
|
|
12939
|
+
certChainRFC9440TooLarge: boolean;
|
|
12914
12940
|
}
|
|
12915
12941
|
/** Placeholder values for TLS Client Authorization */
|
|
12916
12942
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12931,6 +12957,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12931
12957
|
certFingerprintSHA256: "";
|
|
12932
12958
|
certNotBefore: "";
|
|
12933
12959
|
certNotAfter: "";
|
|
12960
|
+
certRFC9440: "";
|
|
12961
|
+
certRFC9440TooLarge: false;
|
|
12962
|
+
certChainRFC9440: "";
|
|
12963
|
+
certChainRFC9440TooLarge: false;
|
|
12934
12964
|
}
|
|
12935
12965
|
/** Possible outcomes of TLS verification */
|
|
12936
12966
|
declare type CertVerificationStatus =
|
package/2022-01-31/index.ts
CHANGED
|
@@ -12928,6 +12928,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12928
12928
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12929
12929
|
*/
|
|
12930
12930
|
certNotAfter: string;
|
|
12931
|
+
/**
|
|
12932
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12933
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12934
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12935
|
+
*
|
|
12936
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12937
|
+
*/
|
|
12938
|
+
certRFC9440: string;
|
|
12939
|
+
/**
|
|
12940
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12941
|
+
* {@link certRFC9440}.
|
|
12942
|
+
*/
|
|
12943
|
+
certRFC9440TooLarge: boolean;
|
|
12944
|
+
/**
|
|
12945
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12946
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12947
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12948
|
+
*
|
|
12949
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12950
|
+
*/
|
|
12951
|
+
certChainRFC9440: string;
|
|
12952
|
+
/**
|
|
12953
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12954
|
+
* {@link certChainRFC9440}.
|
|
12955
|
+
*/
|
|
12956
|
+
certChainRFC9440TooLarge: boolean;
|
|
12931
12957
|
}
|
|
12932
12958
|
/** Placeholder values for TLS Client Authorization */
|
|
12933
12959
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12948,6 +12974,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12948
12974
|
certFingerprintSHA256: "";
|
|
12949
12975
|
certNotBefore: "";
|
|
12950
12976
|
certNotAfter: "";
|
|
12977
|
+
certRFC9440: "";
|
|
12978
|
+
certRFC9440TooLarge: false;
|
|
12979
|
+
certChainRFC9440: "";
|
|
12980
|
+
certChainRFC9440TooLarge: false;
|
|
12951
12981
|
}
|
|
12952
12982
|
/** Possible outcomes of TLS verification */
|
|
12953
12983
|
export declare type CertVerificationStatus =
|
package/2022-03-21/index.d.ts
CHANGED
|
@@ -12920,6 +12920,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12920
12920
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12921
12921
|
*/
|
|
12922
12922
|
certNotAfter: string;
|
|
12923
|
+
/**
|
|
12924
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12925
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12926
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12927
|
+
*
|
|
12928
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12929
|
+
*/
|
|
12930
|
+
certRFC9440: string;
|
|
12931
|
+
/**
|
|
12932
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12933
|
+
* {@link certRFC9440}.
|
|
12934
|
+
*/
|
|
12935
|
+
certRFC9440TooLarge: boolean;
|
|
12936
|
+
/**
|
|
12937
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12938
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12939
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12940
|
+
*
|
|
12941
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12942
|
+
*/
|
|
12943
|
+
certChainRFC9440: string;
|
|
12944
|
+
/**
|
|
12945
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12946
|
+
* {@link certChainRFC9440}.
|
|
12947
|
+
*/
|
|
12948
|
+
certChainRFC9440TooLarge: boolean;
|
|
12923
12949
|
}
|
|
12924
12950
|
/** Placeholder values for TLS Client Authorization */
|
|
12925
12951
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12940,6 +12966,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12940
12966
|
certFingerprintSHA256: "";
|
|
12941
12967
|
certNotBefore: "";
|
|
12942
12968
|
certNotAfter: "";
|
|
12969
|
+
certRFC9440: "";
|
|
12970
|
+
certRFC9440TooLarge: false;
|
|
12971
|
+
certChainRFC9440: "";
|
|
12972
|
+
certChainRFC9440TooLarge: false;
|
|
12943
12973
|
}
|
|
12944
12974
|
/** Possible outcomes of TLS verification */
|
|
12945
12975
|
declare type CertVerificationStatus =
|
package/2022-03-21/index.ts
CHANGED
|
@@ -12937,6 +12937,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12937
12937
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12938
12938
|
*/
|
|
12939
12939
|
certNotAfter: string;
|
|
12940
|
+
/**
|
|
12941
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12942
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12943
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12944
|
+
*
|
|
12945
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12946
|
+
*/
|
|
12947
|
+
certRFC9440: string;
|
|
12948
|
+
/**
|
|
12949
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12950
|
+
* {@link certRFC9440}.
|
|
12951
|
+
*/
|
|
12952
|
+
certRFC9440TooLarge: boolean;
|
|
12953
|
+
/**
|
|
12954
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12955
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12956
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12957
|
+
*
|
|
12958
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12959
|
+
*/
|
|
12960
|
+
certChainRFC9440: string;
|
|
12961
|
+
/**
|
|
12962
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12963
|
+
* {@link certChainRFC9440}.
|
|
12964
|
+
*/
|
|
12965
|
+
certChainRFC9440TooLarge: boolean;
|
|
12940
12966
|
}
|
|
12941
12967
|
/** Placeholder values for TLS Client Authorization */
|
|
12942
12968
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12957,6 +12983,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12957
12983
|
certFingerprintSHA256: "";
|
|
12958
12984
|
certNotBefore: "";
|
|
12959
12985
|
certNotAfter: "";
|
|
12986
|
+
certRFC9440: "";
|
|
12987
|
+
certRFC9440TooLarge: false;
|
|
12988
|
+
certChainRFC9440: "";
|
|
12989
|
+
certChainRFC9440TooLarge: false;
|
|
12960
12990
|
}
|
|
12961
12991
|
/** Possible outcomes of TLS verification */
|
|
12962
12992
|
export declare type CertVerificationStatus =
|
package/2022-08-04/index.d.ts
CHANGED
|
@@ -12921,6 +12921,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12921
12921
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12922
12922
|
*/
|
|
12923
12923
|
certNotAfter: string;
|
|
12924
|
+
/**
|
|
12925
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12926
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12927
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12928
|
+
*
|
|
12929
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12930
|
+
*/
|
|
12931
|
+
certRFC9440: string;
|
|
12932
|
+
/**
|
|
12933
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12934
|
+
* {@link certRFC9440}.
|
|
12935
|
+
*/
|
|
12936
|
+
certRFC9440TooLarge: boolean;
|
|
12937
|
+
/**
|
|
12938
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12939
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12940
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12941
|
+
*
|
|
12942
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12943
|
+
*/
|
|
12944
|
+
certChainRFC9440: string;
|
|
12945
|
+
/**
|
|
12946
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12947
|
+
* {@link certChainRFC9440}.
|
|
12948
|
+
*/
|
|
12949
|
+
certChainRFC9440TooLarge: boolean;
|
|
12924
12950
|
}
|
|
12925
12951
|
/** Placeholder values for TLS Client Authorization */
|
|
12926
12952
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12941,6 +12967,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12941
12967
|
certFingerprintSHA256: "";
|
|
12942
12968
|
certNotBefore: "";
|
|
12943
12969
|
certNotAfter: "";
|
|
12970
|
+
certRFC9440: "";
|
|
12971
|
+
certRFC9440TooLarge: false;
|
|
12972
|
+
certChainRFC9440: "";
|
|
12973
|
+
certChainRFC9440TooLarge: false;
|
|
12944
12974
|
}
|
|
12945
12975
|
/** Possible outcomes of TLS verification */
|
|
12946
12976
|
declare type CertVerificationStatus =
|
package/2022-08-04/index.ts
CHANGED
|
@@ -12938,6 +12938,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12938
12938
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12939
12939
|
*/
|
|
12940
12940
|
certNotAfter: string;
|
|
12941
|
+
/**
|
|
12942
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12943
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12944
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12945
|
+
*
|
|
12946
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12947
|
+
*/
|
|
12948
|
+
certRFC9440: string;
|
|
12949
|
+
/**
|
|
12950
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12951
|
+
* {@link certRFC9440}.
|
|
12952
|
+
*/
|
|
12953
|
+
certRFC9440TooLarge: boolean;
|
|
12954
|
+
/**
|
|
12955
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12956
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12957
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12958
|
+
*
|
|
12959
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12960
|
+
*/
|
|
12961
|
+
certChainRFC9440: string;
|
|
12962
|
+
/**
|
|
12963
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12964
|
+
* {@link certChainRFC9440}.
|
|
12965
|
+
*/
|
|
12966
|
+
certChainRFC9440TooLarge: boolean;
|
|
12941
12967
|
}
|
|
12942
12968
|
/** Placeholder values for TLS Client Authorization */
|
|
12943
12969
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12958,6 +12984,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12958
12984
|
certFingerprintSHA256: "";
|
|
12959
12985
|
certNotBefore: "";
|
|
12960
12986
|
certNotAfter: "";
|
|
12987
|
+
certRFC9440: "";
|
|
12988
|
+
certRFC9440TooLarge: false;
|
|
12989
|
+
certChainRFC9440: "";
|
|
12990
|
+
certChainRFC9440TooLarge: false;
|
|
12961
12991
|
}
|
|
12962
12992
|
/** Possible outcomes of TLS verification */
|
|
12963
12993
|
export declare type CertVerificationStatus =
|
package/2022-10-31/index.d.ts
CHANGED
|
@@ -12941,6 +12941,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12941
12941
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12942
12942
|
*/
|
|
12943
12943
|
certNotAfter: string;
|
|
12944
|
+
/**
|
|
12945
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12946
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12947
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12948
|
+
*
|
|
12949
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12950
|
+
*/
|
|
12951
|
+
certRFC9440: string;
|
|
12952
|
+
/**
|
|
12953
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12954
|
+
* {@link certRFC9440}.
|
|
12955
|
+
*/
|
|
12956
|
+
certRFC9440TooLarge: boolean;
|
|
12957
|
+
/**
|
|
12958
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12959
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12960
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12961
|
+
*
|
|
12962
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12963
|
+
*/
|
|
12964
|
+
certChainRFC9440: string;
|
|
12965
|
+
/**
|
|
12966
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12967
|
+
* {@link certChainRFC9440}.
|
|
12968
|
+
*/
|
|
12969
|
+
certChainRFC9440TooLarge: boolean;
|
|
12944
12970
|
}
|
|
12945
12971
|
/** Placeholder values for TLS Client Authorization */
|
|
12946
12972
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12961,6 +12987,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12961
12987
|
certFingerprintSHA256: "";
|
|
12962
12988
|
certNotBefore: "";
|
|
12963
12989
|
certNotAfter: "";
|
|
12990
|
+
certRFC9440: "";
|
|
12991
|
+
certRFC9440TooLarge: false;
|
|
12992
|
+
certChainRFC9440: "";
|
|
12993
|
+
certChainRFC9440TooLarge: false;
|
|
12964
12994
|
}
|
|
12965
12995
|
/** Possible outcomes of TLS verification */
|
|
12966
12996
|
declare type CertVerificationStatus =
|
package/2022-10-31/index.ts
CHANGED
|
@@ -12958,6 +12958,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12958
12958
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12959
12959
|
*/
|
|
12960
12960
|
certNotAfter: string;
|
|
12961
|
+
/**
|
|
12962
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12963
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12964
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12965
|
+
*
|
|
12966
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12967
|
+
*/
|
|
12968
|
+
certRFC9440: string;
|
|
12969
|
+
/**
|
|
12970
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12971
|
+
* {@link certRFC9440}.
|
|
12972
|
+
*/
|
|
12973
|
+
certRFC9440TooLarge: boolean;
|
|
12974
|
+
/**
|
|
12975
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12976
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12977
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12978
|
+
*
|
|
12979
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12980
|
+
*/
|
|
12981
|
+
certChainRFC9440: string;
|
|
12982
|
+
/**
|
|
12983
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12984
|
+
* {@link certChainRFC9440}.
|
|
12985
|
+
*/
|
|
12986
|
+
certChainRFC9440TooLarge: boolean;
|
|
12961
12987
|
}
|
|
12962
12988
|
/** Placeholder values for TLS Client Authorization */
|
|
12963
12989
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12978,6 +13004,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12978
13004
|
certFingerprintSHA256: "";
|
|
12979
13005
|
certNotBefore: "";
|
|
12980
13006
|
certNotAfter: "";
|
|
13007
|
+
certRFC9440: "";
|
|
13008
|
+
certRFC9440TooLarge: false;
|
|
13009
|
+
certChainRFC9440: "";
|
|
13010
|
+
certChainRFC9440TooLarge: false;
|
|
12981
13011
|
}
|
|
12982
13012
|
/** Possible outcomes of TLS verification */
|
|
12983
13013
|
export declare type CertVerificationStatus =
|
package/2022-11-30/index.d.ts
CHANGED
|
@@ -12946,6 +12946,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12946
12946
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12947
12947
|
*/
|
|
12948
12948
|
certNotAfter: string;
|
|
12949
|
+
/**
|
|
12950
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12951
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12952
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12953
|
+
*
|
|
12954
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12955
|
+
*/
|
|
12956
|
+
certRFC9440: string;
|
|
12957
|
+
/**
|
|
12958
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12959
|
+
* {@link certRFC9440}.
|
|
12960
|
+
*/
|
|
12961
|
+
certRFC9440TooLarge: boolean;
|
|
12962
|
+
/**
|
|
12963
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12964
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12965
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12966
|
+
*
|
|
12967
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12968
|
+
*/
|
|
12969
|
+
certChainRFC9440: string;
|
|
12970
|
+
/**
|
|
12971
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12972
|
+
* {@link certChainRFC9440}.
|
|
12973
|
+
*/
|
|
12974
|
+
certChainRFC9440TooLarge: boolean;
|
|
12949
12975
|
}
|
|
12950
12976
|
/** Placeholder values for TLS Client Authorization */
|
|
12951
12977
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12966,6 +12992,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12966
12992
|
certFingerprintSHA256: "";
|
|
12967
12993
|
certNotBefore: "";
|
|
12968
12994
|
certNotAfter: "";
|
|
12995
|
+
certRFC9440: "";
|
|
12996
|
+
certRFC9440TooLarge: false;
|
|
12997
|
+
certChainRFC9440: "";
|
|
12998
|
+
certChainRFC9440TooLarge: false;
|
|
12969
12999
|
}
|
|
12970
13000
|
/** Possible outcomes of TLS verification */
|
|
12971
13001
|
declare type CertVerificationStatus =
|
package/2022-11-30/index.ts
CHANGED
|
@@ -12963,6 +12963,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12963
12963
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12964
12964
|
*/
|
|
12965
12965
|
certNotAfter: string;
|
|
12966
|
+
/**
|
|
12967
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12968
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12969
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12970
|
+
*
|
|
12971
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12972
|
+
*/
|
|
12973
|
+
certRFC9440: string;
|
|
12974
|
+
/**
|
|
12975
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12976
|
+
* {@link certRFC9440}.
|
|
12977
|
+
*/
|
|
12978
|
+
certRFC9440TooLarge: boolean;
|
|
12979
|
+
/**
|
|
12980
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12981
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12982
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12983
|
+
*
|
|
12984
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12985
|
+
*/
|
|
12986
|
+
certChainRFC9440: string;
|
|
12987
|
+
/**
|
|
12988
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12989
|
+
* {@link certChainRFC9440}.
|
|
12990
|
+
*/
|
|
12991
|
+
certChainRFC9440TooLarge: boolean;
|
|
12966
12992
|
}
|
|
12967
12993
|
/** Placeholder values for TLS Client Authorization */
|
|
12968
12994
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12983,6 +13009,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12983
13009
|
certFingerprintSHA256: "";
|
|
12984
13010
|
certNotBefore: "";
|
|
12985
13011
|
certNotAfter: "";
|
|
13012
|
+
certRFC9440: "";
|
|
13013
|
+
certRFC9440TooLarge: false;
|
|
13014
|
+
certChainRFC9440: "";
|
|
13015
|
+
certChainRFC9440TooLarge: false;
|
|
12986
13016
|
}
|
|
12987
13017
|
/** Possible outcomes of TLS verification */
|
|
12988
13018
|
export declare type CertVerificationStatus =
|
package/2023-03-01/index.d.ts
CHANGED
|
@@ -12952,6 +12952,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12952
12952
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12953
12953
|
*/
|
|
12954
12954
|
certNotAfter: string;
|
|
12955
|
+
/**
|
|
12956
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12957
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12958
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12959
|
+
*
|
|
12960
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12961
|
+
*/
|
|
12962
|
+
certRFC9440: string;
|
|
12963
|
+
/**
|
|
12964
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12965
|
+
* {@link certRFC9440}.
|
|
12966
|
+
*/
|
|
12967
|
+
certRFC9440TooLarge: boolean;
|
|
12968
|
+
/**
|
|
12969
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12970
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12971
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12972
|
+
*
|
|
12973
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12974
|
+
*/
|
|
12975
|
+
certChainRFC9440: string;
|
|
12976
|
+
/**
|
|
12977
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12978
|
+
* {@link certChainRFC9440}.
|
|
12979
|
+
*/
|
|
12980
|
+
certChainRFC9440TooLarge: boolean;
|
|
12955
12981
|
}
|
|
12956
12982
|
/** Placeholder values for TLS Client Authorization */
|
|
12957
12983
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12972,6 +12998,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12972
12998
|
certFingerprintSHA256: "";
|
|
12973
12999
|
certNotBefore: "";
|
|
12974
13000
|
certNotAfter: "";
|
|
13001
|
+
certRFC9440: "";
|
|
13002
|
+
certRFC9440TooLarge: false;
|
|
13003
|
+
certChainRFC9440: "";
|
|
13004
|
+
certChainRFC9440TooLarge: false;
|
|
12975
13005
|
}
|
|
12976
13006
|
/** Possible outcomes of TLS verification */
|
|
12977
13007
|
declare type CertVerificationStatus =
|
package/2023-03-01/index.ts
CHANGED
|
@@ -12969,6 +12969,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12969
12969
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12970
12970
|
*/
|
|
12971
12971
|
certNotAfter: string;
|
|
12972
|
+
/**
|
|
12973
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12974
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12975
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12976
|
+
*
|
|
12977
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12978
|
+
*/
|
|
12979
|
+
certRFC9440: string;
|
|
12980
|
+
/**
|
|
12981
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12982
|
+
* {@link certRFC9440}.
|
|
12983
|
+
*/
|
|
12984
|
+
certRFC9440TooLarge: boolean;
|
|
12985
|
+
/**
|
|
12986
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12987
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12988
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12989
|
+
*
|
|
12990
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12991
|
+
*/
|
|
12992
|
+
certChainRFC9440: string;
|
|
12993
|
+
/**
|
|
12994
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12995
|
+
* {@link certChainRFC9440}.
|
|
12996
|
+
*/
|
|
12997
|
+
certChainRFC9440TooLarge: boolean;
|
|
12972
12998
|
}
|
|
12973
12999
|
/** Placeholder values for TLS Client Authorization */
|
|
12974
13000
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12989,6 +13015,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12989
13015
|
certFingerprintSHA256: "";
|
|
12990
13016
|
certNotBefore: "";
|
|
12991
13017
|
certNotAfter: "";
|
|
13018
|
+
certRFC9440: "";
|
|
13019
|
+
certRFC9440TooLarge: false;
|
|
13020
|
+
certChainRFC9440: "";
|
|
13021
|
+
certChainRFC9440TooLarge: false;
|
|
12992
13022
|
}
|
|
12993
13023
|
/** Possible outcomes of TLS verification */
|
|
12994
13024
|
export declare type CertVerificationStatus =
|
package/2023-07-01/index.d.ts
CHANGED
|
@@ -12952,6 +12952,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12952
12952
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12953
12953
|
*/
|
|
12954
12954
|
certNotAfter: string;
|
|
12955
|
+
/**
|
|
12956
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12957
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12958
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12959
|
+
*
|
|
12960
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12961
|
+
*/
|
|
12962
|
+
certRFC9440: string;
|
|
12963
|
+
/**
|
|
12964
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12965
|
+
* {@link certRFC9440}.
|
|
12966
|
+
*/
|
|
12967
|
+
certRFC9440TooLarge: boolean;
|
|
12968
|
+
/**
|
|
12969
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12970
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12971
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12972
|
+
*
|
|
12973
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12974
|
+
*/
|
|
12975
|
+
certChainRFC9440: string;
|
|
12976
|
+
/**
|
|
12977
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12978
|
+
* {@link certChainRFC9440}.
|
|
12979
|
+
*/
|
|
12980
|
+
certChainRFC9440TooLarge: boolean;
|
|
12955
12981
|
}
|
|
12956
12982
|
/** Placeholder values for TLS Client Authorization */
|
|
12957
12983
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12972,6 +12998,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12972
12998
|
certFingerprintSHA256: "";
|
|
12973
12999
|
certNotBefore: "";
|
|
12974
13000
|
certNotAfter: "";
|
|
13001
|
+
certRFC9440: "";
|
|
13002
|
+
certRFC9440TooLarge: false;
|
|
13003
|
+
certChainRFC9440: "";
|
|
13004
|
+
certChainRFC9440TooLarge: false;
|
|
12975
13005
|
}
|
|
12976
13006
|
/** Possible outcomes of TLS verification */
|
|
12977
13007
|
declare type CertVerificationStatus =
|
package/2023-07-01/index.ts
CHANGED
|
@@ -12969,6 +12969,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12969
12969
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12970
12970
|
*/
|
|
12971
12971
|
certNotAfter: string;
|
|
12972
|
+
/**
|
|
12973
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12974
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12975
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12976
|
+
*
|
|
12977
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12978
|
+
*/
|
|
12979
|
+
certRFC9440: string;
|
|
12980
|
+
/**
|
|
12981
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12982
|
+
* {@link certRFC9440}.
|
|
12983
|
+
*/
|
|
12984
|
+
certRFC9440TooLarge: boolean;
|
|
12985
|
+
/**
|
|
12986
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12987
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12988
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12989
|
+
*
|
|
12990
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12991
|
+
*/
|
|
12992
|
+
certChainRFC9440: string;
|
|
12993
|
+
/**
|
|
12994
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12995
|
+
* {@link certChainRFC9440}.
|
|
12996
|
+
*/
|
|
12997
|
+
certChainRFC9440TooLarge: boolean;
|
|
12972
12998
|
}
|
|
12973
12999
|
/** Placeholder values for TLS Client Authorization */
|
|
12974
13000
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12989,6 +13015,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12989
13015
|
certFingerprintSHA256: "";
|
|
12990
13016
|
certNotBefore: "";
|
|
12991
13017
|
certNotAfter: "";
|
|
13018
|
+
certRFC9440: "";
|
|
13019
|
+
certRFC9440TooLarge: false;
|
|
13020
|
+
certChainRFC9440: "";
|
|
13021
|
+
certChainRFC9440TooLarge: false;
|
|
12992
13022
|
}
|
|
12993
13023
|
/** Possible outcomes of TLS verification */
|
|
12994
13024
|
export declare type CertVerificationStatus =
|
package/experimental/index.d.ts
CHANGED
|
@@ -13653,6 +13653,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
13653
13653
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
13654
13654
|
*/
|
|
13655
13655
|
certNotAfter: string;
|
|
13656
|
+
/**
|
|
13657
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13658
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
13659
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
13660
|
+
*
|
|
13661
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
13662
|
+
*/
|
|
13663
|
+
certRFC9440: string;
|
|
13664
|
+
/**
|
|
13665
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
13666
|
+
* {@link certRFC9440}.
|
|
13667
|
+
*/
|
|
13668
|
+
certRFC9440TooLarge: boolean;
|
|
13669
|
+
/**
|
|
13670
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13671
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
13672
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
13673
|
+
*
|
|
13674
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
13675
|
+
*/
|
|
13676
|
+
certChainRFC9440: string;
|
|
13677
|
+
/**
|
|
13678
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
13679
|
+
* {@link certChainRFC9440}.
|
|
13680
|
+
*/
|
|
13681
|
+
certChainRFC9440TooLarge: boolean;
|
|
13656
13682
|
}
|
|
13657
13683
|
/** Placeholder values for TLS Client Authorization */
|
|
13658
13684
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -13673,6 +13699,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
13673
13699
|
certFingerprintSHA256: "";
|
|
13674
13700
|
certNotBefore: "";
|
|
13675
13701
|
certNotAfter: "";
|
|
13702
|
+
certRFC9440: "";
|
|
13703
|
+
certRFC9440TooLarge: false;
|
|
13704
|
+
certChainRFC9440: "";
|
|
13705
|
+
certChainRFC9440TooLarge: false;
|
|
13676
13706
|
}
|
|
13677
13707
|
/** Possible outcomes of TLS verification */
|
|
13678
13708
|
declare type CertVerificationStatus =
|
package/experimental/index.ts
CHANGED
|
@@ -13670,6 +13670,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
13670
13670
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
13671
13671
|
*/
|
|
13672
13672
|
certNotAfter: string;
|
|
13673
|
+
/**
|
|
13674
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13675
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
13676
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
13677
|
+
*
|
|
13678
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
13679
|
+
*/
|
|
13680
|
+
certRFC9440: string;
|
|
13681
|
+
/**
|
|
13682
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
13683
|
+
* {@link certRFC9440}.
|
|
13684
|
+
*/
|
|
13685
|
+
certRFC9440TooLarge: boolean;
|
|
13686
|
+
/**
|
|
13687
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13688
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
13689
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
13690
|
+
*
|
|
13691
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
13692
|
+
*/
|
|
13693
|
+
certChainRFC9440: string;
|
|
13694
|
+
/**
|
|
13695
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
13696
|
+
* {@link certChainRFC9440}.
|
|
13697
|
+
*/
|
|
13698
|
+
certChainRFC9440TooLarge: boolean;
|
|
13673
13699
|
}
|
|
13674
13700
|
/** Placeholder values for TLS Client Authorization */
|
|
13675
13701
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -13690,6 +13716,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
13690
13716
|
certFingerprintSHA256: "";
|
|
13691
13717
|
certNotBefore: "";
|
|
13692
13718
|
certNotAfter: "";
|
|
13719
|
+
certRFC9440: "";
|
|
13720
|
+
certRFC9440TooLarge: false;
|
|
13721
|
+
certChainRFC9440: "";
|
|
13722
|
+
certChainRFC9440TooLarge: false;
|
|
13693
13723
|
}
|
|
13694
13724
|
/** Possible outcomes of TLS verification */
|
|
13695
13725
|
export declare type CertVerificationStatus =
|
package/index.d.ts
CHANGED
|
@@ -12844,6 +12844,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12844
12844
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12845
12845
|
*/
|
|
12846
12846
|
certNotAfter: string;
|
|
12847
|
+
/**
|
|
12848
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12849
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12850
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12851
|
+
*
|
|
12852
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12853
|
+
*/
|
|
12854
|
+
certRFC9440: string;
|
|
12855
|
+
/**
|
|
12856
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12857
|
+
* {@link certRFC9440}.
|
|
12858
|
+
*/
|
|
12859
|
+
certRFC9440TooLarge: boolean;
|
|
12860
|
+
/**
|
|
12861
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12862
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12863
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12864
|
+
*
|
|
12865
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12866
|
+
*/
|
|
12867
|
+
certChainRFC9440: string;
|
|
12868
|
+
/**
|
|
12869
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12870
|
+
* {@link certChainRFC9440}.
|
|
12871
|
+
*/
|
|
12872
|
+
certChainRFC9440TooLarge: boolean;
|
|
12847
12873
|
}
|
|
12848
12874
|
/** Placeholder values for TLS Client Authorization */
|
|
12849
12875
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12864,6 +12890,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12864
12890
|
certFingerprintSHA256: "";
|
|
12865
12891
|
certNotBefore: "";
|
|
12866
12892
|
certNotAfter: "";
|
|
12893
|
+
certRFC9440: "";
|
|
12894
|
+
certRFC9440TooLarge: false;
|
|
12895
|
+
certChainRFC9440: "";
|
|
12896
|
+
certChainRFC9440TooLarge: false;
|
|
12867
12897
|
}
|
|
12868
12898
|
/** Possible outcomes of TLS verification */
|
|
12869
12899
|
declare type CertVerificationStatus =
|
package/index.ts
CHANGED
|
@@ -12861,6 +12861,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12861
12861
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12862
12862
|
*/
|
|
12863
12863
|
certNotAfter: string;
|
|
12864
|
+
/**
|
|
12865
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12866
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12867
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12868
|
+
*
|
|
12869
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12870
|
+
*/
|
|
12871
|
+
certRFC9440: string;
|
|
12872
|
+
/**
|
|
12873
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12874
|
+
* {@link certRFC9440}.
|
|
12875
|
+
*/
|
|
12876
|
+
certRFC9440TooLarge: boolean;
|
|
12877
|
+
/**
|
|
12878
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12879
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12880
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12881
|
+
*
|
|
12882
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12883
|
+
*/
|
|
12884
|
+
certChainRFC9440: string;
|
|
12885
|
+
/**
|
|
12886
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12887
|
+
* {@link certChainRFC9440}.
|
|
12888
|
+
*/
|
|
12889
|
+
certChainRFC9440TooLarge: boolean;
|
|
12864
12890
|
}
|
|
12865
12891
|
/** Placeholder values for TLS Client Authorization */
|
|
12866
12892
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12881,6 +12907,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12881
12907
|
certFingerprintSHA256: "";
|
|
12882
12908
|
certNotBefore: "";
|
|
12883
12909
|
certNotAfter: "";
|
|
12910
|
+
certRFC9440: "";
|
|
12911
|
+
certRFC9440TooLarge: false;
|
|
12912
|
+
certChainRFC9440: "";
|
|
12913
|
+
certChainRFC9440TooLarge: false;
|
|
12884
12914
|
}
|
|
12885
12915
|
/** Possible outcomes of TLS verification */
|
|
12886
12916
|
export declare type CertVerificationStatus =
|
package/latest/index.d.ts
CHANGED
|
@@ -12985,6 +12985,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12985
12985
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12986
12986
|
*/
|
|
12987
12987
|
certNotAfter: string;
|
|
12988
|
+
/**
|
|
12989
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12990
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12991
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12992
|
+
*
|
|
12993
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12994
|
+
*/
|
|
12995
|
+
certRFC9440: string;
|
|
12996
|
+
/**
|
|
12997
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12998
|
+
* {@link certRFC9440}.
|
|
12999
|
+
*/
|
|
13000
|
+
certRFC9440TooLarge: boolean;
|
|
13001
|
+
/**
|
|
13002
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13003
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
13004
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
13005
|
+
*
|
|
13006
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
13007
|
+
*/
|
|
13008
|
+
certChainRFC9440: string;
|
|
13009
|
+
/**
|
|
13010
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
13011
|
+
* {@link certChainRFC9440}.
|
|
13012
|
+
*/
|
|
13013
|
+
certChainRFC9440TooLarge: boolean;
|
|
12988
13014
|
}
|
|
12989
13015
|
/** Placeholder values for TLS Client Authorization */
|
|
12990
13016
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -13005,6 +13031,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
13005
13031
|
certFingerprintSHA256: "";
|
|
13006
13032
|
certNotBefore: "";
|
|
13007
13033
|
certNotAfter: "";
|
|
13034
|
+
certRFC9440: "";
|
|
13035
|
+
certRFC9440TooLarge: false;
|
|
13036
|
+
certChainRFC9440: "";
|
|
13037
|
+
certChainRFC9440TooLarge: false;
|
|
13008
13038
|
}
|
|
13009
13039
|
/** Possible outcomes of TLS verification */
|
|
13010
13040
|
declare type CertVerificationStatus =
|
package/latest/index.ts
CHANGED
|
@@ -13002,6 +13002,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
13002
13002
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
13003
13003
|
*/
|
|
13004
13004
|
certNotAfter: string;
|
|
13005
|
+
/**
|
|
13006
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13007
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
13008
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
13009
|
+
*
|
|
13010
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
13011
|
+
*/
|
|
13012
|
+
certRFC9440: string;
|
|
13013
|
+
/**
|
|
13014
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
13015
|
+
* {@link certRFC9440}.
|
|
13016
|
+
*/
|
|
13017
|
+
certRFC9440TooLarge: boolean;
|
|
13018
|
+
/**
|
|
13019
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
13020
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
13021
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
13022
|
+
*
|
|
13023
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
13024
|
+
*/
|
|
13025
|
+
certChainRFC9440: string;
|
|
13026
|
+
/**
|
|
13027
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
13028
|
+
* {@link certChainRFC9440}.
|
|
13029
|
+
*/
|
|
13030
|
+
certChainRFC9440TooLarge: boolean;
|
|
13005
13031
|
}
|
|
13006
13032
|
/** Placeholder values for TLS Client Authorization */
|
|
13007
13033
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -13022,6 +13048,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
13022
13048
|
certFingerprintSHA256: "";
|
|
13023
13049
|
certNotBefore: "";
|
|
13024
13050
|
certNotAfter: "";
|
|
13051
|
+
certRFC9440: "";
|
|
13052
|
+
certRFC9440TooLarge: false;
|
|
13053
|
+
certChainRFC9440: "";
|
|
13054
|
+
certChainRFC9440TooLarge: false;
|
|
13025
13055
|
}
|
|
13026
13056
|
/** Possible outcomes of TLS verification */
|
|
13027
13057
|
export declare type CertVerificationStatus =
|
package/oldest/index.d.ts
CHANGED
|
@@ -12844,6 +12844,32 @@ interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12844
12844
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12845
12845
|
*/
|
|
12846
12846
|
certNotAfter: string;
|
|
12847
|
+
/**
|
|
12848
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12849
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12850
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12851
|
+
*
|
|
12852
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12853
|
+
*/
|
|
12854
|
+
certRFC9440: string;
|
|
12855
|
+
/**
|
|
12856
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12857
|
+
* {@link certRFC9440}.
|
|
12858
|
+
*/
|
|
12859
|
+
certRFC9440TooLarge: boolean;
|
|
12860
|
+
/**
|
|
12861
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12862
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12863
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12864
|
+
*
|
|
12865
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12866
|
+
*/
|
|
12867
|
+
certChainRFC9440: string;
|
|
12868
|
+
/**
|
|
12869
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12870
|
+
* {@link certChainRFC9440}.
|
|
12871
|
+
*/
|
|
12872
|
+
certChainRFC9440TooLarge: boolean;
|
|
12847
12873
|
}
|
|
12848
12874
|
/** Placeholder values for TLS Client Authorization */
|
|
12849
12875
|
interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12864,6 +12890,10 @@ interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12864
12890
|
certFingerprintSHA256: "";
|
|
12865
12891
|
certNotBefore: "";
|
|
12866
12892
|
certNotAfter: "";
|
|
12893
|
+
certRFC9440: "";
|
|
12894
|
+
certRFC9440TooLarge: false;
|
|
12895
|
+
certChainRFC9440: "";
|
|
12896
|
+
certChainRFC9440TooLarge: false;
|
|
12867
12897
|
}
|
|
12868
12898
|
/** Possible outcomes of TLS verification */
|
|
12869
12899
|
declare type CertVerificationStatus =
|
package/oldest/index.ts
CHANGED
|
@@ -12861,6 +12861,32 @@ export interface IncomingRequestCfPropertiesTLSClientAuth {
|
|
|
12861
12861
|
* @example "Dec 22 19:39:00 2018 GMT"
|
|
12862
12862
|
*/
|
|
12863
12863
|
certNotAfter: string;
|
|
12864
|
+
/**
|
|
12865
|
+
* The client leaf certificate in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12866
|
+
* format (`:base64-DER:`). Empty if no client certificate was presented or if
|
|
12867
|
+
* the leaf certificate exceeded 10 KB (see {@link certRFC9440TooLarge}).
|
|
12868
|
+
*
|
|
12869
|
+
* Suitable for forwarding to an origin via the `Client-Cert` HTTP header.
|
|
12870
|
+
*/
|
|
12871
|
+
certRFC9440: string;
|
|
12872
|
+
/**
|
|
12873
|
+
* `true` if the leaf certificate exceeded 10 KB and was omitted from
|
|
12874
|
+
* {@link certRFC9440}.
|
|
12875
|
+
*/
|
|
12876
|
+
certRFC9440TooLarge: boolean;
|
|
12877
|
+
/**
|
|
12878
|
+
* The intermediate certificate chain in [RFC 9440](https://www.rfc-editor.org/rfc/rfc9440)
|
|
12879
|
+
* format as a comma-separated list. Empty if no intermediates were sent or
|
|
12880
|
+
* if the chain exceeded 16 KB (see {@link certChainRFC9440TooLarge}).
|
|
12881
|
+
*
|
|
12882
|
+
* Suitable for forwarding to an origin via the `Client-Cert-Chain` HTTP header.
|
|
12883
|
+
*/
|
|
12884
|
+
certChainRFC9440: string;
|
|
12885
|
+
/**
|
|
12886
|
+
* `true` if the intermediate chain exceeded 16 KB and was omitted from
|
|
12887
|
+
* {@link certChainRFC9440}.
|
|
12888
|
+
*/
|
|
12889
|
+
certChainRFC9440TooLarge: boolean;
|
|
12864
12890
|
}
|
|
12865
12891
|
/** Placeholder values for TLS Client Authorization */
|
|
12866
12892
|
export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
@@ -12881,6 +12907,10 @@ export interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder {
|
|
|
12881
12907
|
certFingerprintSHA256: "";
|
|
12882
12908
|
certNotBefore: "";
|
|
12883
12909
|
certNotAfter: "";
|
|
12910
|
+
certRFC9440: "";
|
|
12911
|
+
certRFC9440TooLarge: false;
|
|
12912
|
+
certChainRFC9440: "";
|
|
12913
|
+
certChainRFC9440TooLarge: false;
|
|
12884
12914
|
}
|
|
12885
12915
|
/** Possible outcomes of TLS verification */
|
|
12886
12916
|
export declare type CertVerificationStatus =
|
package/package.json
CHANGED