n8n-nodes-base
Version:
Base nodes of n8n
30 lines (26 loc) • 743 B
text/typescript
/**
* Wekan Node - Version 1
* Discriminator: resource=list, operation=create
*/
interface Credentials {
wekanApi: CredentialReference;
}
/** Create a new board */
export type WekanV1ListCreateParams = {
resource: 'list';
operation: 'create';
/**
* The ID of the board the list should be created in. 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 title of the list
*/
title?: string | Expression<string> | PlaceholderValue;
};
export type WekanV1ListCreateNode = {
type: 'n8n-nodes-base.wekan';
version: 1;
credentials?: Credentials;
config: NodeConfig<WekanV1ListCreateParams>;
};