mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
49 lines
851 B
TypeScript
49 lines
851 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export class MonicaCrmApi implements ICredentialType {
|
||
|
name = 'monicaCrmApi';
|
||
|
displayName = 'Monica CRM API';
|
||
|
documentationUrl = 'monicaCrm';
|
||
|
properties: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Environment',
|
||
|
name: 'environment',
|
||
|
type: 'options',
|
||
|
default: 'cloudHosted',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Cloud-hosted',
|
||
|
value: 'cloudHosted',
|
||
|
},
|
||
|
{
|
||
|
name: 'Self-hosted',
|
||
|
value: 'selfHosted',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Self-hosted domain',
|
||
|
name: 'domain',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
placeholder: 'https://www.mydomain.com',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
environment: [
|
||
|
'selfHosted',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'API Token',
|
||
|
name: 'apiToken',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
];
|
||
|
}
|