From 9a321f6613de7f74c93d2d46d1406cbbe5534a2d Mon Sep 17 00:00:00 2001 From: nfel Date: Mon, 7 Jul 2025 14:52:20 +0330 Subject: [PATCH] v2: postal in indetity req is optional as well Signed-off-by: nfel --- auth/v1/msg.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth/v1/msg.proto b/auth/v1/msg.proto index 4957773..2e1adff 100644 --- a/auth/v1/msg.proto +++ b/auth/v1/msg.proto @@ -181,8 +181,8 @@ message UserUpdateIdentityReq { string national_id = 2; string birthdate = 3; string email = 4; - string postal_code = 5; - string user_address = 6; + optional string postal_code = 5; + optional string user_address = 6; } message UserUpdateBankInfoReq {