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
135 lines
3.7 KiB
TypeScript
135 lines
3.7 KiB
TypeScript
import { CALENDAR_API_BASE, type GoogleCalendarDeleteParams } from '@/tools/google_calendar/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
interface GoogleCalendarDeleteResponse {
|
|
success: boolean
|
|
output: {
|
|
content: string
|
|
metadata: {
|
|
eventId: string
|
|
deleted: boolean
|
|
}
|
|
}
|
|
}
|
|
|
|
export const deleteTool: ToolConfig<GoogleCalendarDeleteParams, GoogleCalendarDeleteResponse> = {
|
|
id: 'google_calendar_delete',
|
|
name: 'Google Calendar Delete Event',
|
|
description: 'Delete an event from Google 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: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Google Calendar ID (e.g., primary or calendar@group.calendar.google.com)',
|
|
},
|
|
eventId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Google Calendar event ID to delete',
|
|
},
|
|
sendUpdates: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'How to send updates to attendees: all, externalOnly, or none',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params: GoogleCalendarDeleteParams) => {
|
|
const calendarId = params.calendarId || 'primary'
|
|
const queryParams = new URLSearchParams()
|
|
|
|
if (params.sendUpdates !== undefined) {
|
|
queryParams.append('sendUpdates', params.sendUpdates)
|
|
}
|
|
|
|
const queryString = queryParams.toString()
|
|
return `${CALENDAR_API_BASE}/calendars/${encodeURIComponent(calendarId)}/events/${encodeURIComponent(params.eventId)}${queryString ? `?${queryString}` : ''}`
|
|
},
|
|
method: 'DELETE',
|
|
headers: (params: GoogleCalendarDeleteParams) => ({
|
|
Authorization: `Bearer ${params.accessToken}`,
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response: Response, params) => {
|
|
if (response.status === 204 || response.ok) {
|
|
return {
|
|
success: true,
|
|
output: {
|
|
content: `Event successfully deleted`,
|
|
metadata: {
|
|
eventId: params?.eventId || '',
|
|
deleted: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
const errorData = await response.json()
|
|
throw new Error(errorData.error?.message || 'Failed to delete event')
|
|
},
|
|
|
|
outputs: {
|
|
content: { type: 'string', description: 'Event deletion confirmation message' },
|
|
metadata: {
|
|
type: 'json',
|
|
description: 'Deletion details including event ID',
|
|
},
|
|
},
|
|
}
|
|
|
|
interface GoogleCalendarDeleteV2Response {
|
|
success: boolean
|
|
output: {
|
|
eventId: string
|
|
deleted: boolean
|
|
}
|
|
}
|
|
|
|
export const deleteV2Tool: ToolConfig<GoogleCalendarDeleteParams, GoogleCalendarDeleteV2Response> =
|
|
{
|
|
id: 'google_calendar_delete_v2',
|
|
name: 'Google Calendar Delete Event',
|
|
description: 'Delete an event from Google Calendar. Returns API-aligned fields only.',
|
|
version: '2.0.0',
|
|
oauth: deleteTool.oauth,
|
|
params: deleteTool.params,
|
|
request: deleteTool.request,
|
|
transformResponse: async (response: Response, params) => {
|
|
if (response.status === 204 || response.ok) {
|
|
return {
|
|
success: true,
|
|
output: {
|
|
eventId: params?.eventId || '',
|
|
deleted: true,
|
|
},
|
|
}
|
|
}
|
|
|
|
const errorData = await response.json()
|
|
throw new Error(errorData.error?.message || 'Failed to delete event')
|
|
},
|
|
outputs: {
|
|
eventId: { type: 'string', description: 'Deleted event ID' },
|
|
deleted: { type: 'boolean', description: 'Whether deletion was successful' },
|
|
},
|
|
}
|