mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 17:21:41 +10:00
feat: template recipients on blur
This commit is contained in:
@ -75,3 +75,13 @@ export const ZCompleteDocumentWithTokenMutationSchema = z.object({
|
||||
export type TCompleteDocumentWithTokenMutationSchema = z.infer<
|
||||
typeof ZCompleteDocumentWithTokenMutationSchema
|
||||
>;
|
||||
|
||||
export const ZRemoveTemplateSignerMutationSchema = z.object({
|
||||
templateId: z.number(),
|
||||
teamId: z.number().optional(),
|
||||
recipientId: z.number(),
|
||||
});
|
||||
|
||||
export type TRemoveTemplateSignerMutationSchema = z.infer<
|
||||
typeof ZRemoveTemplateSignerMutationSchema
|
||||
>;
|
||||
|
||||
Reference in New Issue
Block a user