import { mainClient, skeletonClient } from '@/api/clients' import type { IApiResponse } from '@/api/types' /** * 请求更新包 */ export async function requestUpdatePackage(type: string, version: string) { const res = await skeletonClient.request({ url: 'common/apkConfig/getUpdateUrl', method: 'POST', data: { type, version } }) return res }