feat(Todoist Node): Add more resources and operations (#17925)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Mutasem Aldmour
2025-08-11 15:11:55 +02:00
committed by GitHub
parent 8fc1e8ddd6
commit 409085e8fe
9 changed files with 4867 additions and 160 deletions

View File

@@ -51,6 +51,7 @@ export async function todoistSyncRequest(
this: Context,
body: any = {},
qs: IDataObject = {},
endpoint: string = '/sync',
): Promise<any> {
const authentication = this.getNodeParameter('authentication', 0, 'oAuth2');
@@ -58,7 +59,7 @@ export async function todoistSyncRequest(
headers: {},
method: 'POST',
qs,
uri: 'https://api.todoist.com/sync/v9/sync',
uri: `https://api.todoist.com/sync/v9${endpoint}`,
json: true,
};