archetecture security fix
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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
|
||||
Reference in New Issue
Block a user