feat: add geography entities with countries, states and cities

This commit is contained in:
masoodafar-web
2025-12-18 00:43:55 +03:30
parent 26e1243cfe
commit ead0cf4235
40 changed files with 5386 additions and 7 deletions
@@ -61,6 +61,12 @@ service UserContract
body: "*"
};
};
rpc RefreshToken(RefreshTokenRequest) returns (RefreshTokenResponse){
option (google.api.http) = {
post: "/RefreshToken"
body: "*"
};
};
}
message CreateNewUserRequest
{
@@ -191,3 +197,13 @@ message SetPasswordForUserRequest
string new_password = 3;
string confirm_password = 4;
}
message RefreshTokenRequest
{
string current_token = 1;
}
message RefreshTokenResponse
{
string token = 1;
bool success = 2;
string message = 3;
}