@couleetech/n8n-nodes-enlightenedmsp
Version:
n8n node for EnlightenedMSP ticketing and workflow automation
16 lines (15 loc) • 465 B
TypeScript
import { GraphqlBase } from './GraphqlBase';
declare class CreateTodoGraphql extends GraphqlBase {
createTodo(variables: {
title?: string;
description?: string;
dueDate?: Date;
ticketBlocking?: boolean;
autotaskTicketId?: number;
isOnsite?: boolean;
estimatedMinutes?: number;
createdByModuleName?: string;
createdByModuleId?: string;
}): Promise<any>;
}
export { CreateTodoGraphql };