commit f94d7bc15115753ce3c492deb72ff9fdb4a66cba
parent 25346a03fa2577652002583b019fd88dd92a7881
Author: Sebastian <sebasjm@gmail.com>
Date: Tue, 25 Apr 2023 12:49:58 -0300
adding user_Type validation when updating instances
Diffstat:
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
@@ -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
@@ -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`