import { API_ROOT } from 'config' import { callApi } from 'helpers' import type { SubscriptionResponse } from 'requests/getSubscriptions' type Props = { item: SubscriptionResponse, product_name: string, } export const getBrazilPaymentUrl = async ({ item, product_name }: Props) => { const config = { body: { item: { ...item, product_name }, }, } return callApi({ config, url: `${API_ROOT}/account/payment/pagbrasil`, }) }