Introduce zod for server-side validations (#4397)
* chore(server): use zod for validations * fix(server): use ctx.input for documents.list * fix(server): schema for documents.archived * fix(server): documents.deleted, documents.viewed & documents.drafts * fix(server): documents.info * fix(server): documents.export & documents.restore * fix(server): documents.search_titles & documents.search * fix(server): documents.templatize * fix(server): replace nullish() with optional() * fix(server): documents.update * fix(server): documents.move * fix(server): remaining * fix(server): add validation for snippet min and max words * fix(server): fix update types * fix(server): remove DocumentSchema * fix(server): collate duplicate schemas * fix: typos * fix: reviews * chore: Fixed case of Metrics import * fix: restructure /api * fix: loosen validation for id as it can be a slug too * Add test for query by slug Simplify import Co-authored-by: Tom Moor <tom.moor@gmail.com>
This commit is contained in:
@@ -25,7 +25,7 @@ export default async function documentCreator({
|
||||
title: string;
|
||||
text: string;
|
||||
publish?: boolean;
|
||||
collectionId: string;
|
||||
collectionId?: string;
|
||||
parentDocumentId?: string;
|
||||
importId?: string;
|
||||
templateDocument?: Document | null;
|
||||
@@ -33,7 +33,6 @@ export default async function documentCreator({
|
||||
template?: boolean;
|
||||
createdAt?: Date;
|
||||
updatedAt?: Date;
|
||||
index?: number;
|
||||
user: User;
|
||||
editorVersion?: string;
|
||||
source?: "import";
|
||||
|
||||
Reference in New Issue
Block a user