Template
1
0

feat: update payment views

This commit is contained in:
2025-12-06 20:42:10 +01:00
parent ce4d5ba013
commit 37164b560f
49 changed files with 1826 additions and 624 deletions

View File

@@ -131,6 +131,7 @@ async function toParsedArgs(
): Promise<Record<string, string | number | boolean>> {
const result = await zod.safeParseAsync(args);
if (result.success === false) {
console.error(msg, args, result.error);
throw new Error(msg);
}
return result.data as Record<string, string | number | boolean>;