/** * 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; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; }; export type ConvertKitV1SequenceGetAllNode = { type: 'n8n-nodes-base.convertKit'; version: 1; credentials?: Credentials; config: NodeConfig; };