n8n-nodes-nextcloud-deck
Version:
n8n Node für die Integration mit Nextcloud Deck - AI Agent Tool Support
10 lines (9 loc) • 756 B
TypeScript
import { IExecuteFunctions } from 'n8n-workflow';
import { IComment, ICommentCreate, ICommentUpdate } from '../interfaces/comment';
export declare function getComments(this: IExecuteFunctions, cardId: number): Promise<IComment[]>;
export declare function getComment(this: IExecuteFunctions, cardId: number, commentId: number): Promise<IComment>;
export declare function createComment(this: IExecuteFunctions, cardId: number, commentData: ICommentCreate): Promise<IComment>;
export declare function updateComment(this: IExecuteFunctions, cardId: number, commentId: number, commentData: ICommentUpdate): Promise<IComment>;
export declare function deleteComment(this: IExecuteFunctions, cardId: number, commentId: number): Promise<{
success: boolean;
}>;