n8n-nodes-base
Version:
Base nodes of n8n
42 lines (38 loc) • 1.39 kB
text/typescript
/**
* Wekan Node - Version 1
* Discriminator: resource=cardComment, operation=create
*/
interface Credentials {
wekanApi: CredentialReference;
}
/** Create a new board */
export type WekanV1CardCommentCreateParams = {
resource: 'cardComment';
operation: 'create';
/**
* The ID of the board that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
boardId?: string | Expression<string>;
/**
* The ID of the list that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
listId?: string | Expression<string>;
/**
* The ID of the card. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
cardId?: string | Expression<string>;
/**
* The user who posted the comment. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
authorId?: string | Expression<string>;
/**
* The comment text
*/
comment?: string | Expression<string> | PlaceholderValue;
};
export type WekanV1CardCommentCreateNode = {
type: 'n8n-nodes-base.wekan';
version: 1;
credentials?: Credentials;
config: NodeConfig<WekanV1CardCommentCreateParams>;
};