Skip to content

Commit d042466

Browse files
committed
fixes
1 parent 5075753 commit d042466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/botasaurus-desktop-api/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ const api = new Api({ apiUrl: 'https://example.com' })`);
291291
}
292292
}
293293

294-
async getTasks({ page = 1, perPage, withResults = true, parentTaskId }: { page?: number; perPage?: number; withResults?: boolean; parentTaskId?: number } = { page: 1, withResults: true }): Promise<PaginatedResponse<Task>> {
294+
async getTasks({ page = 1, perPage, withResults = false, parentTaskId }: { page?: number; perPage?: number; withResults?: boolean; parentTaskId?: number } = { page: 1, withResults: true }): Promise<PaginatedResponse<Task>> {
295295
/**
296296
* Fetches tasks from the server, with optional result inclusion, pagination, and filtering.
297297
*

0 commit comments

Comments
 (0)