feat: add search text filter for user query
All checks were successful
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 2m40s

This commit is contained in:
masoodafar-web
2025-12-12 03:18:18 +03:30
parent 12749ccb01
commit bb6b7c709c
5 changed files with 24 additions and 16 deletions

View File

@@ -129,20 +129,21 @@ message GetAllUserByFilterRequest
}
message GetAllUserByFilterFilter
{
google.protobuf.Int64Value id = 1;
google.protobuf.StringValue first_name = 2;
google.protobuf.StringValue last_name = 3;
google.protobuf.StringValue mobile = 4;
google.protobuf.StringValue national_code = 5;
google.protobuf.StringValue avatar_path = 6;
google.protobuf.Int64Value parent_id = 7;
google.protobuf.StringValue referral_code = 8;
google.protobuf.BoolValue is_mobile_verified = 9;
google.protobuf.Timestamp mobile_verified_at = 10;
google.protobuf.BoolValue email_notifications = 11;
google.protobuf.BoolValue sms_notifications = 12;
google.protobuf.BoolValue push_notifications = 13;
google.protobuf.Timestamp birth_date = 14;
google.protobuf.StringValue search_text = 1;
google.protobuf.Int64Value id = 2;
google.protobuf.StringValue first_name = 3;
google.protobuf.StringValue last_name = 4;
google.protobuf.StringValue mobile = 5;
google.protobuf.StringValue national_code = 6;
google.protobuf.StringValue avatar_path = 7;
google.protobuf.Int64Value parent_id = 8;
google.protobuf.StringValue referral_code = 9;
google.protobuf.BoolValue is_mobile_verified = 10;
google.protobuf.Timestamp mobile_verified_at = 11;
google.protobuf.BoolValue email_notifications = 12;
google.protobuf.BoolValue sms_notifications = 13;
google.protobuf.BoolValue push_notifications = 14;
google.protobuf.Timestamp birth_date = 15;
}
message GetAllUserByFilterResponse
{