import { Token } from '../../../../../zoo-message-ts/src/api/general/types.ts'; import { JobConfig } from '../../../../../zoo-message-ts/src/api/jobs/types.ts'; import { CreateRecurringTaskResponse } from '../../../../../zoo-message-ts/src/api/recurring-tasks/types.ts'; export type UpdateRecurringTaskOutput = CreateRecurringTaskResponse; export type UpdateRecurringTaskInput = Token & { nodeAddress: string; name: string; active: boolean; description?: string; taskId: string; jobId: string; cronExpression: string; message: string; toolKey?: string; llmProvider: string; chatConfig: JobConfig; };