fix: types fixed

Signed-off-by: allanice001 <allanice001@gmail.com>
This commit is contained in:
allanice001
2025-11-09 22:01:44 +00:00
parent bc72df3c9a
commit 5fd96ec40f
172 changed files with 21 additions and 23949 deletions

View File

@@ -18,7 +18,12 @@ export const archerAdminApi = {
return await archerAdmin.adminListArcherJobs(params)
})
},
enqueue: (body: { queue: string; type: string; payload?: unknown; run_at?: string }) => {
enqueue: (body: {
queue: string
type: string
payload?: object | undefined
run_at?: string
}) => {
return withRefresh(async () => {
return await archerAdmin.adminEnqueueArcherJob({ body })
})