diff --git a/apps/sim/blocks/blocks/algolia.ts b/apps/sim/blocks/blocks/algolia.ts index 4940fc4315..0644e4ba07 100644 --- a/apps/sim/blocks/blocks/algolia.ts +++ b/apps/sim/blocks/blocks/algolia.ts @@ -672,7 +672,6 @@ Return ONLY the JSON array.`, type: 'string', description: 'Task status: "published" once applied, "notPublished" while still pending', }, - pendingTask: { type: 'boolean', description: 'Whether the task is still pending' }, }, } diff --git a/apps/sim/tools/algolia/get_task_status.ts b/apps/sim/tools/algolia/get_task_status.ts index 5f95774533..9c19c41a5b 100644 --- a/apps/sim/tools/algolia/get_task_status.ts +++ b/apps/sim/tools/algolia/get_task_status.ts @@ -56,7 +56,6 @@ export const getTaskStatusTool: ToolConfig< success: true, output: { status: data.status ?? '', - pendingTask: data.pendingTask ?? false, }, } }, @@ -67,9 +66,5 @@ export const getTaskStatusTool: ToolConfig< description: 'Task status: "published" once the operation has been applied, "notPublished" while still pending', }, - pendingTask: { - type: 'boolean', - description: 'Whether the task is still pending', - }, }, } diff --git a/apps/sim/tools/algolia/types.ts b/apps/sim/tools/algolia/types.ts index 5c606ead21..3e30293a52 100644 --- a/apps/sim/tools/algolia/types.ts +++ b/apps/sim/tools/algolia/types.ts @@ -286,6 +286,5 @@ export interface AlgoliaGetTaskStatusParams extends AlgoliaBaseParams { export interface AlgoliaGetTaskStatusResponse extends ToolResponse { output: { status: string - pendingTask: boolean } }