19 lines
658 B
TypeScript
19 lines
658 B
TypeScript
import { z } from 'zod';
|
|
export declare const listRepresentativesSchema: z.ZodObject<{
|
|
page: z.ZodDefault<z.ZodNumber>;
|
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
search: z.ZodOptional<z.ZodString>;
|
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
}, "strip", z.ZodTypeAny, {
|
|
limit: number;
|
|
page: number;
|
|
search?: string | undefined;
|
|
postalCode?: string | undefined;
|
|
}, {
|
|
search?: string | undefined;
|
|
limit?: number | undefined;
|
|
page?: number | undefined;
|
|
postalCode?: string | undefined;
|
|
}>;
|
|
export type ListRepresentativesInput = z.infer<typeof listRepresentativesSchema>;
|
|
//# sourceMappingURL=representatives.schemas.d.ts.map
|