Generator Changes at 10/13/2025 8:22:12 AM

This commit is contained in:
MeysamMoghaddam
2025-10-13 08:25:31 +03:30
parent d5451e4d7e
commit 05f4833270
23 changed files with 154 additions and 3 deletions

View File

@@ -42,6 +42,12 @@ service UserAddressContract
};
};
rpc SetAddressAsDefault(SetAddressAsDefaultRequest) returns (google.protobuf.Empty){
option (google.api.http) = {
post: "/SetAddressAsDefault"
body: "*"
};
};
}
message CreateNewUserAddressRequest
{
@@ -113,6 +119,10 @@ message GetAllUserAddressByFilterResponseModel
bool is_default = 6;
int64 city_id = 7;
}
message SetAddressAsDefaultRequest
{
int64 id = 1;
}
message PaginationState
{