🎉👏 done

This commit is contained in:
user
2025-10-21 19:27:38 +03:00
parent f0fa53a4e5
commit 319384c334
9 changed files with 138 additions and 52 deletions

View File

@@ -87,8 +87,8 @@ export const paymentInfoModel = cardInfoModel.merge(
id: z.number().int(),
productId: z.number().int(),
orderId: z.number().int(),
createdAt: z.coerce.string().datetime(),
updatedAt: z.coerce.string().datetime(),
createdAt: z.coerce.string(),
updatedAt: z.coerce.string(),
}),
);
export type PaymentInfo = z.infer<typeof paymentInfoModel>;