/** * Linear Node - Version 1.1 * Discriminator: resource=comment, operation=addComment */ interface Credentials { linearApi: CredentialReference; linearOAuth2Api: CredentialReference; } /** Add a comment to an issue */ export type LinearV11CommentAddCommentParams = { resource: 'comment'; operation: 'addComment'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Issue ID */ issueId?: string | Expression | PlaceholderValue; /** * Comment */ comment?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** ID of the parent comment if this is a reply */ parentId?: string | Expression | PlaceholderValue; }; }; export type LinearV11CommentAddCommentNode = { type: 'n8n-nodes-base.linear'; version: 1.1; credentials?: Credentials; config: NodeConfig; };