feat(wallet): add manual credit wallet charge functionality and update Protobuf definitions
Build and Deploy to Kubernetes / build-and-deploy (push) Has been cancelled

- Introduced ManualCreditWalletCharge enum value to TransactionType for clarity.
- Added AdminManualCreditCharge and GetManualCreditCharges RPC methods in UserWalletService for handling manual credit charges by admin.
- Created corresponding request and response messages for manual credit charge operations in Protobuf.
- Updated Protobuf project version to reflect the addition of new features.
This commit is contained in:
masoodafar-web
2026-07-25 23:55:08 +03:30
parent 246d893b62
commit d232399f43
10 changed files with 440 additions and 1 deletions
@@ -41,4 +41,9 @@ public enum TransactionType
/// شارژ کیف پول اصلی از درگاه
/// </summary>
CreditWalletCharge = 16,
/// <summary>
/// شارژ دستی کیف پول اصلی توسط ادمین
/// </summary>
ManualCreditWalletCharge = 17,
}