import api from './client'; import type { AccountCheckBatch, AccountCheckBatchRequest, MessageResponse } from './types'; export const accountCheckApi = { start: (data: AccountCheckBatchRequest) => api.post('/account-check/batches', data), getBatch: (batchId: string) => api.get(`/account-check/batches/${batchId}`), stop: (batchId: string) => api.post(`/account-check/batches/${batchId}/stop`), download: (batchId: string) => api.get(`/account-check/batches/${batchId}/download`, { responseType: 'blob' }), };