Files
simstudioai--sim/apps/sim/tools/google_calendar/delete_calendar.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

127 lines
3.4 KiB
TypeScript

import { CALENDAR_API_BASE } from '@/tools/google_calendar/types'
import type { ToolConfig } from '@/tools/types'
export interface GoogleCalendarDeleteCalendarParams {
accessToken: string
calendarId: string
}
interface GoogleCalendarDeleteCalendarResponse {
success: boolean
output: {
content: string
metadata: {
calendarId: string
deleted: boolean
}
}
}
const buildDeleteCalendarUrl = (params: GoogleCalendarDeleteCalendarParams) =>
`${CALENDAR_API_BASE}/calendars/${encodeURIComponent(params.calendarId.trim())}`
export const deleteCalendarTool: ToolConfig<
GoogleCalendarDeleteCalendarParams,
GoogleCalendarDeleteCalendarResponse
> = {
id: 'google_calendar_delete_calendar',
name: 'Google Calendar Delete Calendar',
description: 'Permanently delete a secondary calendar (not the primary calendar)',
version: '1.0.0',
oauth: {
required: true,
provider: 'google-calendar',
},
params: {
accessToken: {
type: 'string',
required: true,
visibility: 'hidden',
description: 'Access token for Google Calendar API',
},
calendarId: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description:
'Secondary calendar ID to delete (e.g., calendar@group.calendar.google.com). The primary calendar cannot be deleted.',
},
},
request: {
url: buildDeleteCalendarUrl,
method: 'DELETE',
headers: (params: GoogleCalendarDeleteCalendarParams) => ({
Authorization: `Bearer ${params.accessToken}`,
'Content-Type': 'application/json',
}),
},
transformResponse: async (response: Response, params) => {
if (response.status === 204 || response.ok) {
return {
success: true,
output: {
content: 'Calendar successfully deleted',
metadata: {
calendarId: params?.calendarId || '',
deleted: true,
},
},
}
}
const errorData = await response.json().catch(() => null)
throw new Error(errorData?.error?.message || 'Failed to delete calendar')
},
outputs: {
content: { type: 'string', description: 'Calendar deletion confirmation message' },
metadata: {
type: 'json',
description: 'Deletion details including calendar ID',
},
},
}
interface GoogleCalendarDeleteCalendarV2Response {
success: boolean
output: {
calendarId: string
deleted: boolean
}
}
export const deleteCalendarV2Tool: ToolConfig<
GoogleCalendarDeleteCalendarParams,
GoogleCalendarDeleteCalendarV2Response
> = {
id: 'google_calendar_delete_calendar_v2',
name: 'Google Calendar Delete Calendar',
description: 'Permanently delete a secondary calendar. Returns API-aligned fields only.',
version: '2.0.0',
oauth: deleteCalendarTool.oauth,
params: deleteCalendarTool.params,
request: deleteCalendarTool.request,
transformResponse: async (response: Response, params) => {
if (response.status === 204 || response.ok) {
return {
success: true,
output: {
calendarId: params?.calendarId || '',
deleted: true,
},
}
}
const errorData = await response.json().catch(() => null)
throw new Error(errorData?.error?.message || 'Failed to delete calendar')
},
outputs: {
calendarId: { type: 'string', description: 'Deleted calendar ID' },
deleted: { type: 'boolean', description: 'Whether deletion was successful' },
},
}