chore(dependencies): update TypeScript ESLint and Vitest to latest versions

- Bump @typescript-eslint packages to 8.23.0
- Update Vitest and related packages to 2.1.9
- Minor version upgrades for ts-api-utils and other related dependencies
This commit is contained in:
Amruth Pillai
2025-02-03 19:51:39 +01:00
parent ec4e43d4fc
commit 7054623678
10 changed files with 277 additions and 179 deletions

View File

@ -33,6 +33,8 @@ export const userSchema = z.object({
export class UserDto extends createZodDto(userSchema) {}
export const userWithSecretsSchema = userSchema.merge(z.object({ secrets: secretsSchema }));
export const userWithSecretsSchema = userSchema.merge(
z.object({ secrets: secretsSchema.nullable().default(null) }),
);
export class UserWithSecrets extends createZodDto(userWithSecretsSchema) {}