feat: enhance GetWithdrawalRequests response structure and update related mappings
Build and Deploy / build (push) Failing after 1m11s
Build and Deploy / build (push) Failing after 1m11s
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>true</IsPackable>
|
||||
<PackageId>Foursat.BackOffice.BFF.Commission.Protobuf</PackageId>
|
||||
<Version>0.0.13</Version>
|
||||
<Version>0.0.14</Version>
|
||||
<Authors>FourSat</Authors>
|
||||
<Company>FourSat</Company>
|
||||
<Product>BackOffice.BFF.Commission.Protobuf</Product>
|
||||
|
||||
@@ -279,15 +279,20 @@ message UserWeeklyBalanceModel
|
||||
{
|
||||
int64 id = 1;
|
||||
int64 user_id = 2;
|
||||
int64 week_definition_id = 3;
|
||||
string week_display_name = 4;
|
||||
int32 left_leg_balances = 5;
|
||||
int32 right_leg_balances = 6;
|
||||
int32 total_balances = 7;
|
||||
int64 weekly_pool_contribution = 8;
|
||||
google.protobuf.Timestamp calculated_at = 9;
|
||||
bool is_expired = 10;
|
||||
google.protobuf.Timestamp created = 11;
|
||||
string user_full_name = 3; // نام کامل کاربر
|
||||
int64 week_definition_id = 4;
|
||||
string week_display_name = 5;
|
||||
int32 left_leg_new_members = 6; // اعضای جدید چپ این هفته
|
||||
int32 left_leg_carryover = 7; // باقیمانده چپ از هفته قبل
|
||||
int32 left_leg_total = 8; // مجموع چپ (NewMembers + Carryover)
|
||||
int32 right_leg_new_members = 9; // اعضای جدید راست این هفته
|
||||
int32 right_leg_carryover = 10; // باقیمانده راست از هفته قبل
|
||||
int32 right_leg_total = 11; // مجموع راست (NewMembers + Carryover)
|
||||
int32 total_balances = 12; // تعداد تعادل = MIN(چپ, راست)
|
||||
int64 weekly_pool_contribution = 13;
|
||||
google.protobuf.Timestamp calculated_at = 14;
|
||||
bool is_expired = 15;
|
||||
google.protobuf.Timestamp created = 16;
|
||||
}
|
||||
|
||||
// GetAllWeeklyPools Query
|
||||
|
||||
Reference in New Issue
Block a user