From 87b9a5162b1082880970f85af8ef2ebd58c134e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KERGUTUIL=20Th=C3=A9o?= <58176270+LeKer29@users.noreply.github.com> Date: Tue, 14 Sep 2021 11:57:57 +0200 Subject: [PATCH 1/2] feat(dto): update post banks user account dto --- src/lib/Algoan.dto.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/Algoan.dto.ts b/src/lib/Algoan.dto.ts index 4d1ad4b..9fc0f39 100644 --- a/src/lib/Algoan.dto.ts +++ b/src/lib/Algoan.dto.ts @@ -90,6 +90,8 @@ export interface PostBanksUserAccountDTO { savingsDetails?: string; status?: 'MANUAL' | 'ACTIVE' | 'ERROR' | 'NOT_FOUND' | 'CLOSED'; owner?: { name?: string }; + // eslint-disable-next-line + number?: string; } /** From 18575870291bc0b27c1ccad898c542fdff781978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KERGUTUIL=20Th=C3=A9o?= <58176270+LeKer29@users.noreply.github.com> Date: Tue, 14 Sep 2021 11:58:15 +0200 Subject: [PATCH 2/2] feat(interface): update banks user account interface --- src/lib/BanksUser.interface.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/BanksUser.interface.ts b/src/lib/BanksUser.interface.ts index beaa41d..f92b6d6 100644 --- a/src/lib/BanksUser.interface.ts +++ b/src/lib/BanksUser.interface.ts @@ -103,6 +103,8 @@ export interface BanksUserAccount { reference?: string; savingsDetails?: string; status?: 'MANUAL' | 'ACTIVE' | 'ERROR' | 'NOT_FOUND' | 'CLOSED'; + // eslint-disable-next-line + number?: string; } /**