Phase8: Auto bill credit card
All checks were successful
Build and Push / build (push) Successful in 1m45s

This commit is contained in:
2026-05-27 22:20:13 +02:00
parent a6c3c42ec9
commit 9243beddd3
2 changed files with 30 additions and 26 deletions

View File

@@ -4203,7 +4203,7 @@ export async function getTenantRequestForSetupFlow(
[requestId]
);
return result.rows.length > 0
? rowToTenantRequest(result.rows[0])
? mapRow(result.rows[0])
: null;
}
@@ -4231,7 +4231,7 @@ export async function createTenantRequestPendingPayment(params: {
soulMd?: string;
agentsMd?: string | null;
packages: string[];
billingAddress: Record<string, unknown>;
billingAddress: BillingAddress;
billingNotes?: string;
encryptedSecrets?: Buffer | null;
isPersonal: boolean;
@@ -4267,7 +4267,7 @@ export async function createTenantRequestPendingPayment(params: {
params.isPersonal,
]
);
return rowToTenantRequest(result.rows[0]);
return mapRow(result.rows[0]);
}
/**