From f94d7bc15115753ce3c492deb72ff9fdb4a66cba Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 25 Apr 2023 12:49:58 -0300 Subject: adding user_Type validation when updating instances --- packages/merchant-backoffice-ui/src/declaration.d.ts | 5 +++++ .../merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'packages') diff --git a/packages/merchant-backoffice-ui/src/declaration.d.ts b/packages/merchant-backoffice-ui/src/declaration.d.ts index 4f76b9701..b21af32d1 100644 --- a/packages/merchant-backoffice-ui/src/declaration.d.ts +++ b/packages/merchant-backoffice-ui/src/declaration.d.ts @@ -334,6 +334,11 @@ export namespace MerchantBackend { // Merchant name corresponding to this instance. name: string; + // Type of the user (business or individual). + // Defaults to 'business'. Should become mandatory field + // in the future, left as optional for API compatibility for now. + user_type?: string; + // The merchant's physical address (to be put into contracts). address: Location; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx index 1365a59da..2b57ab429 100644 --- a/packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx +++ b/packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx @@ -98,6 +98,11 @@ export function UpdatePage({ const errors: FormErrors = { name: !value.name ? i18n.str`required` : undefined, + user_type: !value.user_type + ? i18n.str`required` + : value.user_type !== "business" && value.user_type !== "individual" + ? i18n.str`should be business or individual` + : undefined, payto_uris: !value.payto_uris || !value.payto_uris.length ? i18n.str`required` -- cgit v1.2.3