mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Remove linting exceptions in nodes-base, @typescript-eslint/no-unsafe-argument (no-changelog)
This commit is contained in:
@@ -51,9 +51,16 @@ export async function asanaApiRequestAllItems(
|
||||
query.limit = 100;
|
||||
|
||||
do {
|
||||
responseData = await asanaApiRequest.call(this, method, endpoint, body, query, uri);
|
||||
responseData = await asanaApiRequest.call(
|
||||
this,
|
||||
method,
|
||||
endpoint,
|
||||
body as IDataObject,
|
||||
query,
|
||||
uri,
|
||||
);
|
||||
uri = get(responseData, 'next_page.uri');
|
||||
returnData.push.apply(returnData, responseData.data);
|
||||
returnData.push.apply(returnData, responseData.data as IDataObject[]);
|
||||
} while (responseData.next_page !== null);
|
||||
|
||||
return returnData;
|
||||
|
||||
Reference in New Issue
Block a user