mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
26 lines
773 B
TypeScript
26 lines
773 B
TypeScript
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { SplitInBatchesV1 } from './v1/SplitInBatchesV1.node';
|
|
import { SplitInBatchesV2 } from './v2/SplitInBatchesV2.node';
|
|
|
|
export class SplitInBatches extends VersionedNodeType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'Split In Batches',
|
|
name: 'splitInBatches',
|
|
icon: 'fa:th-large',
|
|
group: ['organization'],
|
|
description: 'Split data into batches and iterate over each batch',
|
|
defaultVersion: 2,
|
|
};
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
1: new SplitInBatchesV1(),
|
|
2: new SplitInBatchesV2(),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|