File size: 327 Bytes
c09f67c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
  };
}