UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

21 lines (17 loc) 392 B
/** * Lemlist Node - Version 2 * Discriminator: resource=team, operation=get */ interface Credentials { lemlistApi: CredentialReference; } export type LemlistV2TeamGetParams = { resource: 'team'; operation: 'get'; }; export type LemlistV2TeamGetNode = { type: 'n8n-nodes-base.lemlist'; version: 2; credentials?: Credentials; config: NodeConfig<LemlistV2TeamGetParams>; };