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 GetApiLeadScraperMicroserviceApiV1LeadsRequest = { /** * Context identifiers */ organizationId?: string | undefined; workspaceId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; /** * Pagination */ pageSize?: number | undefined; pageNumber?: number | undefined; }; export declare const GetApiLeadScraperMicroserviceApiV1LeadsDay: { readonly DayOfWeekUnspecified: "DAY_OF_WEEK_UNSPECIFIED"; readonly DayOfWeekMonday: "DAY_OF_WEEK_MONDAY"; readonly DayOfWeekTuesday: "DAY_OF_WEEK_TUESDAY"; readonly DayOfWeekWednesday: "DAY_OF_WEEK_WEDNESDAY"; readonly DayOfWeekThursday: "DAY_OF_WEEK_THURSDAY"; readonly DayOfWeekFriday: "DAY_OF_WEEK_FRIDAY"; readonly DayOfWeekSaturday: "DAY_OF_WEEK_SATURDAY"; readonly DayOfWeekSunday: "DAY_OF_WEEK_SUNDAY"; }; export type GetApiLeadScraperMicroserviceApiV1LeadsDay = ClosedEnum; export type GetApiLeadScraperMicroserviceApiV1LeadsRegularHours = { id?: string | undefined; day?: GetApiLeadScraperMicroserviceApiV1LeadsDay | undefined; openTime?: string | undefined; closeTime?: string | undefined; closed?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; }; export declare const GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay: { readonly DayOfWeekUnspecified: "DAY_OF_WEEK_UNSPECIFIED"; readonly DayOfWeekMonday: "DAY_OF_WEEK_MONDAY"; readonly DayOfWeekTuesday: "DAY_OF_WEEK_TUESDAY"; readonly DayOfWeekWednesday: "DAY_OF_WEEK_WEDNESDAY"; readonly DayOfWeekThursday: "DAY_OF_WEEK_THURSDAY"; readonly DayOfWeekFriday: "DAY_OF_WEEK_FRIDAY"; readonly DayOfWeekSaturday: "DAY_OF_WEEK_SATURDAY"; readonly DayOfWeekSunday: "DAY_OF_WEEK_SUNDAY"; }; export type GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay = ClosedEnum; export type GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours = { id?: string | undefined; day?: GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay | undefined; openTime?: string | undefined; closeTime?: string | undefined; closed?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; }; export type GetApiLeadScraperMicroserviceApiV1LeadsReviews = { id?: string | undefined; author?: string | undefined; rating?: number | undefined; text?: string | undefined; time?: Date | undefined; language?: string | undefined; profilePhotoUrl?: string | undefined; reviewCount?: number | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; }; export declare const GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange: { readonly RevenueRangeUnspecified: "REVENUE_RANGE_UNSPECIFIED"; readonly RevenueRangeUnder100K: "REVENUE_RANGE_UNDER_100K"; readonly RevenueRange100KTo1M: "REVENUE_RANGE_100K_TO_1M"; readonly RevenueRange1MTo10M: "REVENUE_RANGE_1M_TO_10M"; readonly RevenueRange10MTo50M: "REVENUE_RANGE_10M_TO_50M"; readonly RevenueRangeOver50M: "REVENUE_RANGE_OVER_50M"; }; export type GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange = ClosedEnum; export declare const GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits: { readonly EmployeeBenefitUnspecified: "EMPLOYEE_BENEFIT_UNSPECIFIED"; readonly EmployeeBenefitHealthInsurance: "EMPLOYEE_BENEFIT_HEALTH_INSURANCE"; readonly EmployeeBenefitRetirementPlan: "EMPLOYEE_BENEFIT_RETIREMENT_PLAN"; readonly EmployeeBenefitPaidTimeOff: "EMPLOYEE_BENEFIT_PAID_TIME_OFF"; readonly EmployeeBenefitRemoteWork: "EMPLOYEE_BENEFIT_REMOTE_WORK"; }; export type GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits = ClosedEnum; export type GetApiLeadScraperMicroserviceApiV1LeadsLeads = { id?: string | undefined; name?: string | undefined; website?: string | undefined; phone?: string | undefined; address?: string | undefined; city?: string | undefined; state?: string | undefined; country?: string | undefined; latitude?: number | undefined; longitude?: number | undefined; googleRating?: number | undefined; reviewCount?: number | undefined; industry?: string | undefined; employeeCount?: number | undefined; estimatedRevenue?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; placeId?: string | undefined; googleMapsUrl?: string | undefined; businessStatus?: string | undefined; regularHours?: Array | undefined; specialHours?: Array | undefined; photoReferences?: Array | undefined; mainPhotoUrl?: string | undefined; reviews?: Array | undefined; types?: Array | undefined; amenities?: Array | undefined; servesVegetarianFood?: boolean | undefined; outdoorSeating?: boolean | undefined; paymentMethods?: Array | undefined; wheelchairAccessible?: boolean | undefined; parkingAvailable?: boolean | undefined; socialMedia?: { [k: string]: string; } | undefined; ratingCategory?: string | undefined; rating?: number | undefined; count?: number | undefined; lastUpdated?: Date | undefined; dataSourceVersion?: string | undefined; scrapingSessionId?: string | undefined; alternatePhones?: Array | undefined; contactPersonName?: string | undefined; contactPersonTitle?: string | undefined; contactEmail?: string | undefined; foundedYear?: number | undefined; businessType?: string | undefined; certifications?: Array | undefined; licenseNumber?: string | undefined; revenueRange?: GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange | undefined; fundingStage?: string | undefined; isPublicCompany?: boolean | undefined; websiteLoadSpeed?: number | undefined; hasSslCertificate?: boolean | undefined; cmsUsed?: string | undefined; ecommercePlatforms?: Array | undefined; timezone?: string | undefined; neighborhood?: string | undefined; nearbyLandmarks?: Array | undefined; transportationAccess?: string | undefined; employeeBenefits?: Array | undefined; parentCompany?: string | undefined; subsidiaries?: Array | undefined; isFranchise?: boolean | undefined; seoKeywords?: Array | undefined; usesGoogleAds?: boolean | undefined; googleMyBusinessCategory?: string | undefined; naicsCode?: string | undefined; sicCode?: string | undefined; unspscCode?: string | undefined; isGreenCertified?: boolean | undefined; energySources?: Array | undefined; sustainabilityRating?: string | undefined; recentAnnouncements?: Array | undefined; lastProductLaunch?: Date | undefined; hasLitigationHistory?: boolean | undefined; exportControlStatus?: string | undefined; }; export type GetApiLeadScraperMicroserviceApiV1LeadsData = { leads?: Array | undefined; totalCount?: number | undefined; nextPageNumber?: number | undefined; }; /** * Retrieves a paginated list of leads with comprehensive filtering options */ export type GetApiLeadScraperMicroserviceApiV1LeadsResponseBody = { data: GetApiLeadScraperMicroserviceApiV1LeadsData; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsRequest$Outbound = { organizationId?: string | undefined; workspaceId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; pageSize?: number | undefined; pageNumber?: number | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsRequest$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 GetApiLeadScraperMicroserviceApiV1LeadsRequest$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRequest$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsRequest$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsRequestToJSON(getApiLeadScraperMicroserviceApiV1LeadsRequest: GetApiLeadScraperMicroserviceApiV1LeadsRequest): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsDay$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsDay$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 GetApiLeadScraperMicroserviceApiV1LeadsDay$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsDay$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly DayOfWeekUnspecified: "DAY_OF_WEEK_UNSPECIFIED"; readonly DayOfWeekMonday: "DAY_OF_WEEK_MONDAY"; readonly DayOfWeekTuesday: "DAY_OF_WEEK_TUESDAY"; readonly DayOfWeekWednesday: "DAY_OF_WEEK_WEDNESDAY"; readonly DayOfWeekThursday: "DAY_OF_WEEK_THURSDAY"; readonly DayOfWeekFriday: "DAY_OF_WEEK_FRIDAY"; readonly DayOfWeekSaturday: "DAY_OF_WEEK_SATURDAY"; readonly DayOfWeekSunday: "DAY_OF_WEEK_SUNDAY"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsDay$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly DayOfWeekUnspecified: "DAY_OF_WEEK_UNSPECIFIED"; readonly DayOfWeekMonday: "DAY_OF_WEEK_MONDAY"; readonly DayOfWeekTuesday: "DAY_OF_WEEK_TUESDAY"; readonly DayOfWeekWednesday: "DAY_OF_WEEK_WEDNESDAY"; readonly DayOfWeekThursday: "DAY_OF_WEEK_THURSDAY"; readonly DayOfWeekFriday: "DAY_OF_WEEK_FRIDAY"; readonly DayOfWeekSaturday: "DAY_OF_WEEK_SATURDAY"; readonly DayOfWeekSunday: "DAY_OF_WEEK_SUNDAY"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$Outbound = { id?: string | undefined; day: string; openTime?: string | undefined; closeTime?: string | undefined; closed?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$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 GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsRegularHours$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsRegularHoursToJSON(getApiLeadScraperMicroserviceApiV1LeadsRegularHours: GetApiLeadScraperMicroserviceApiV1LeadsRegularHours): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsRegularHoursFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay$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 GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly DayOfWeekUnspecified: "DAY_OF_WEEK_UNSPECIFIED"; readonly DayOfWeekMonday: "DAY_OF_WEEK_MONDAY"; readonly DayOfWeekTuesday: "DAY_OF_WEEK_TUESDAY"; readonly DayOfWeekWednesday: "DAY_OF_WEEK_WEDNESDAY"; readonly DayOfWeekThursday: "DAY_OF_WEEK_THURSDAY"; readonly DayOfWeekFriday: "DAY_OF_WEEK_FRIDAY"; readonly DayOfWeekSaturday: "DAY_OF_WEEK_SATURDAY"; readonly DayOfWeekSunday: "DAY_OF_WEEK_SUNDAY"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsLeadsDay$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly DayOfWeekUnspecified: "DAY_OF_WEEK_UNSPECIFIED"; readonly DayOfWeekMonday: "DAY_OF_WEEK_MONDAY"; readonly DayOfWeekTuesday: "DAY_OF_WEEK_TUESDAY"; readonly DayOfWeekWednesday: "DAY_OF_WEEK_WEDNESDAY"; readonly DayOfWeekThursday: "DAY_OF_WEEK_THURSDAY"; readonly DayOfWeekFriday: "DAY_OF_WEEK_FRIDAY"; readonly DayOfWeekSaturday: "DAY_OF_WEEK_SATURDAY"; readonly DayOfWeekSunday: "DAY_OF_WEEK_SUNDAY"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$Outbound = { id?: string | undefined; day: string; openTime?: string | undefined; closeTime?: string | undefined; closed?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$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 GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsSpecialHoursToJSON(getApiLeadScraperMicroserviceApiV1LeadsSpecialHours: GetApiLeadScraperMicroserviceApiV1LeadsSpecialHours): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsSpecialHoursFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsReviews$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsReviews$Outbound = { id?: string | undefined; author?: string | undefined; rating?: number | undefined; text?: string | undefined; time?: string | undefined; language?: string | undefined; profilePhotoUrl?: string | undefined; reviewCount?: number | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsReviews$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 GetApiLeadScraperMicroserviceApiV1LeadsReviews$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsReviews$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsReviews$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsReviewsToJSON(getApiLeadScraperMicroserviceApiV1LeadsReviews: GetApiLeadScraperMicroserviceApiV1LeadsReviews): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange$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 GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly RevenueRangeUnspecified: "REVENUE_RANGE_UNSPECIFIED"; readonly RevenueRangeUnder100K: "REVENUE_RANGE_UNDER_100K"; readonly RevenueRange100KTo1M: "REVENUE_RANGE_100K_TO_1M"; readonly RevenueRange1MTo10M: "REVENUE_RANGE_1M_TO_10M"; readonly RevenueRange10MTo50M: "REVENUE_RANGE_10M_TO_50M"; readonly RevenueRangeOver50M: "REVENUE_RANGE_OVER_50M"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsRevenueRange$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly RevenueRangeUnspecified: "REVENUE_RANGE_UNSPECIFIED"; readonly RevenueRangeUnder100K: "REVENUE_RANGE_UNDER_100K"; readonly RevenueRange100KTo1M: "REVENUE_RANGE_100K_TO_1M"; readonly RevenueRange1MTo10M: "REVENUE_RANGE_1M_TO_10M"; readonly RevenueRange10MTo50M: "REVENUE_RANGE_10M_TO_50M"; readonly RevenueRangeOver50M: "REVENUE_RANGE_OVER_50M"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits$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 GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly EmployeeBenefitUnspecified: "EMPLOYEE_BENEFIT_UNSPECIFIED"; readonly EmployeeBenefitHealthInsurance: "EMPLOYEE_BENEFIT_HEALTH_INSURANCE"; readonly EmployeeBenefitRetirementPlan: "EMPLOYEE_BENEFIT_RETIREMENT_PLAN"; readonly EmployeeBenefitPaidTimeOff: "EMPLOYEE_BENEFIT_PAID_TIME_OFF"; readonly EmployeeBenefitRemoteWork: "EMPLOYEE_BENEFIT_REMOTE_WORK"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsEmployeeBenefits$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly EmployeeBenefitUnspecified: "EMPLOYEE_BENEFIT_UNSPECIFIED"; readonly EmployeeBenefitHealthInsurance: "EMPLOYEE_BENEFIT_HEALTH_INSURANCE"; readonly EmployeeBenefitRetirementPlan: "EMPLOYEE_BENEFIT_RETIREMENT_PLAN"; readonly EmployeeBenefitPaidTimeOff: "EMPLOYEE_BENEFIT_PAID_TIME_OFF"; readonly EmployeeBenefitRemoteWork: "EMPLOYEE_BENEFIT_REMOTE_WORK"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsLeads$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsLeads$Outbound = { id?: string | undefined; name?: string | undefined; website?: string | undefined; phone?: string | undefined; address?: string | undefined; city?: string | undefined; state?: string | undefined; country?: string | undefined; latitude?: number | undefined; longitude?: number | undefined; googleRating?: number | undefined; reviewCount?: number | undefined; industry?: string | undefined; employeeCount?: number | undefined; estimatedRevenue?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; placeId?: string | undefined; googleMapsUrl?: string | undefined; businessStatus?: string | undefined; regularHours?: Array | undefined; specialHours?: Array | undefined; photoReferences?: Array | undefined; mainPhotoUrl?: string | undefined; reviews?: Array | undefined; types?: Array | undefined; amenities?: Array | undefined; servesVegetarianFood?: boolean | undefined; outdoorSeating?: boolean | undefined; paymentMethods?: Array | undefined; wheelchairAccessible?: boolean | undefined; parkingAvailable?: boolean | undefined; socialMedia?: { [k: string]: string; } | undefined; ratingCategory?: string | undefined; rating?: number | undefined; count?: number | undefined; lastUpdated?: string | undefined; dataSourceVersion?: string | undefined; scrapingSessionId?: string | undefined; alternatePhones?: Array | undefined; contactPersonName?: string | undefined; contactPersonTitle?: string | undefined; contactEmail?: string | undefined; foundedYear?: number | undefined; businessType?: string | undefined; certifications?: Array | undefined; licenseNumber?: string | undefined; revenueRange: string; fundingStage?: string | undefined; isPublicCompany?: boolean | undefined; websiteLoadSpeed?: number | undefined; hasSslCertificate?: boolean | undefined; cmsUsed?: string | undefined; ecommercePlatforms?: Array | undefined; timezone?: string | undefined; neighborhood?: string | undefined; nearbyLandmarks?: Array | undefined; transportationAccess?: string | undefined; employeeBenefits?: Array | undefined; parentCompany?: string | undefined; subsidiaries?: Array | undefined; isFranchise?: boolean | undefined; seoKeywords?: Array | undefined; usesGoogleAds?: boolean | undefined; googleMyBusinessCategory?: string | undefined; naicsCode?: string | undefined; sicCode?: string | undefined; unspscCode?: string | undefined; isGreenCertified?: boolean | undefined; energySources?: Array | undefined; sustainabilityRating?: string | undefined; recentAnnouncements?: Array | undefined; lastProductLaunch?: string | undefined; hasLitigationHistory?: boolean | undefined; exportControlStatus?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsLeads$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 GetApiLeadScraperMicroserviceApiV1LeadsLeads$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsLeads$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsLeads$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsLeads$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsLeads$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsLeadsToJSON(getApiLeadScraperMicroserviceApiV1LeadsLeads: GetApiLeadScraperMicroserviceApiV1LeadsLeads): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsLeadsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsData$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsData$Outbound = { leads?: Array | undefined; totalCount?: number | undefined; nextPageNumber?: number | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsData$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 GetApiLeadScraperMicroserviceApiV1LeadsData$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsData$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsData$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsDataToJSON(getApiLeadScraperMicroserviceApiV1LeadsData: GetApiLeadScraperMicroserviceApiV1LeadsData): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$Outbound = { data: GetApiLeadScraperMicroserviceApiV1LeadsData$Outbound; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$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 GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1LeadsResponseBody$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1LeadsResponseBodyToJSON(getApiLeadScraperMicroserviceApiV1LeadsResponseBody: GetApiLeadScraperMicroserviceApiV1LeadsResponseBody): string; export declare function getApiLeadScraperMicroserviceApiV1LeadsResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapileadscrapermicroserviceapiv1leads.d.ts.map