Auth & get records management

This commit is contained in:
Romain Dunand
2019-11-10 01:54:25 +01:00
parent 29bf80c3eb
commit cfa8713226
6 changed files with 647 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FileMaker implements ICredentialType {
name = 'FileMaker';
displayName = 'FileMaker';
properties = [
{
displayName: 'Host',
name: 'host',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Database',
name: 'db',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Login',
name: 'login',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
typeOptions: {
password: true,
},
default: '',
},
];
}