import apiService from './api.service' import { BranchSeedResultDto } from '@/proxy/branch/seed' export async function runBranchSeed(branchId: string): Promise { const response = await apiService.fetchData( { method: 'POST', url: `/api/app/branch/seed/${branchId}`, }, { apiName: 'Default' }, ) return response.data }