wallet transaction entity added

This commit is contained in:
2025-12-29 09:59:29 +03:30
parent 352bbe2770
commit 89adbfdb33
10 changed files with 431 additions and 144 deletions
+13
View File
@@ -0,0 +1,13 @@
export enum WalletTransactionType {
CREDIT = 'credit',
DEBIT = 'debit',
}
export enum WalletTransactionReason {
ORDER_PAYMENT = 'order_payment',
ORDER_REFUND = 'order_refund',
CONVERT_SCORE_TO_WALLET = 'convert_score_to_wallet',
WITHDRAW = 'withdraw',
DEPOSIT = 'deposit',
}