29 lines
756 B
TypeScript
29 lines
756 B
TypeScript
import { z } from 'zod';
|
|
export declare const replySchema: z.ZodObject<{
|
|
companyReply: z.ZodString;
|
|
}, "strip", z.ZodTypeAny, {
|
|
companyReply: string;
|
|
}, {
|
|
companyReply: string;
|
|
}>;
|
|
export declare const listQuerySchema: z.ZodObject<{
|
|
rating: z.ZodOptional<z.ZodNumber>;
|
|
page: z.ZodDefault<z.ZodNumber>;
|
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
|
}, "strip", z.ZodTypeAny, {
|
|
page: number;
|
|
pageSize: number;
|
|
rating?: number | undefined;
|
|
}, {
|
|
page?: number | undefined;
|
|
pageSize?: number | undefined;
|
|
rating?: number | undefined;
|
|
}>;
|
|
export declare const idParamSchema: z.ZodObject<{
|
|
id: z.ZodString;
|
|
}, "strip", z.ZodTypeAny, {
|
|
id: string;
|
|
}, {
|
|
id: string;
|
|
}>;
|
|
//# sourceMappingURL=review.schemas.d.ts.map
|