n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 450 B
text/typescript
/**
* Onfleet - Organization Resource
* Re-exports all operation types for this resource.
*/
import type { OnfleetV1OrganizationGetNode } from './operation_get';
import type { OnfleetV1OrganizationGetDelegateeNode } from './operation_get_delegatee';
export * from './operation_get';
export * from './operation_get_delegatee';
export type OnfleetV1OrganizationNode =
| OnfleetV1OrganizationGetNode
| OnfleetV1OrganizationGetDelegateeNode
;