From 1e853d000c859f8721cae3c156a76876f5d311fd Mon Sep 17 00:00:00 2001 From: Ata Safapour Date: Sun, 7 Dec 2025 15:52:36 +0330 Subject: [PATCH] feat: add referral_code field to UserSendOtpReq message --- auth/v1/msg.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/auth/v1/msg.proto b/auth/v1/msg.proto index c14b773..cc778e7 100644 --- a/auth/v1/msg.proto +++ b/auth/v1/msg.proto @@ -43,6 +43,7 @@ message PermissionList { message UserSendOtpReq { string mobile = 1; + string referral_code = 2; } message UserSendOtpRes { int64 expired_at = 1;