n8n/packages/nodes-base/nodes/MySql/v2/actions/versionDescription.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
931 B
TypeScript
Raw Normal View History

2023-04-12 07:24:17 -07:00
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
import type { INodeTypeDescription } from 'n8n-workflow';
import * as database from './database/Database.resource';
export const versionDescription: INodeTypeDescription = {
displayName: 'MySQL',
name: 'mySql',
icon: { light: 'file:mysql.svg', dark: 'file:mysql.dark.svg' },
2023-04-12 07:24:17 -07:00
group: ['input'],
version: [2, 2.1, 2.2, 2.3, 2.4],
2023-04-12 07:24:17 -07:00
subtitle: '={{ $parameter["operation"] }}',
description: 'Get, add and update data in MySQL',
defaults: {
name: 'MySQL',
},
inputs: ['main'],
outputs: ['main'],
credentials: [
{
name: 'mySql',
required: true,
testedBy: 'mysqlConnectionTest',
},
],
properties: [
{
displayName: 'Resource',
name: 'resource',
type: 'hidden',
noDataExpression: true,
options: [
{
name: 'Database',
value: 'database',
},
],
default: 'database',
},
...database.description,
],
};