视频任务管理更新

This commit is contained in:
super
2026-07-19 22:23:26 +08:00
parent 69784b8d32
commit cbde22ec79
62 changed files with 2164 additions and 280 deletions
@@ -2501,6 +2501,15 @@ export function getTaskSkipPriceAsinsPaginated(
);
}
export function markPriceTrackDispatchFailed(taskId: number, errorMessage: string) {
return unwrapJavaResponse(
post<JavaApiResponse<null>, { errorMessage: string }>(
`${JAVA_API_PREFIX}/price-track/tasks/${taskId}/dispatch-failed?user_id=${encodeURIComponent(String(getCurrentUserId()))}`,
{ errorMessage },
),
);
}
export function checkTaskSkipPriceAsin(taskId: number, country: string, asin: string) {
return unwrapJavaResponse(
get<JavaApiResponse<SkipPriceAsinCheckVo>>(