19 lines
871 B
TypeScript
19 lines
871 B
TypeScript
import { z } from 'zod';
|
|
export declare const bulkGeocodeSchema: z.ZodObject<{
|
|
confidenceThreshold: z.ZodOptional<z.ZodNumber>;
|
|
buildingType: z.ZodOptional<z.ZodEnum<["SINGLE_FAMILY", "MULTI_UNIT", "MIXED_USE", "COMMERCIAL"]>>;
|
|
cutId: z.ZodOptional<z.ZodString>;
|
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
}, "strip", z.ZodTypeAny, {
|
|
limit?: number | undefined;
|
|
cutId?: string | undefined;
|
|
buildingType?: "SINGLE_FAMILY" | "MULTI_UNIT" | "MIXED_USE" | "COMMERCIAL" | undefined;
|
|
confidenceThreshold?: number | undefined;
|
|
}, {
|
|
limit?: number | undefined;
|
|
cutId?: string | undefined;
|
|
buildingType?: "SINGLE_FAMILY" | "MULTI_UNIT" | "MIXED_USE" | "COMMERCIAL" | undefined;
|
|
confidenceThreshold?: number | undefined;
|
|
}>;
|
|
export type BulkGeocodeInput = z.infer<typeof bulkGeocodeSchema>;
|
|
//# sourceMappingURL=bulk-geocode.schemas.d.ts.map
|