feat: Add bulk actions to contact overview

This commit is contained in:
Dries Augustyns
2025-12-18 16:12:42 +01:00
parent 8c0304273c
commit 726f66762b
9 changed files with 1180 additions and 35 deletions
+4 -1
View File
@@ -69,7 +69,10 @@ export const ContactSchemas = {
subscribed: z.boolean().default(true),
data: jsonSchema.optional(),
}),
};
bulkAction: z.object({
contactIds: z.array(uuid).min(1).max(1000),
}),
} as const;
const segmentFilterSchema = z.object({
field: z.string().min(1),