diff --git a/libs/client/src/function.ts b/libs/client/src/function.ts index a59b109..e74d660 100644 --- a/libs/client/src/function.ts +++ b/libs/client/src/function.ts @@ -235,7 +235,10 @@ export const queue: Queue = { async status(id: string, requestId: string, logs: boolean = true): Promise { return run(id, { method: 'get', - path: `/fal/queue/requests/${requestId}/status?logs=${logs ? '1' : '0'}`, + path: `/fal/queue/requests/${requestId}/status`, + input: { + logs: logs ? '1' : '0', + }, }); }, async result(id: string, requestId: string): Promise {