mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
d2b97c0713
* 👕 Enable rule `node-class-description-non-core-color-present` * 👕 Apply rule to remove deprecated `color` * ✏️ Fix unrelated typos * ✏️ Fix another unrelated typo Co-authored-by: Michael Kret <michael.k@radency.com>
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import { INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import * as customer from './customer';
|
|
import * as ticket from './ticket';
|
|
import * as contact from './contact';
|
|
import * as rmm from './rmm';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
displayName: 'SyncroMSP',
|
|
name: 'syncroMsp',
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
|
icon: 'file:syncromsp.png',
|
|
group: ['output'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Gets data from SyncroMSP',
|
|
defaults: {
|
|
name: 'SyncroMSP',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'syncroMspApi',
|
|
required: true,
|
|
testedBy: 'syncroMspApiCredentialTest',
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Contact',
|
|
value: 'contact',
|
|
},
|
|
{
|
|
name: 'Customer',
|
|
value: 'customer',
|
|
},
|
|
{
|
|
name: 'RMM',
|
|
value: 'rmm',
|
|
},
|
|
{
|
|
name: 'Ticket',
|
|
value: 'ticket',
|
|
},
|
|
],
|
|
default: 'contact',
|
|
},
|
|
...customer.descriptions,
|
|
...ticket.descriptions,
|
|
...contact.descriptions,
|
|
...rmm.descriptions,
|
|
],
|
|
};
|