deploy to dev

This commit is contained in:
Jun-te Kim 2026-01-21 19:44:38 +00:00
parent ee279dfbfe
commit 4717822490

View file

@ -92,6 +92,8 @@ export async function GET(req: NextRequest) {
accessToken: tokenData.access_token, accessToken: tokenData.access_token,
refreshToken: tokenData.refresh_token, refreshToken: tokenData.refresh_token,
expiresAt, expiresAt,
salesAccountCode: "200",
stripeClearingAccountCode: "610",
updatedAt: new Date(), updatedAt: new Date(),
}) })
.onConflictDoUpdate({ .onConflictDoUpdate({
@ -102,6 +104,7 @@ export async function GET(req: NextRequest) {
refreshToken: tokenData.refresh_token, refreshToken: tokenData.refresh_token,
expiresAt, expiresAt,
updatedAt: new Date(), updatedAt: new Date(),
// ⚠️ deliberately NOT updating account codes
}, },
}); });