n8n/packages/nodes-base/nodes/Postgres/Postgres.node.ts

26 lines
731 B
TypeScript
Raw Normal View History

2023-04-03 08:18:01 -07:00
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,
description: 'Get, add and update data in Postgres',
};
2023-04-03 08:18:01 -07:00
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
1: new PostgresV1(baseDescription),
2: new PostgresV2(baseDescription),
};
2023-04-03 08:18:01 -07:00
super(nodeVersions, baseDescription);
2019-08-21 09:44:10 -07:00
}
}