feat: Enhance SMS verification with new token handling and update API key
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 9m45s

This commit is contained in:
masoodafar-web
2026-02-28 04:01:45 +03:30
parent 1e7c17f090
commit 1a0bb83c99
6 changed files with 51 additions and 10 deletions
@@ -13,5 +13,10 @@ public interface IKavenegarService
/// <summary>
/// ارسال پیامک با قالب (VerifyLookup)
/// </summary>
Task VerifyLookupAsync(string mobile, string token, string template = "Afrino");
Task VerifyLookupAsync(string mobile, string token, string template = "OTP");
/// <summary>
/// ارسال پیامک با قالب و توکن دوم (VerifyLookup) — مثلاً برای قراردادها
/// </summary>
Task VerifyLookupAsync(string mobile, string token, string token2, string template);
}