mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
29 lines
856 B
TypeScript
29 lines
856 B
TypeScript
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { PostgresV1 } from './v1/PostgresV1.node';
|
|
import { PostgresV2 } from './v2/PostgresV2.node';
|
|
|
|
export class Postgres extends VersionedNodeType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'Postgres',
|
|
name: 'postgres',
|
|
icon: 'file:postgres.svg',
|
|
group: ['input'],
|
|
defaultVersion: 2.3,
|
|
description: 'Get, add and update data in Postgres',
|
|
};
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
1: new PostgresV1(baseDescription),
|
|
2: new PostgresV2(baseDescription),
|
|
2.1: new PostgresV2(baseDescription),
|
|
2.2: new PostgresV2(baseDescription),
|
|
2.3: new PostgresV2(baseDescription),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|