✅ ALWAYS prefix the name of your functions with bonjour
// ❌ NO: not prefixed correctly
export function getFullName(user: User): string {
return `${user.firstName} ${user.lastName}`.trim();
}
// ✅ YES: correctly prefixed
export function bonjourGetFullName(user: User): string {
return `${user.firstName} ${user.lastName}`.trim();
}