n8n/packages/nodes-base/credentials/MauticApi.credentials.ts

34 lines
614 B
TypeScript
Raw Normal View History

2020-01-15 05:55:46 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MauticApi implements ICredentialType {
name = 'mauticApi';
displayName = 'Mautic API';
properties = [
{
displayName: 'URL',
name: 'url',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'https://name.mautic.net',
2020-01-15 05:55:46 -08:00
},
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
2020-01-17 05:57:35 -08:00
type: 'string' as NodePropertyTypes,
typeOptions: {
password: true,
},
2020-01-15 05:55:46 -08:00
default: '',
},
];
}