feat(wallet): implement wallet transactions table and filtering options
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m19s

This commit is contained in:
2025-07-25 16:01:20 +05:00
parent 9b2f2c1528
commit e0b76bb865
7 changed files with 356 additions and 15 deletions

View File

@ -97,3 +97,16 @@ export interface NewPayment {
number_of_months: number;
amount: number;
}
export interface WalletTransaction {
id: string;
user: Pick<User, "id" | "id_card" | "mobile"> & {
name: string;
};
amount: number;
transaction_type: "DEBIT" | "CREDIT";
description: string;
reference_id: string;
created_at: string;
}