n8n-nodes-base
Version:
Base nodes of n8n
24 lines (21 loc) • 807 B
text/typescript
/**
* Harvest - Invoice Resource
* Re-exports all operation types for this resource.
*/
import type { HarvestV1InvoiceCreateNode } from './operation_create';
import type { HarvestV1InvoiceDeleteNode } from './operation_delete';
import type { HarvestV1InvoiceGetNode } from './operation_get';
import type { HarvestV1InvoiceGetAllNode } from './operation_get_all';
import type { HarvestV1InvoiceUpdateNode } from './operation_update';
export * from './operation_create';
export * from './operation_delete';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_update';
export type HarvestV1InvoiceNode =
| HarvestV1InvoiceCreateNode
| HarvestV1InvoiceDeleteNode
| HarvestV1InvoiceGetNode
| HarvestV1InvoiceGetAllNode
| HarvestV1InvoiceUpdateNode
;