UPDATE: Update readme and Next 16.07 (CVE-2025-66478)

This commit is contained in:
2025-12-04 23:27:41 +07:00
commit 6b079db470
280 changed files with 364214 additions and 0 deletions

13
script/auto-gen.bat Normal file
View File

@@ -0,0 +1,13 @@
@echo off
echo [INFO] Create folder src\zod if not exist...
if not exist src\zod (
mkdir src\zod
)
echo [INFO] Start convert file .ts from src\types to Zod schemas...
for %%f in (src\types\*.ts) do (
echo [ZOD] Chuyển %%f -> src\zod\%%~nf.zod.ts
npx ts-to-zod src\types\%%~nxf src\zod\%%~nf.zod.ts
)
echo [DONE] ✅ Done