n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 418 B
text/typescript
/**
* Paddle - Payment Resource
* Re-exports all operation types for this resource.
*/
import type { PaddleV1PaymentGetAllNode } from './operation_get_all';
import type { PaddleV1PaymentRescheduleNode } from './operation_reschedule';
export * from './operation_get_all';
export * from './operation_reschedule';
export type PaddleV1PaymentNode =
| PaddleV1PaymentGetAllNode
| PaddleV1PaymentRescheduleNode
;