n8n-nodes-base
Version:
Base nodes of n8n
27 lines (24 loc) • 1.07 kB
text/typescript
/**
* Microsoft SharePoint - Item Resource
* Re-exports all operation types for this resource.
*/
import type { MicrosoftSharePointV1ItemCreateNode } from './operation_create';
import type { MicrosoftSharePointV1ItemDeleteNode } from './operation_delete';
import type { MicrosoftSharePointV1ItemGetNode } from './operation_get';
import type { MicrosoftSharePointV1ItemGetAllNode } from './operation_get_all';
import type { MicrosoftSharePointV1ItemUpdateNode } from './operation_update';
import type { MicrosoftSharePointV1ItemUpsertNode } from './operation_upsert';
export * from './operation_create';
export * from './operation_delete';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_update';
export * from './operation_upsert';
export type MicrosoftSharePointV1ItemNode =
| MicrosoftSharePointV1ItemCreateNode
| MicrosoftSharePointV1ItemDeleteNode
| MicrosoftSharePointV1ItemGetNode
| MicrosoftSharePointV1ItemGetAllNode
| MicrosoftSharePointV1ItemUpdateNode
| MicrosoftSharePointV1ItemUpsertNode
;