add benefit eligibility setting to HR members

This commit is contained in:
Danel Kungla
2025-10-03 15:33:38 +03:00
parent 419bcc11cb
commit 47e8bd873c
10 changed files with 287 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
import { z } from 'zod';
export const UpdateEmployeeBenefitSchema = z.object({
accountId: z.string().uuid(),
userId: z.string().uuid(),
});