aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-04-25 12:49:58 -0300
committerSebastian <sebasjm@gmail.com>2023-04-25 12:49:58 -0300
commitf94d7bc15115753ce3c492deb72ff9fdb4a66cba (patch)
tree9905e48b7c273b7af3885ea7b7d0e387fa6f4eac /packages/merchant-backoffice-ui
parent25346a03fa2577652002583b019fd88dd92a7881 (diff)
downloadwallet-core-f94d7bc15115753ce3c492deb72ff9fdb4a66cba.tar.xz
adding user_Type validation when updating instances
Diffstat (limited to 'packages/merchant-backoffice-ui')
-rw-r--r--packages/merchant-backoffice-ui/src/declaration.d.ts5
-rw-r--r--packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx5
2 files changed, 10 insertions, 0 deletions
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<Entity> = {
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`