2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2019-11-09 16:54:25 -08:00
|
|
|
|
|
|
|
export class FileMaker implements ICredentialType {
|
2019-11-29 15:13:06 -08:00
|
|
|
name = 'fileMaker';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2019-12-01 04:00:21 -08:00
|
|
|
displayName = 'FileMaker API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'fileMaker';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2019-11-09 16:54:25 -08:00
|
|
|
{
|
|
|
|
displayName: 'Host',
|
|
|
|
name: 'host',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-11-09 16:54:25 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Database',
|
|
|
|
name: 'db',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-11-09 16:54:25 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Login',
|
|
|
|
name: 'login',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-11-09 16:54:25 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Password',
|
|
|
|
name: 'password',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-11-09 16:54:25 -08:00
|
|
|
typeOptions: {
|
|
|
|
password: true,
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|