import { buildQueryString, http } from './http' import type { V2Page } from './http' import type { ClientInfoData, ClientListV2Params } from '../types/client' export const getClients = () => { return http.get('../api/clients') } export const getClientsV2 = (params: ClientListV2Params = {}) => { return http.getV2>( `../api/v2/clients${buildQueryString({ page: params.page, pageSize: params.pageSize, status: params.status && params.status !== 'all' ? params.status : undefined, q: params.q || undefined, user: params.user, clientID: params.clientID || undefined, runID: params.runID || undefined, })}`, ) } export const getClient = (key: string) => { return http.get(`../api/clients/${key}`) } export const getClientV2 = (key: string) => { return http.getV2(`../api/v2/clients/${encodeURIComponent(key)}`) }