release: v4.3.1

This commit is contained in:
Amruth Pillai
2025-01-11 15:38:26 +01:00
parent 54bace451c
commit 58ef309b68
25 changed files with 303 additions and 131 deletions

View File

@ -6,7 +6,7 @@ import { defaultItem, itemSchema } from "../shared";
export const skillSchema = itemSchema.extend({
name: z.string(),
description: z.string(),
level: z.number().min(0).max(5).default(1),
level: z.coerce.number().min(0).max(5).default(1),
keywords: z.array(z.string()).default([]),
});