system-prompts-and-models-o.../NotionAi/notion-ai_20260322/modules/calendar/index.ts
2026-03-22 18:31:30 +08:00

25 lines
669 B
TypeScript

import type { Module as ContactsModule } from "./tools/contacts"
import type { Module as EventsModule } from "./tools/events"
export type Module = EventsModule & ContactsModule
export type {
CalendarIntegration,
ModulePermissions,
ModuleState,
} from "./integration"
export type {
Trigger,
TriggerConfig,
TriggerVariables,
CalendarEventCreatedTrigger,
CalendarEventCreatedTriggerConfig,
CalendarEventCreatedTriggerVariables,
CalendarEventUpdatedTrigger,
CalendarEventUpdatedTriggerConfig,
CalendarEventUpdatedTriggerVariables,
CalendarEventCanceledTrigger,
CalendarEventCanceledTriggerConfig,
CalendarEventCanceledTriggerVariables,
} from "./triggers"