15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
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<IApiResponse>({
|
|
url: 'common/apkConfig/getUpdateUrl',
|
|
method: 'POST',
|
|
data: { type, version }
|
|
})
|
|
return res
|
|
}
|