Phase8: Auto bill credit card
All checks were successful
Build and Push / build (push) Successful in 1m45s
All checks were successful
Build and Push / build (push) Successful in 1m45s
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user