import { TIMESTAMP_OUTPUT } from '@/tools/confluence/types' import type { ToolConfig } from '@/tools/types' export interface ConfluenceDeleteSpaceParams { accessToken: string domain: string spaceId: string cloudId?: string } export interface ConfluenceDeleteSpaceResponse { success: boolean output: { ts: string spaceId: string deleted: boolean longTaskId?: string longTaskStatusLink?: string } } export const confluenceDeleteSpaceTool: ToolConfig< ConfluenceDeleteSpaceParams, ConfluenceDeleteSpaceResponse > = { id: 'confluence_delete_space', name: 'Confluence Delete Space', description: 'Delete a Confluence space.', version: '1.0.0', oauth: { required: true, provider: 'confluence', }, params: { accessToken: { type: 'string', required: true, visibility: 'hidden', description: 'OAuth access token for Confluence', }, domain: { type: 'string', required: true, visibility: 'user-only', description: 'Your Confluence domain (e.g., yourcompany.atlassian.net)', }, spaceId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'ID of the space to delete', }, cloudId: { type: 'string', required: false, visibility: 'user-only', description: 'Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain.', }, }, request: { url: () => '/api/tools/confluence/space', method: 'DELETE', headers: (params: ConfluenceDeleteSpaceParams) => ({ Accept: 'application/json', 'Content-Type': 'application/json', Authorization: `Bearer ${params.accessToken}`, }), body: (params: ConfluenceDeleteSpaceParams) => ({ domain: params.domain, accessToken: params.accessToken, cloudId: params.cloudId, spaceId: params.spaceId, }), }, transformResponse: async (response: Response) => { const data = await response.json() return { success: true, output: { ts: new Date().toISOString(), spaceId: data.spaceId ?? '', deleted: true, longTaskId: data.longTaskId, longTaskStatusLink: data.longTaskStatusLink, }, } }, outputs: { ts: TIMESTAMP_OUTPUT, spaceId: { type: 'string', description: 'Deleted space ID' }, deleted: { type: 'boolean', description: 'Deletion status' }, longTaskId: { type: 'string', description: 'ID of the long-running deletion task; poll Confluence long-task API to track completion', }, longTaskStatusLink: { type: 'string', description: 'Relative link to the long-task status endpoint', }, }, }