n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 556 B
text/typescript
/**
* Humantic AI - Profile Resource
* Re-exports all operation types for this resource.
*/
import type { HumanticAiV1ProfileCreateNode } from './operation_create';
import type { HumanticAiV1ProfileGetNode } from './operation_get';
import type { HumanticAiV1ProfileUpdateNode } from './operation_update';
export * from './operation_create';
export * from './operation_get';
export * from './operation_update';
export type HumanticAiV1ProfileNode =
| HumanticAiV1ProfileCreateNode
| HumanticAiV1ProfileGetNode
| HumanticAiV1ProfileUpdateNode
;