import { CustomerResponse, WalletResponse, WalletTransaction, } from '@interfaces'; import { apiClient } from '@services'; export const getCustomerDetails = async () => { return await apiClient.get('/customers/profile'); }; export const getWalletDetails = async (): Promise => { return await apiClient.get('/wallets/balance'); }; export const getWalletTransactions = async (): Promise => { return await apiClient.get('/wallets/transactions'); };