Files
botpress--botpress/integrations/todoist/src/actions/index.ts
T
2026-07-13 13:34:48 +08:00

20 lines
692 B
TypeScript

import { changeTaskPriority } from './implementations/change-task-priority'
import { createNewTask } from './implementations/create-new-task'
import { getAllProjects } from './implementations/get-all-projects'
import { getAllSections } from './implementations/get-all-sections'
import { getAllTasks } from './implementations/get-all-tasks'
import { getProjectId } from './implementations/get-project-id'
import { getTaskId } from './implementations/get-task-id'
import * as bp from '.botpress'
export const actions = {
changeTaskPriority,
getProjectId,
getTaskId,
createNewTask,
getAllProjects,
getAllSections,
getAllTasks,
} as const satisfies bp.IntegrationProps['actions']