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