UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

45 lines (41 loc) 1.37 kB
/** * Wekan Node - Version 1 * Discriminator: resource=cardComment, operation=getAll */ interface Credentials { wekanApi: CredentialReference; } /** Get many user boards */ export type WekanV1CardCommentGetAllParams = { resource: 'cardComment'; operation: 'getAll'; /** * The ID of the board that card belongs to. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ boardId?: string | Expression<string>; /** * The ID of the list that card belongs to. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ listId?: string | Expression<string>; /** * The ID of the card. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ cardId?: string | Expression<string>; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression<boolean>; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression<number>; }; export type WekanV1CardCommentGetAllNode = { type: 'n8n-nodes-base.wekan'; version: 1; credentials?: Credentials; config: NodeConfig<WekanV1CardCommentGetAllParams>; };