n8n-nodes-base
Version:
Base nodes of n8n
24 lines (21 loc) • 847 B
text/typescript
/**
* Webex by Cisco - Message Resource
* Re-exports all operation types for this resource.
*/
import type { CiscoWebexV1MessageCreateNode } from './operation_create';
import type { CiscoWebexV1MessageDeleteNode } from './operation_delete';
import type { CiscoWebexV1MessageGetNode } from './operation_get';
import type { CiscoWebexV1MessageGetAllNode } from './operation_get_all';
import type { CiscoWebexV1MessageUpdateNode } 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 CiscoWebexV1MessageNode =
| CiscoWebexV1MessageCreateNode
| CiscoWebexV1MessageDeleteNode
| CiscoWebexV1MessageGetNode
| CiscoWebexV1MessageGetAllNode
| CiscoWebexV1MessageUpdateNode
;