diff --git a/server/api/card.ts b/server/api/card.ts index fc8d08e2..e608155a 100644 --- a/server/api/card.ts +++ b/server/api/card.ts @@ -82,7 +82,7 @@ export default app last: inquiry.attributes["name-last"], }, phone: { countryCode: phone.countryCallingCode, number: phone.nationalNumber }, - limits: { daily: 1000, weekly: 3000, monthly: 5000 }, + limits: { daily: 5000, weekly: 10_000, monthly: 30_000 }, }); await database.insert(cards).values([{ id: card.id, credentialId, lastFour: card.last4 }]); return c.json({ url: await getPAN(card.id), lastFour: card.last4, status: card.status }, 200); // TODO review if necessary