import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest = { organizationId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; workspaceId?: string | undefined; pageSize?: number | undefined; pageNumber?: number | undefined; status?: string | undefined; search?: string | undefined; }; export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus: { readonly StatusUnspecified: "STATUS_UNSPECIFIED"; readonly StatusActive: "STATUS_ACTIVE"; readonly StatusSuspended: "STATUS_SUSPENDED"; readonly StatusPendingVerification: "STATUS_PENDING_VERIFICATION"; readonly StatusRevoked: "STATUS_REVOKED"; readonly StatusExpired: "STATUS_EXPIRED"; readonly StatusRateLimited: "STATUS_RATE_LIMITED"; readonly StatusPendingReview: "STATUS_PENDING_REVIEW"; readonly StatusDeprecated: "STATUS_DEPRECATED"; readonly StatusMaintenance: "STATUS_MAINTENANCE"; }; export type GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus = ClosedEnum; export type GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys = { id?: string | undefined; name?: string | undefined; keyHash?: string | undefined; keyPrefix?: string | undefined; scopes?: Array | undefined; allowedIps?: Array | undefined; allowedDomains?: Array | undefined; allowedEnvironments?: Array | undefined; isTestKey?: boolean | undefined; requestsPerSecond?: number | undefined; requestsPerDay?: number | undefined; concurrentRequests?: number | undefined; monthlyRequestQuota?: string | undefined; costPerRequest?: number | undefined; billingTier?: string | undefined; totalRequests?: string | undefined; totalErrors?: string | undefined; lastUsedAt?: Date | undefined; averageResponseTime?: number | undefined; endpointUsageJson?: string | undefined; errorRatesJson?: string | undefined; recentErrors?: string | undefined; successfulRequestsCount?: number | undefined; successRate?: number | undefined; status?: GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; expiresAt?: Date | undefined; deletedAt?: Date | undefined; lastRotatedAt?: Date | undefined; lastSecurityReviewAt?: Date | undefined; requiresClientSecret?: boolean | undefined; clientSecretHash?: string | undefined; enforceHttps?: boolean | undefined; enforceSigning?: boolean | undefined; allowedSignatureAlgorithms?: Array | undefined; enforceMutualTls?: boolean | undefined; clientCertificateHash?: string | undefined; requireRequestSigning?: boolean | undefined; description?: string | undefined; metadataJson?: string | undefined; tags?: Array | undefined; apiVersion?: string | undefined; supportedFeatures?: Array | undefined; documentationUrl?: string | undefined; supportContact?: string | undefined; logAllRequests?: boolean | undefined; lastRotationReason?: string | undefined; lastRotationDate?: Date | undefined; rotationFrequencyDays?: number | undefined; complianceStandards?: Array | undefined; requiresAuditLogging?: boolean | undefined; dataResidency?: string | undefined; approvedIntegrations?: Array | undefined; alertEmails?: Array | undefined; webhookUrl?: string | undefined; alertOnQuotaThreshold?: boolean | undefined; quotaAlertThreshold?: number | undefined; alertOnErrorSpike?: boolean | undefined; errorAlertThreshold?: number | undefined; monitoringIntegrations?: Array | undefined; encrypted?: boolean | undefined; dataClassification?: string | undefined; maxUses?: number | undefined; rateLimit?: number | undefined; }; export type GetApiLeadScraperMicroserviceApiV1ApiKeysListData = { apiKeys?: Array | undefined; nextPageNumber?: number | undefined; totalCount?: number | undefined; }; /** * Retrieves a list of API keys with optional filtering */ export type GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody = { data: GetApiLeadScraperMicroserviceApiV1ApiKeysListData; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$Outbound = { organizationId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; workspaceId?: string | undefined; pageSize?: number | undefined; pageNumber?: number | undefined; status?: string | undefined; search?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListRequestToJSON(getApiLeadScraperMicroserviceApiV1ApiKeysListRequest: GetApiLeadScraperMicroserviceApiV1ApiKeysListRequest): string; export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly StatusUnspecified: "STATUS_UNSPECIFIED"; readonly StatusActive: "STATUS_ACTIVE"; readonly StatusSuspended: "STATUS_SUSPENDED"; readonly StatusPendingVerification: "STATUS_PENDING_VERIFICATION"; readonly StatusRevoked: "STATUS_REVOKED"; readonly StatusExpired: "STATUS_EXPIRED"; readonly StatusRateLimited: "STATUS_RATE_LIMITED"; readonly StatusPendingReview: "STATUS_PENDING_REVIEW"; readonly StatusDeprecated: "STATUS_DEPRECATED"; readonly StatusMaintenance: "STATUS_MAINTENANCE"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly StatusUnspecified: "STATUS_UNSPECIFIED"; readonly StatusActive: "STATUS_ACTIVE"; readonly StatusSuspended: "STATUS_SUSPENDED"; readonly StatusPendingVerification: "STATUS_PENDING_VERIFICATION"; readonly StatusRevoked: "STATUS_REVOKED"; readonly StatusExpired: "STATUS_EXPIRED"; readonly StatusRateLimited: "STATUS_RATE_LIMITED"; readonly StatusPendingReview: "STATUS_PENDING_REVIEW"; readonly StatusDeprecated: "STATUS_DEPRECATED"; readonly StatusMaintenance: "STATUS_MAINTENANCE"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$Outbound = { id?: string | undefined; name?: string | undefined; keyHash?: string | undefined; keyPrefix?: string | undefined; scopes?: Array | undefined; allowedIps?: Array | undefined; allowedDomains?: Array | undefined; allowedEnvironments?: Array | undefined; isTestKey?: boolean | undefined; requestsPerSecond?: number | undefined; requestsPerDay?: number | undefined; concurrentRequests?: number | undefined; monthlyRequestQuota?: string | undefined; costPerRequest?: number | undefined; billingTier?: string | undefined; totalRequests?: string | undefined; totalErrors?: string | undefined; lastUsedAt?: string | undefined; averageResponseTime?: number | undefined; endpointUsageJson?: string | undefined; errorRatesJson?: string | undefined; recentErrors?: string | undefined; successfulRequestsCount?: number | undefined; successRate?: number | undefined; status: string; createdAt?: string | undefined; updatedAt?: string | undefined; expiresAt?: string | undefined; deletedAt?: string | undefined; lastRotatedAt?: string | undefined; lastSecurityReviewAt?: string | undefined; requiresClientSecret?: boolean | undefined; clientSecretHash?: string | undefined; enforceHttps?: boolean | undefined; enforceSigning?: boolean | undefined; allowedSignatureAlgorithms?: Array | undefined; enforceMutualTls?: boolean | undefined; clientCertificateHash?: string | undefined; requireRequestSigning?: boolean | undefined; description?: string | undefined; metadataJson?: string | undefined; tags?: Array | undefined; apiVersion?: string | undefined; supportedFeatures?: Array | undefined; documentationUrl?: string | undefined; supportContact?: string | undefined; logAllRequests?: boolean | undefined; lastRotationReason?: string | undefined; lastRotationDate?: string | undefined; rotationFrequencyDays?: number | undefined; complianceStandards?: Array | undefined; requiresAuditLogging?: boolean | undefined; dataResidency?: string | undefined; approvedIntegrations?: Array | undefined; alertEmails?: Array | undefined; webhookUrl?: string | undefined; alertOnQuotaThreshold?: boolean | undefined; quotaAlertThreshold?: number | undefined; alertOnErrorSpike?: boolean | undefined; errorAlertThreshold?: number | undefined; monitoringIntegrations?: Array | undefined; encrypted?: boolean | undefined; dataClassification?: string | undefined; maxUses?: number | undefined; rateLimit?: number | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListApiKeysToJSON(getApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys: GetApiLeadScraperMicroserviceApiV1ApiKeysListApiKeys): string; export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListApiKeysFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListData$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1ApiKeysListData$Outbound = { apiKeys?: Array | undefined; nextPageNumber?: number | undefined; totalCount?: number | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListData$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1ApiKeysListData$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListData$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1ApiKeysListData$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListDataToJSON(getApiLeadScraperMicroserviceApiV1ApiKeysListData: GetApiLeadScraperMicroserviceApiV1ApiKeysListData): string; export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$Outbound = { data: GetApiLeadScraperMicroserviceApiV1ApiKeysListData$Outbound; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListResponseBodyToJSON(getApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody: GetApiLeadScraperMicroserviceApiV1ApiKeysListResponseBody): string; export declare function getApiLeadScraperMicroserviceApiV1ApiKeysListResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapileadscrapermicroserviceapiv1apikeyslist.d.ts.map