/** * Paddle Node - Version 1 * Discriminator: resource=plan, operation=get */ interface Credentials { paddleApi: CredentialReference; } /** Get a plan */ export type PaddleV1PlanGetParams = { resource: 'plan'; operation: 'get'; /** * Filter: The subscription plan ID */ planId?: string | Expression | PlaceholderValue; }; export type PaddleV1PlanGetNode = { type: 'n8n-nodes-base.paddle'; version: 1; credentials?: Credentials; config: NodeConfig; };