import odooApi from '~/libs/odooApi'; import { IBanner } from '~/types/banner'; export const getBanner = async ({ type, }: { type: string; }): Promise => { const searchParams = new URLSearchParams({ type }); return await odooApi('GET', `/api/v1/banner?${searchParams.toString()}`); };