// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; import * as AuthoritiesAPI from './authorities'; import { Authorities, AuthorityGetParams, AuthorityGetResponse, AuthorityListParams, AuthorityListResponse, } from './authorities'; import * as LogsAPI from './logs'; import { LogGetParams, LogGetResponse, LogListParams, LogListResponse, Logs } from './logs'; export class CT extends APIResource { authorities: AuthoritiesAPI.Authorities = new AuthoritiesAPI.Authorities(this._client); logs: LogsAPI.Logs = new LogsAPI.Logs(this._client); /** * Retrieves an aggregated summary of certificates grouped by the specified * dimension. * * @example * ```ts * const response = await client.radar.ct.summary('CA'); * ``` */ summary( dimension: | 'CA' | 'CA_OWNER' | 'DURATION' | 'ENTRY_TYPE' | 'EXPIRATION_STATUS' | 'HAS_IPS' | 'HAS_WILDCARDS' | 'LOG' | 'LOG_API' | 'LOG_OPERATOR' | 'PUBLIC_KEY_ALGORITHM' | 'SIGNATURE_ALGORITHM' | 'TLD' | 'VALIDATION_LEVEL', query?: CTSummaryParams, options?: Core.RequestOptions, ): Core.APIPromise; summary( dimension: | 'CA' | 'CA_OWNER' | 'DURATION' | 'ENTRY_TYPE' | 'EXPIRATION_STATUS' | 'HAS_IPS' | 'HAS_WILDCARDS' | 'LOG' | 'LOG_API' | 'LOG_OPERATOR' | 'PUBLIC_KEY_ALGORITHM' | 'SIGNATURE_ALGORITHM' | 'TLD' | 'VALIDATION_LEVEL', options?: Core.RequestOptions, ): Core.APIPromise; summary( dimension: | 'CA' | 'CA_OWNER' | 'DURATION' | 'ENTRY_TYPE' | 'EXPIRATION_STATUS' | 'HAS_IPS' | 'HAS_WILDCARDS' | 'LOG' | 'LOG_API' | 'LOG_OPERATOR' | 'PUBLIC_KEY_ALGORITHM' | 'SIGNATURE_ALGORITHM' | 'TLD' | 'VALIDATION_LEVEL', query: CTSummaryParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise { if (isRequestOptions(query)) { return this.summary(dimension, {}, query); } return ( this._client.get(`/radar/ct/summary/${dimension}`, { query, ...options }) as Core.APIPromise<{ result: CTSummaryResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves certificate volume over time. * * @example * ```ts * const response = await client.radar.ct.timeseries(); * ``` */ timeseries( query?: CTTimeseriesParams, options?: Core.RequestOptions, ): Core.APIPromise; timeseries(options?: Core.RequestOptions): Core.APIPromise; timeseries( query: CTTimeseriesParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise { if (isRequestOptions(query)) { return this.timeseries({}, query); } return ( this._client.get('/radar/ct/timeseries', { query, ...options }) as Core.APIPromise<{ result: CTTimeseriesResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the distribution of certificates grouped by the specified dimension * over time. * * @example * ```ts * const response = await client.radar.ct.timeseriesGroups( * 'CA', * ); * ``` */ timeseriesGroups( dimension: | 'CA' | 'CA_OWNER' | 'DURATION' | 'ENTRY_TYPE' | 'EXPIRATION_STATUS' | 'HAS_IPS' | 'HAS_WILDCARDS' | 'LOG' | 'LOG_API' | 'LOG_OPERATOR' | 'PUBLIC_KEY_ALGORITHM' | 'SIGNATURE_ALGORITHM' | 'TLD' | 'VALIDATION_LEVEL', query?: CTTimeseriesGroupsParams, options?: Core.RequestOptions, ): Core.APIPromise; timeseriesGroups( dimension: | 'CA' | 'CA_OWNER' | 'DURATION' | 'ENTRY_TYPE' | 'EXPIRATION_STATUS' | 'HAS_IPS' | 'HAS_WILDCARDS' | 'LOG' | 'LOG_API' | 'LOG_OPERATOR' | 'PUBLIC_KEY_ALGORITHM' | 'SIGNATURE_ALGORITHM' | 'TLD' | 'VALIDATION_LEVEL', options?: Core.RequestOptions, ): Core.APIPromise; timeseriesGroups( dimension: | 'CA' | 'CA_OWNER' | 'DURATION' | 'ENTRY_TYPE' | 'EXPIRATION_STATUS' | 'HAS_IPS' | 'HAS_WILDCARDS' | 'LOG' | 'LOG_API' | 'LOG_OPERATOR' | 'PUBLIC_KEY_ALGORITHM' | 'SIGNATURE_ALGORITHM' | 'TLD' | 'VALIDATION_LEVEL', query: CTTimeseriesGroupsParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise { if (isRequestOptions(query)) { return this.timeseriesGroups(dimension, {}, query); } return ( this._client.get(`/radar/ct/timeseries_groups/${dimension}`, { query, ...options }) as Core.APIPromise<{ result: CTTimeseriesGroupsResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface CTSummaryResponse { /** * Metadata for the results. */ meta: CTSummaryResponse.Meta; summary_0: | { [key: string]: string } | CTSummaryResponse.UnionMember1 | CTSummaryResponse.UnionMember2 | CTSummaryResponse.UnionMember3 | CTSummaryResponse.UnionMember4 | CTSummaryResponse.UnionMember5 | CTSummaryResponse.UnionMember6 | CTSummaryResponse.UnionMember7; } export namespace CTSummaryResponse { /** * Metadata for the results. */ export interface Meta { confidenceInfo: Meta.ConfidenceInfo; dateRange: Array; /** * Timestamp of the last dataset update. */ lastUpdated: string; /** * Normalization method applied to the results. Refer to * [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/). */ normalization: | 'PERCENTAGE' | 'MIN0_MAX' | 'MIN_MAX' | 'RAW_VALUES' | 'PERCENTAGE_CHANGE' | 'ROLLING_AVERAGE' | 'OVERLAPPED_PERCENTAGE' | 'RATIO'; /** * Measurement units for the results. */ units: Array; } export namespace Meta { export interface ConfidenceInfo { annotations: Array; /** * Provides an indication of how much confidence Cloudflare has in the data. */ level: number; } export namespace ConfidenceInfo { /** * Annotation associated with the result (e.g. outage or other type of event). */ export interface Annotation { /** * Data source for annotations. */ dataSource: | 'ALL' | 'AI_BOTS' | 'AI_GATEWAY' | 'BGP' | 'BOTS' | 'CONNECTION_ANOMALY' | 'CT' | 'DNS' | 'DNS_MAGNITUDE' | 'DNS_AS112' | 'DOS' | 'EMAIL_ROUTING' | 'EMAIL_SECURITY' | 'FW' | 'FW_PG' | 'HTTP' | 'HTTP_CONTROL' | 'HTTP_CRAWLER_REFERER' | 'HTTP_ORIGINS' | 'IQI' | 'LEAKED_CREDENTIALS' | 'NET' | 'ROBOTS_TXT' | 'SPEED' | 'WORKERS_AI'; description: string; endDate: string; /** * Event type for annotations. */ eventType: 'EVENT' | 'GENERAL' | 'OUTAGE' | 'PARTIAL_PROJECTION' | 'PIPELINE' | 'TRAFFIC_ANOMALY'; /** * Whether event is a single point in time or a time range. */ isInstantaneous: boolean; linkedUrl: string; startDate: string; } } export interface DateRange { /** * Adjusted end of date range. */ endTime: string; /** * Adjusted start of date range. */ startTime: string; } export interface Unit { name: string; value: string; } } export interface UnionMember1 { rfc6962: string; static: string; } export interface UnionMember2 { gt_121d: string; gt_16d_lte_31d: string; gt_31d_lte_91d: string; gt_3d_lte_16d: string; gt_91d_lte_121d: string; lte_3d: string; } export interface UnionMember3 { CERTIFICATE: string; PRECERTIFICATE: string; } export interface UnionMember4 { EXPIRED: string; VALID: string; } export interface UnionMember5 { NEGATIVE: string; POSITIVE: string; } export interface UnionMember6 { DSA: string; ECDSA: string; RSA: string; } export interface UnionMember7 { domain: string; extended: string; organization: string; unknown: string; } } export interface CTTimeseriesResponse { /** * Metadata for the results. */ meta: CTTimeseriesResponse.Meta; [k: string]: | CTTimeseriesResponse.unnamed_schema_ref_75bae70cf28e6bcef364b9840db3bdeb | CTTimeseriesResponse.Meta | undefined; } export namespace CTTimeseriesResponse { /** * Metadata for the results. */ export interface Meta { /** * Aggregation interval of the results (e.g., in 15 minutes or 1 hour intervals). * Refer to * [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/). */ aggInterval: 'FIFTEEN_MINUTES' | 'ONE_HOUR' | 'ONE_DAY' | 'ONE_WEEK' | 'ONE_MONTH'; confidenceInfo: Meta.ConfidenceInfo; dateRange: Array; /** * Timestamp of the last dataset update. */ lastUpdated: string; /** * Normalization method applied to the results. Refer to * [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/). */ normalization: | 'PERCENTAGE' | 'MIN0_MAX' | 'MIN_MAX' | 'RAW_VALUES' | 'PERCENTAGE_CHANGE' | 'ROLLING_AVERAGE' | 'OVERLAPPED_PERCENTAGE' | 'RATIO'; /** * Measurement units for the results. */ units: Array; } export namespace Meta { export interface ConfidenceInfo { annotations: Array; /** * Provides an indication of how much confidence Cloudflare has in the data. */ level: number; } export namespace ConfidenceInfo { /** * Annotation associated with the result (e.g. outage or other type of event). */ export interface Annotation { /** * Data source for annotations. */ dataSource: | 'ALL' | 'AI_BOTS' | 'AI_GATEWAY' | 'BGP' | 'BOTS' | 'CONNECTION_ANOMALY' | 'CT' | 'DNS' | 'DNS_MAGNITUDE' | 'DNS_AS112' | 'DOS' | 'EMAIL_ROUTING' | 'EMAIL_SECURITY' | 'FW' | 'FW_PG' | 'HTTP' | 'HTTP_CONTROL' | 'HTTP_CRAWLER_REFERER' | 'HTTP_ORIGINS' | 'IQI' | 'LEAKED_CREDENTIALS' | 'NET' | 'ROBOTS_TXT' | 'SPEED' | 'WORKERS_AI'; description: string; endDate: string; /** * Event type for annotations. */ eventType: 'EVENT' | 'GENERAL' | 'OUTAGE' | 'PARTIAL_PROJECTION' | 'PIPELINE' | 'TRAFFIC_ANOMALY'; /** * Whether event is a single point in time or a time range. */ isInstantaneous: boolean; linkedUrl: string; startDate: string; } } export interface DateRange { /** * Adjusted end of date range. */ endTime: string; /** * Adjusted start of date range. */ startTime: string; } export interface Unit { name: string; value: string; } } export interface unnamed_schema_ref_75bae70cf28e6bcef364b9840db3bdeb { timestamps: Array; values: Array; } } export interface CTTimeseriesGroupsResponse { /** * Metadata for the results. */ meta: CTTimeseriesGroupsResponse.Meta; serie_0: | CTTimeseriesGroupsResponse.UnnamedSchemaRef7826220e105d84352ba1108d9ed88e55 | CTTimeseriesGroupsResponse.UnionMember1 | CTTimeseriesGroupsResponse.UnionMember2 | CTTimeseriesGroupsResponse.UnionMember3 | CTTimeseriesGroupsResponse.UnionMember4 | CTTimeseriesGroupsResponse.UnionMember5 | CTTimeseriesGroupsResponse.UnionMember6 | CTTimeseriesGroupsResponse.UnionMember7; } export namespace CTTimeseriesGroupsResponse { /** * Metadata for the results. */ export interface Meta { /** * Aggregation interval of the results (e.g., in 15 minutes or 1 hour intervals). * Refer to * [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/). */ aggInterval: 'FIFTEEN_MINUTES' | 'ONE_HOUR' | 'ONE_DAY' | 'ONE_WEEK' | 'ONE_MONTH'; confidenceInfo: Meta.ConfidenceInfo; dateRange: Array; /** * Timestamp of the last dataset update. */ lastUpdated: string; /** * Normalization method applied to the results. Refer to * [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/). */ normalization: | 'PERCENTAGE' | 'MIN0_MAX' | 'MIN_MAX' | 'RAW_VALUES' | 'PERCENTAGE_CHANGE' | 'ROLLING_AVERAGE' | 'OVERLAPPED_PERCENTAGE' | 'RATIO'; /** * Measurement units for the results. */ units: Array; } export namespace Meta { export interface ConfidenceInfo { annotations: Array; /** * Provides an indication of how much confidence Cloudflare has in the data. */ level: number; } export namespace ConfidenceInfo { /** * Annotation associated with the result (e.g. outage or other type of event). */ export interface Annotation { /** * Data source for annotations. */ dataSource: | 'ALL' | 'AI_BOTS' | 'AI_GATEWAY' | 'BGP' | 'BOTS' | 'CONNECTION_ANOMALY' | 'CT' | 'DNS' | 'DNS_MAGNITUDE' | 'DNS_AS112' | 'DOS' | 'EMAIL_ROUTING' | 'EMAIL_SECURITY' | 'FW' | 'FW_PG' | 'HTTP' | 'HTTP_CONTROL' | 'HTTP_CRAWLER_REFERER' | 'HTTP_ORIGINS' | 'IQI' | 'LEAKED_CREDENTIALS' | 'NET' | 'ROBOTS_TXT' | 'SPEED' | 'WORKERS_AI'; description: string; endDate: string; /** * Event type for annotations. */ eventType: 'EVENT' | 'GENERAL' | 'OUTAGE' | 'PARTIAL_PROJECTION' | 'PIPELINE' | 'TRAFFIC_ANOMALY'; /** * Whether event is a single point in time or a time range. */ isInstantaneous: boolean; linkedUrl: string; startDate: string; } } export interface DateRange { /** * Adjusted end of date range. */ endTime: string; /** * Adjusted start of date range. */ startTime: string; } export interface Unit { name: string; value: string; } } export interface UnnamedSchemaRef7826220e105d84352ba1108d9ed88e55 { timestamps: Array; [k: string]: Array | Array | undefined; } export interface UnionMember1 { rfc6962: Array; static: Array; } export interface UnionMember2 { gt_121d: Array; gt_16d_lte_31d: Array; gt_31d_lte_91d: Array; gt_3d_lte_16d: Array; gt_91d_lte_121d: Array; lte_3d: Array; } export interface UnionMember3 { CERTIFICATE: Array; PRECERTIFICATE: Array; } export interface UnionMember4 { EXPIRED: Array; VALID: Array; } export interface UnionMember5 { NEGATIVE: Array; POSITIVE: Array; } export interface UnionMember6 { DSA: Array; ECDSA: Array; RSA: Array; } export interface UnionMember7 { domain: Array; extended: Array; organization: Array; unknown: Array; } } export interface CTSummaryParams { /** * Filters results by certificate authority. */ ca?: Array; /** * Filters results by certificate authority owner. */ caOwner?: Array; /** * End of the date range (inclusive). */ dateEnd?: Array; /** * Filters results by date range. For example, use `7d` and `7dcontrol` to compare * this week with the previous week. Use this parameter or set specific start and * end dates (`dateStart` and `dateEnd` parameters). */ dateRange?: Array; /** * Start of the date range. */ dateStart?: Array; /** * Filters results by certificate duration. */ duration?: Array< | 'LTE_3D' | 'GT_3D_LTE_7D' | 'GT_7D_LTE_10D' | 'GT_10D_LTE_47D' | 'GT_47D_LTE_100D' | 'GT_100D_LTE_200D' | 'GT_200D' >; /** * Filters results by entry type (certificate vs. pre-certificate). */ entryType?: Array<'PRECERTIFICATE' | 'CERTIFICATE'>; /** * Filters results by expiration status (expired vs. valid). */ expirationStatus?: Array<'EXPIRED' | 'VALID'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results based on whether the certificates are bound to specific IP * addresses. */ hasIps?: Array; /** * Filters results based on whether the certificates contain wildcard domains. */ hasWildcards?: Array; /** * Limits the number of objects per group to the top items within the specified * time range. When item count exceeds the limit, extra items appear grouped under * an "other" category. */ limitPerGroup?: number; /** * Filters results by certificate log. */ log?: Array; /** * Filters results by certificate log API (RFC6962 vs. static). */ logApi?: Array<'RFC6962' | 'STATIC'>; /** * Filters results by certificate log operator. */ logOperator?: Array; /** * Array of names used to label the series in the response. */ name?: Array; /** * Normalization method applied to the results. Refer to * [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/). */ normalization?: 'RAW_VALUES' | 'PERCENTAGE'; /** * Filters results by public key algorithm. */ publicKeyAlgorithm?: Array<'DSA' | 'ECDSA' | 'RSA'>; /** * Filters results by signature algorithm. */ signatureAlgorithm?: Array< | 'DSA_SHA_1' | 'DSA_SHA_256' | 'ECDSA_SHA_1' | 'ECDSA_SHA_256' | 'ECDSA_SHA_384' | 'ECDSA_SHA_512' | 'PSS_SHA_256' | 'PSS_SHA_384' | 'PSS_SHA_512' | 'RSA_MD2' | 'RSA_MD5' | 'RSA_SHA_1' | 'RSA_SHA_256' | 'RSA_SHA_384' | 'RSA_SHA_512' >; /** * Filters results by top-level domain. */ tld?: Array; /** * Specifies whether to filter out duplicate certificates and pre-certificates. Set * to true for unique entries only. */ uniqueEntries?: Array<'true' | 'false'>; /** * Filters results by validation level. */ validationLevel?: Array<'DOMAIN' | 'ORGANIZATION' | 'EXTENDED'>; } export interface CTTimeseriesParams { /** * Aggregation interval of the results (e.g., in 15 minutes or 1 hour intervals). * Refer to * [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/). */ aggInterval?: '15m' | '1h' | '1d' | '1w'; /** * Filters results by certificate authority. */ ca?: Array; /** * Filters results by certificate authority owner. */ caOwner?: Array; /** * End of the date range (inclusive). */ dateEnd?: Array; /** * Filters results by date range. For example, use `7d` and `7dcontrol` to compare * this week with the previous week. Use this parameter or set specific start and * end dates (`dateStart` and `dateEnd` parameters). */ dateRange?: Array; /** * Start of the date range. */ dateStart?: Array; /** * Filters results by certificate duration. */ duration?: Array< | 'LTE_3D' | 'GT_3D_LTE_7D' | 'GT_7D_LTE_10D' | 'GT_10D_LTE_47D' | 'GT_47D_LTE_100D' | 'GT_100D_LTE_200D' | 'GT_200D' >; /** * Filters results by entry type (certificate vs. pre-certificate). */ entryType?: Array<'PRECERTIFICATE' | 'CERTIFICATE'>; /** * Filters results by expiration status (expired vs. valid). */ expirationStatus?: Array<'EXPIRED' | 'VALID'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results based on whether the certificates are bound to specific IP * addresses. */ hasIps?: Array; /** * Filters results based on whether the certificates contain wildcard domains. */ hasWildcards?: Array; /** * Filters results by certificate log. */ log?: Array; /** * Filters results by certificate log API (RFC6962 vs. static). */ logApi?: Array<'RFC6962' | 'STATIC'>; /** * Filters results by certificate log operator. */ logOperator?: Array; /** * Array of names used to label the series in the response. */ name?: Array; /** * Filters results by public key algorithm. */ publicKeyAlgorithm?: Array<'DSA' | 'ECDSA' | 'RSA'>; /** * Filters results by signature algorithm. */ signatureAlgorithm?: Array< | 'DSA_SHA_1' | 'DSA_SHA_256' | 'ECDSA_SHA_1' | 'ECDSA_SHA_256' | 'ECDSA_SHA_384' | 'ECDSA_SHA_512' | 'PSS_SHA_256' | 'PSS_SHA_384' | 'PSS_SHA_512' | 'RSA_MD2' | 'RSA_MD5' | 'RSA_SHA_1' | 'RSA_SHA_256' | 'RSA_SHA_384' | 'RSA_SHA_512' >; /** * Filters results by top-level domain. */ tld?: Array; /** * Specifies whether to filter out duplicate certificates and pre-certificates. Set * to true for unique entries only. */ uniqueEntries?: Array<'true' | 'false'>; /** * Filters results by validation level. */ validationLevel?: Array<'DOMAIN' | 'ORGANIZATION' | 'EXTENDED'>; } export interface CTTimeseriesGroupsParams { /** * Aggregation interval of the results (e.g., in 15 minutes or 1 hour intervals). * Refer to * [Aggregation intervals](https://developers.cloudflare.com/radar/concepts/aggregation-intervals/). */ aggInterval?: '15m' | '1h' | '1d' | '1w'; /** * Filters results by certificate authority. */ ca?: Array; /** * Filters results by certificate authority owner. */ caOwner?: Array; /** * End of the date range (inclusive). */ dateEnd?: Array; /** * Filters results by date range. For example, use `7d` and `7dcontrol` to compare * this week with the previous week. Use this parameter or set specific start and * end dates (`dateStart` and `dateEnd` parameters). */ dateRange?: Array; /** * Start of the date range. */ dateStart?: Array; /** * Filters results by certificate duration. */ duration?: Array< | 'LTE_3D' | 'GT_3D_LTE_7D' | 'GT_7D_LTE_10D' | 'GT_10D_LTE_47D' | 'GT_47D_LTE_100D' | 'GT_100D_LTE_200D' | 'GT_200D' >; /** * Filters results by entry type (certificate vs. pre-certificate). */ entryType?: Array<'PRECERTIFICATE' | 'CERTIFICATE'>; /** * Filters results by expiration status (expired vs. valid). */ expirationStatus?: Array<'EXPIRED' | 'VALID'>; /** * Format in which results will be returned. */ format?: 'JSON' | 'CSV'; /** * Filters results based on whether the certificates are bound to specific IP * addresses. */ hasIps?: Array; /** * Filters results based on whether the certificates contain wildcard domains. */ hasWildcards?: Array; /** * Limits the number of objects per group to the top items within the specified * time range. When item count exceeds the limit, extra items appear grouped under * an "other" category. */ limitPerGroup?: number; /** * Filters results by certificate log. */ log?: Array; /** * Filters results by certificate log API (RFC6962 vs. static). */ logApi?: Array<'RFC6962' | 'STATIC'>; /** * Filters results by certificate log operator. */ logOperator?: Array; /** * Array of names used to label the series in the response. */ name?: Array; /** * Normalization method applied to the results. Refer to * [Normalization methods](https://developers.cloudflare.com/radar/concepts/normalization/). */ normalization?: 'RAW_VALUES' | 'PERCENTAGE'; /** * Filters results by public key algorithm. */ publicKeyAlgorithm?: Array<'DSA' | 'ECDSA' | 'RSA'>; /** * Filters results by signature algorithm. */ signatureAlgorithm?: Array< | 'DSA_SHA_1' | 'DSA_SHA_256' | 'ECDSA_SHA_1' | 'ECDSA_SHA_256' | 'ECDSA_SHA_384' | 'ECDSA_SHA_512' | 'PSS_SHA_256' | 'PSS_SHA_384' | 'PSS_SHA_512' | 'RSA_MD2' | 'RSA_MD5' | 'RSA_SHA_1' | 'RSA_SHA_256' | 'RSA_SHA_384' | 'RSA_SHA_512' >; /** * Filters results by top-level domain. */ tld?: Array; /** * Specifies whether to filter out duplicate certificates and pre-certificates. Set * to true for unique entries only. */ uniqueEntries?: Array<'true' | 'false'>; /** * Filters results by validation level. */ validationLevel?: Array<'DOMAIN' | 'ORGANIZATION' | 'EXTENDED'>; } CT.Authorities = Authorities; CT.Logs = Logs; export declare namespace CT { export { type CTSummaryResponse as CTSummaryResponse, type CTTimeseriesResponse as CTTimeseriesResponse, type CTTimeseriesGroupsResponse as CTTimeseriesGroupsResponse, type CTSummaryParams as CTSummaryParams, type CTTimeseriesParams as CTTimeseriesParams, type CTTimeseriesGroupsParams as CTTimeseriesGroupsParams, }; export { Authorities as Authorities, type AuthorityListResponse as AuthorityListResponse, type AuthorityGetResponse as AuthorityGetResponse, type AuthorityListParams as AuthorityListParams, type AuthorityGetParams as AuthorityGetParams, }; export { Logs as Logs, type LogListResponse as LogListResponse, type LogGetResponse as LogGetResponse, type LogListParams as LogListParams, type LogGetParams as LogGetParams, }; }