mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
fix: remove further unused code
This commit is contained in:
@ -2,19 +2,6 @@ import { z } from 'zod';
|
||||
|
||||
import { FieldType } from '@documenso/prisma/client';
|
||||
|
||||
export const ZSearchInboxDocumentsParamsSchema = z.object({
|
||||
filter: z
|
||||
.union([z.literal('SIGNED'), z.literal('NOT_SIGNED'), z.undefined()])
|
||||
.catch(() => undefined),
|
||||
cursor: z.number().default(1),
|
||||
query: z
|
||||
.string()
|
||||
.optional()
|
||||
.catch(() => undefined),
|
||||
});
|
||||
|
||||
export type TSearchInboxDocumentsParamsSchema = z.infer<typeof ZSearchInboxDocumentsParamsSchema>;
|
||||
|
||||
export const ZSetRecipientsForDocumentMutationSchema = z.object({
|
||||
documentId: z.number(),
|
||||
recipients: z.array(
|
||||
|
||||
Reference in New Issue
Block a user