n8n-nodes-base
Version:
Base nodes of n8n
37 lines (33 loc) • 931 B
text/typescript
/**
* Wekan Node - Version 1
* Discriminator: resource=board, operation=getAll
*/
interface Credentials {
wekanApi: CredentialReference;
}
/** Get many user boards */
export type WekanV1BoardGetAllParams = {
resource: 'board';
operation: 'getAll';
/**
* The ID of the user that boards are attached. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
IdUser?: 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 WekanV1BoardGetAllNode = {
type: 'n8n-nodes-base.wekan';
version: 1;
credentials?: Credentials;
config: NodeConfig<WekanV1BoardGetAllParams>;
};