UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

33 lines (29 loc) 749 B
/** * ConvertKit Node - Version 1 * Discriminator: resource=sequence, operation=getAll */ interface Credentials { convertKitApi: CredentialReference; } /** Get many fields */ export type ConvertKitV1SequenceGetAllParams = { resource: 'sequence'; operation: 'getAll'; /** * 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 ConvertKitV1SequenceGetAllNode = { type: 'n8n-nodes-base.convertKit'; version: 1; credentials?: Credentials; config: NodeConfig<ConvertKitV1SequenceGetAllParams>; };