import type { ToolConfig } from '@/tools/types' import type { WebflowDeleteItemParams, WebflowDeleteItemResponse } from '@/tools/webflow/types' export const webflowDeleteItemTool: ToolConfig = { id: 'webflow_delete_item', name: 'Webflow Delete Item', description: 'Delete an item from a Webflow CMS collection', version: '1.0.0', oauth: { required: true, provider: 'webflow', }, params: { accessToken: { type: 'string', required: true, visibility: 'hidden', description: 'OAuth access token', }, siteId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'ID of the Webflow site (e.g., "580e63e98c9a982ac9b8b741")', }, collectionId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'ID of the collection (e.g., "580e63fc8c9a982ac9b8b745")', }, itemId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'ID of the item to delete (e.g., "580e64008c9a982ac9b8b754")', }, }, request: { url: (params) => `https://api.webflow.com/v2/collections/${params.collectionId}/items/${params.itemId}`, method: 'DELETE', headers: (params) => ({ Authorization: `Bearer ${params.accessToken}`, }), }, transformResponse: async (response) => { const isSuccess = response.status === 204 || response.ok return { success: isSuccess, output: { success: isSuccess, metadata: { deleted: isSuccess, }, }, } }, outputs: { success: { type: 'boolean', description: 'Whether the deletion was successful', }, metadata: { type: 'json', description: 'Metadata about the deletion', }, }, }