mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
28819ca502
* ✨ NocoDB node * Add continueOnFail * Refactor the NocoDB node * ⚡ Improvements * Revert to using bulk endpoints * Add upload attachment to create/update:Row * Add download attachment to get:Row * Change create/update output, add attachment upload to defined fields * ⚡ Improvements * ⚡ Minor improvements Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
27 lines
456 B
TypeScript
27 lines
456 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class NocoDb implements ICredentialType {
|
|
name = 'nocoDb';
|
|
displayName = 'NocoDB';
|
|
documentationUrl = 'nocoDb';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'apiToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Host',
|
|
name: 'host',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'http(s)://localhost:8080',
|
|
},
|
|
];
|
|
}
|