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

49 lines
851 B
TypeScript
Raw Normal View History

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: '',
},
];
}