n8n-nodes-base
Version:
Base nodes of n8n
39 lines (36 loc) • 1.35 kB
text/typescript
/**
* Harvest Node - Version 1
* Re-exports all discriminator combinations.
*/
import type { HarvestV1ClientNode } from './resource_client';
import type { HarvestV1CompanyNode } from './resource_company';
import type { HarvestV1ContactNode } from './resource_contact';
import type { HarvestV1EstimateNode } from './resource_estimate';
import type { HarvestV1ExpenseNode } from './resource_expense';
import type { HarvestV1InvoiceNode } from './resource_invoice';
import type { HarvestV1ProjectNode } from './resource_project';
import type { HarvestV1TaskNode } from './resource_task';
import type { HarvestV1TimeEntryNode } from './resource_time_entry';
import type { HarvestV1UserNode } from './resource_user';
export * from './resource_client';
export * from './resource_company';
export * from './resource_contact';
export * from './resource_estimate';
export * from './resource_expense';
export * from './resource_invoice';
export * from './resource_project';
export * from './resource_task';
export * from './resource_time_entry';
export * from './resource_user';
export type HarvestV1Node =
| HarvestV1ClientNode
| HarvestV1CompanyNode
| HarvestV1ContactNode
| HarvestV1EstimateNode
| HarvestV1ExpenseNode
| HarvestV1InvoiceNode
| HarvestV1ProjectNode
| HarvestV1TaskNode
| HarvestV1TimeEntryNode
| HarvestV1UserNode
;