add seach documents request / response zod schema

This commit is contained in:
thierryverse 2025-11-20 09:42:32 +02:00 committed by CREDO23
parent e237caf91a
commit e7693bd19f

View file

@ -122,3 +122,5 @@ export type CreateDocumentRequest = z.infer<typeof createDocumentRequest>;
export type CreateDocumentResponse = z.infer<typeof createDocumentResponse>;
export type UploadDocumentRequest = z.infer<typeof uploadDocumentRequest>;
export type UploadDocumentResponse = z.infer<typeof uploadDocumentResponse>;
export type SearchDocumentsRequest = z.infer<typeof searchDocumentsRequest>;
export type SearchDocumentsResponse = z.infer<typeof searchDocumentsResponse>;