n8n-nodes-rd-station-crm
Version:
n8n community node for RD Station CRM: API v1 (private token) and API v2 (OAuth2) — contacts, deals, organizations, tasks, notes, pipelines, stages, products, custom fields, sources, campaigns, loss reasons, users, teams and a real webhook trigger.
152 lines • 6.29 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.sourceDescription = void 0;
exports.executeSource = executeSource;
const transport_1 = require("../../transport");
const showOnlyForSources = {
resource: ['source'],
};
exports.sourceDescription = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: { show: showOnlyForSources },
options: [
{
name: 'Create',
value: 'create',
action: 'Create a source',
description: 'Create a new deal source (origin of a deal) in RD Station CRM and return the created record including its ID',
},
{
name: 'Get',
value: 'get',
action: 'Get a source',
description: 'Retrieve a single deal source from RD Station CRM by its unique ID',
},
{
name: 'Get Many',
value: 'getMany',
action: 'Get many sources',
description: 'Retrieve a paginated list of deal sources from RD Station CRM, with an optional name filter',
},
{
name: 'Update',
value: 'update',
action: 'Update a source',
description: 'Update an existing RD Station CRM deal source identified by its ID and return the updated record',
},
],
default: 'create',
},
// ----- ID field (get / update) -----
{
displayName: 'Source ID',
name: 'sourceId',
type: 'string',
required: true,
default: '',
displayOptions: { show: { ...showOnlyForSources, operation: ['get', 'update'] } },
description: 'Unique ID of the deal source to retrieve or update, as returned by a Create or Get Many source operation',
},
// ----- name (create) -----
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
default: '',
displayOptions: { show: { ...showOnlyForSources, operation: ['create'] } },
description: 'Name of the deal source (where a deal originated), for example Website or Indication',
},
// ----- Additional / Update fields -----
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: { show: { ...showOnlyForSources, operation: ['create'] } },
options: [
{ displayName: 'Description', name: 'description', type: 'string', default: '', description: 'Description of the deal source, e.g. Leads from paid ads campaigns' },
],
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: { show: { ...showOnlyForSources, operation: ['update'] } },
options: [
{ displayName: 'Description', name: 'description', type: 'string', default: '', description: 'Description of the deal source, e.g. Leads from paid ads campaigns' },
{ displayName: 'Name', name: 'name', type: 'string', default: '', description: 'Name of the deal source (where a deal originated), e.g. Website or Indication' },
],
},
// ----- Get Many controls -----
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: { show: { ...showOnlyForSources, operation: ['getMany'] } },
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
typeOptions: { minValue: 1 },
description: 'Max number of results to return',
displayOptions: {
show: { ...showOnlyForSources, operation: ['getMany'], returnAll: [false] },
},
},
{
displayName: 'Filters',
name: 'filters',
type: 'collection',
placeholder: 'Add Filter',
default: {},
displayOptions: { show: { ...showOnlyForSources, operation: ['getMany'] } },
options: [
{ displayName: 'Search', name: 'q', type: 'string', default: '', description: 'Filter deal sources by name, returning those whose name matches the given text' },
],
},
];
async function executeSource(operation, i) {
if (operation === 'create') {
const name = this.getNodeParameter('name', i);
const additionalFields = this.getNodeParameter('additionalFields', i, {});
// Body is sent top-level (no wrapper). The RD Station CRM deal sources docs list
// `name`/`description` as top-level body params (mirrors the confirmed campaigns shape).
const body = { name, ...additionalFields };
return transport_1.rdCrmApiRequest.call(this, 'POST', '/deal_sources', body);
}
if (operation === 'get') {
const sourceId = this.getNodeParameter('sourceId', i);
return transport_1.rdCrmApiRequest.call(this, 'GET', `/deal_sources/${sourceId}`);
}
if (operation === 'getMany') {
const returnAll = this.getNodeParameter('returnAll', i);
const filters = this.getNodeParameter('filters', i, {});
const qs = { ...filters };
if (returnAll) {
return transport_1.rdCrmApiRequestAllItems.call(this, 'deal_sources', 'GET', '/deal_sources', {}, qs);
}
qs.limit = this.getNodeParameter('limit', i);
const response = await transport_1.rdCrmApiRequest.call(this, 'GET', '/deal_sources', {}, qs);
return response.deal_sources ?? response;
}
if (operation === 'update') {
const sourceId = this.getNodeParameter('sourceId', i);
const updateFields = this.getNodeParameter('updateFields', i, {});
// Body is sent top-level (no wrapper), matching the create request shape.
return transport_1.rdCrmApiRequest.call(this, 'PUT', `/deal_sources/${sourceId}`, updateFields);
}
return {};
}
//# sourceMappingURL=Source.js.map