mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 07:43:10 +10:00
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:
@ -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) {}
|
||||
|
||||
Reference in New Issue
Block a user