UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

33 lines (29 loc) 706 B
/** * Paddle Node - Version 1 * Discriminator: resource=plan, operation=getAll */ interface Credentials { paddleApi: CredentialReference; } /** Get many coupons */ export type PaddleV1PlanGetAllParams = { resource: 'plan'; 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 PaddleV1PlanGetAllNode = { type: 'n8n-nodes-base.paddle'; version: 1; credentials?: Credentials; config: NodeConfig<PaddleV1PlanGetAllParams>; };