From 11b7354010658533aaed76c87fbc01836439cae6 Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Mon, 13 Oct 2025 21:51:19 +0200 Subject: [PATCH] fix: export url (#1288) --- packages/tm-core/src/services/export.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tm-core/src/services/export.service.ts b/packages/tm-core/src/services/export.service.ts index eba782d7..90630ef1 100644 --- a/packages/tm-core/src/services/export.service.ts +++ b/packages/tm-core/src/services/export.service.ts @@ -362,7 +362,7 @@ export class ExportService { if (useAPIEndpoint) { // Use the new bulk import API endpoint - const apiUrl = `${process.env.TM_PUBLIC_BASE_DOMAIN}/ai/api/v1/briefs/${briefId}/tasks/bulk`; + const apiUrl = `${process.env.TM_PUBLIC_BASE_DOMAIN}/ai/api/v1/briefs/${briefId}/tasks`; // Transform tasks to flat structure for API const flatTasks = this.transformTasksForBulkImport(tasks); @@ -370,11 +370,11 @@ export class ExportService { // Prepare request body const requestBody = { source: 'task-master-cli', - accountId: orgId, options: { dryRun: false, stopOnError: false }, + accountId: orgId, tasks: flatTasks };