Generator Changes at 10/13/2025 7:47:49 AM

This commit is contained in:
MeysamMoghaddam
2025-10-13 07:48:57 +03:30
parent 9238987c17
commit 8eeebcee6f
8 changed files with 11 additions and 25 deletions

View File

@@ -45,12 +45,11 @@ service UserAddressContract
}
message CreateNewUserAddressRequest
{
int64 user_id = 1;
string title = 2;
string address = 3;
string postal_code = 4;
bool is_default = 5;
int64 city_id = 6;
string title = 1;
string address = 2;
string postal_code = 3;
bool is_default = 4;
int64 city_id = 5;
}
message CreateNewUserAddressResponse
{
@@ -59,12 +58,11 @@ message CreateNewUserAddressResponse
message UpdateUserAddressRequest
{
int64 id = 1;
int64 user_id = 2;
string title = 3;
string address = 4;
string postal_code = 5;
bool is_default = 6;
int64 city_id = 7;
string title = 2;
string address = 3;
string postal_code = 4;
bool is_default = 5;
int64 city_id = 6;
}
message DeleteUserAddressRequest
{