Files
simstudioai--sim/apps/sim/tools/google_calendar/list.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

207 lines
6.5 KiB
TypeScript

import {
CALENDAR_API_BASE,
type GoogleCalendarApiEventResponse,
type GoogleCalendarApiListResponse,
type GoogleCalendarListParams,
type GoogleCalendarListResponse,
} from '@/tools/google_calendar/types'
import type { ToolConfig } from '@/tools/types'
export const listTool: ToolConfig<GoogleCalendarListParams, GoogleCalendarListResponse> = {
id: 'google_calendar_list',
name: 'Google Calendar List Events',
description: 'List events 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)',
},
timeMin: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Lower bound for events (RFC3339 timestamp, e.g., 2025-06-03T00:00:00Z)',
},
timeMax: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Upper bound for events (RFC3339 timestamp, e.g., 2025-06-04T00:00:00Z)',
},
q: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'Free-text search across event summary, description, location, attendees, and organizer',
},
maxResults: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Maximum number of events to return (max 2500)',
},
pageToken: {
type: 'string',
required: false,
visibility: 'user-only',
description: 'Token for retrieving the next page of results',
},
orderBy: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'Order of events: startTime (chronological, the default) or updated (last-modified). startTime is always valid here because singleEvents is set.',
},
showDeleted: {
type: 'boolean',
required: false,
visibility: 'hidden',
description: 'Include deleted events',
},
},
request: {
url: (params: GoogleCalendarListParams) => {
const calendarId = params.calendarId || 'primary'
const queryParams = new URLSearchParams()
if (params.timeMin) queryParams.append('timeMin', params.timeMin)
if (params.timeMax) queryParams.append('timeMax', params.timeMax)
if (params.q) queryParams.append('q', params.q)
if (params.maxResults) queryParams.append('maxResults', params.maxResults.toString())
if (params.pageToken) queryParams.append('pageToken', params.pageToken)
queryParams.append('singleEvents', 'true')
queryParams.append('orderBy', params.orderBy || 'startTime')
if (params.showDeleted !== undefined)
queryParams.append('showDeleted', params.showDeleted.toString())
const queryString = queryParams.toString()
return `${CALENDAR_API_BASE}/calendars/${encodeURIComponent(calendarId)}/events${queryString ? `?${queryString}` : ''}`
},
method: 'GET',
headers: (params: GoogleCalendarListParams) => ({
Authorization: `Bearer ${params.accessToken}`,
'Content-Type': 'application/json',
}),
},
transformResponse: async (response: Response) => {
const data: GoogleCalendarApiListResponse = await response.json()
const events = data.items || []
const eventsCount = events.length
return {
success: true,
output: {
content: `Found ${eventsCount} event${eventsCount !== 1 ? 's' : ''}`,
metadata: {
nextPageToken: data.nextPageToken,
nextSyncToken: data.nextSyncToken,
timeZone: data.timeZone,
events: events.map((event: GoogleCalendarApiEventResponse) => ({
id: event.id,
htmlLink: event.htmlLink,
status: event.status,
summary: event.summary || 'No title',
description: event.description,
location: event.location,
start: event.start,
end: event.end,
attendees: event.attendees,
creator: event.creator,
organizer: event.organizer,
})),
},
},
}
},
outputs: {
content: { type: 'string', description: 'Summary of found events count' },
metadata: {
type: 'json',
description: 'List of events with pagination tokens and event details',
},
},
}
interface GoogleCalendarListV2Event {
id: string
htmlLink: string
status: string
summary: string | null
description: string | null
location: string | null
start: GoogleCalendarApiEventResponse['start']
end: GoogleCalendarApiEventResponse['end']
attendees: GoogleCalendarApiEventResponse['attendees'] | null
creator: GoogleCalendarApiEventResponse['creator'] | null
organizer: GoogleCalendarApiEventResponse['organizer'] | null
}
interface GoogleCalendarListV2Response {
success: boolean
output: {
nextPageToken: string | null
timeZone: string | null
events: GoogleCalendarListV2Event[]
}
}
export const listV2Tool: ToolConfig<GoogleCalendarListParams, GoogleCalendarListV2Response> = {
id: 'google_calendar_list_v2',
name: 'Google Calendar List Events',
description: 'List events from Google Calendar. Returns API-aligned fields only.',
version: '2.0.0',
oauth: listTool.oauth,
params: listTool.params,
request: listTool.request,
transformResponse: async (response: Response) => {
const data: GoogleCalendarApiListResponse = await response.json()
const events = data.items || []
return {
success: true,
output: {
nextPageToken: data.nextPageToken ?? null,
timeZone: data.timeZone ?? null,
events: events.map((event: GoogleCalendarApiEventResponse) => ({
id: event.id,
htmlLink: event.htmlLink,
status: event.status,
summary: event.summary ?? null,
description: event.description ?? null,
location: event.location ?? null,
start: event.start,
end: event.end,
attendees: event.attendees ?? null,
creator: event.creator,
organizer: event.organizer,
})),
},
}
},
outputs: {
nextPageToken: { type: 'string', description: 'Next page token', optional: true },
timeZone: { type: 'string', description: 'Calendar time zone', optional: true },
events: { type: 'json', description: 'List of events' },
},
}