Midday / apps /api /src /ai /utils /tool-helpers.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import type { AppContext } from "@api/ai/agents/config/shared";
export function checkBankAccountsRequired(appContext: AppContext): {
hasBankAccounts: boolean;
shouldYield: boolean;
} {
const hasBankAccounts = appContext.hasBankAccounts ?? false;
return {
hasBankAccounts,
shouldYield: !hasBankAccounts,
};
}