// config.ts export const API_ENDPOINTS_SANDBOX = { CREATE_ORDER: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/createorder', ORDER_STATUS: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/order/queryStatus', INITIATE_PAYMENT_PAY_OUT: 'https://open-gw-daily.palmpay-inc.com/api/v2/merchant/payment/payout', QUERY_MERCHANT_BALANCE: 'https://open-gw-daily.palmpay-inc.com/api/v2/merchant/manage/account/queryBalance', QUERY_BANK_LIST: 'https://open-gw-daily.palmpay-inc.com/api/v2/general/merchant/queryBankList', QUERY_BANK_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/payout/queryBankAccount', QUERY_PALMPAY_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/payout/queryAccount', CREATE_VIRTUAL_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/create', UPDATE_VIRTUAL_ACCOUNT_STATUS: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/update', DELETE_VIRTUAL_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/delete', QUERY_VIRTUAL_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/queryOne', QUERY_SINGLE_PAY_IN_ORDER: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/order/detail', QUERY_BULK_PAY_IN_ORDER: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/order/pageList' }; export const API_ENDPOINTS_LIVE = { CREATE_ORDER: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/createorder', ORDER_STATUS: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/order/queryStatus', INITIATE_PAYMENT_PAY_OUT: 'https://open-gw-daily.palmpay-inc.com/api/v2/merchant/payment/payout', QUERY_MERCHANT_BALANCE: 'https://open-gw-daily.palmpay-inc.com/api/v2/merchant/manage/account/queryBalance', QUERY_BANK_LIST: 'https://open-gw-daily.palmpay-inc.com/api/v2/general/merchant/queryBankList', QUERY_BANK_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/payout/queryBankAccount', QUERY_PALMPAY_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/payment/merchant/payout/queryAccount', CREATE_VIRTUAL_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/create', UPDATE_VIRTUAL_ACCOUNT_STATUS: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/update', DELETE_VIRTUAL_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/delete', QUERY_VIRTUAL_ACCOUNT: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/account/label/queryOne', QUERY_SINGLE_PAY_IN_ORDER: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/order/detail', QUERY_BULK_PAY_IN_ORDER: 'https://open-gw-daily.palmpay-inc.com/api/v2/virtual/order/pageList' };