Generator Changes at 9/27/2025 11:50:52 PM

This commit is contained in:
MeysamMoghaddam
2025-09-27 23:59:05 +03:30
parent ec6ab8258a
commit 6fd9472f2b
11 changed files with 165 additions and 1 deletions

View File

@@ -43,6 +43,12 @@ service UserContract
};
};
rpc GetJwtToken(GetJwtTokenRequest) returns (GetJwtTokenResponse){
option (google.api.http) = {
get: "/GetJwtToken"
};
};
}
message CreateNewUserRequest
{
@@ -123,3 +129,11 @@ message GetAllUserByFilterResponseModel
bool is_mobile_verified = 9;
google.protobuf.Timestamp mobile_verified_at = 10;
}
message GetJwtTokenRequest
{
int64 id = 1;
}
message GetJwtTokenResponse
{
string token = 1;
}