From d884c2e49f329b718706bbc14f11cf043e8ab3f4 Mon Sep 17 00:00:00 2001 From: Ella Nan <38847123+ellanan@users.noreply.github.com> Date: Wed, 12 Feb 2025 10:43:50 -0500 Subject: [PATCH] fix: make legal name in accounts optional --- src/types/accounts.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/accounts.d.ts b/src/types/accounts.d.ts index 58df6e4..d5ecae6 100644 --- a/src/types/accounts.d.ts +++ b/src/types/accounts.d.ts @@ -40,7 +40,7 @@ export interface Account extends AccountBase, Identifiable { export interface AccountBase { type: string name: string - legal_name: string + legal_name?: string registration_id?: string parent_id?: string external_ref?: string