first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,65 @@
import { addressFixedCollection } from '../../../methods/sharedFields';
import type { ContactProperties } from '../../Interfaces';
export const contactCreateDescription: ContactProperties = [
{
displayName: 'Customer ID',
name: 'customerId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['contact'],
operation: ['create'],
},
},
default: '',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
placeholder: 'name@email.com',
displayOptions: {
show: {
resource: ['contact'],
operation: ['create'],
},
},
default: '',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
resource: ['contact'],
operation: ['create'],
},
},
default: {},
options: [
addressFixedCollection,
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
},
],
},
];
@@ -0,0 +1,36 @@
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
import { apiRequest } from '../../../transport';
export async function createContact(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const id = this.getNodeParameter('customerId', index) as IDataObject;
const email = this.getNodeParameter('email', index) as IDataObject;
const { address, notes, phone, name } = this.getNodeParameter('additionalFields', index);
const qs = {} as IDataObject;
const requestMethod = 'POST';
const endpoint = 'contacts';
let body = {} as IDataObject;
let addressData = address as IDataObject;
if (addressData) {
addressData = addressData.addressFields as IDataObject;
addressData.address1 = addressData.address;
}
body = {
...addressData,
customer_id: id,
email,
name,
notes,
phone,
};
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData as IDataObject);
}
@@ -0,0 +1,4 @@
import { contactCreateDescription as description } from './description';
import { createContact as execute } from './execute';
export { description, execute };
@@ -0,0 +1,18 @@
import type { ContactProperties } from '../../Interfaces';
export const contactDeleteDescription: ContactProperties = [
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['contact'],
operation: ['delete'],
},
},
default: '',
description: 'Delete a specific contact by ID',
},
];
@@ -0,0 +1,18 @@
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
import { apiRequest } from '../../../transport';
export async function deleteContact(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const id = this.getNodeParameter('contactId', index) as string;
const qs = {} as IDataObject;
const requestMethod = 'DELETE';
const endpoint = `contacts/${id}`;
const body = {} as IDataObject;
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData as IDataObject);
}
@@ -0,0 +1,4 @@
import { contactDeleteDescription as description } from './description';
import { deleteContact as execute } from './execute';
export { description, execute };
@@ -0,0 +1,18 @@
import type { ContactProperties } from '../../Interfaces';
export const contactGetDescription: ContactProperties = [
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['contact'],
operation: ['get'],
},
},
default: '',
description: 'Get specific contact by ID',
},
];
@@ -0,0 +1,18 @@
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
import { apiRequest } from '../../../transport';
export async function getContact(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const id = this.getNodeParameter('contactId', index) as string;
const qs = {} as IDataObject;
const requestMethod = 'GET';
const endpoint = `contacts/${id}`;
const body = {} as IDataObject;
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData as IDataObject);
}
@@ -0,0 +1,4 @@
import { contactGetDescription as description } from './description';
import { getContact as execute } from './execute';
export { description, execute };
@@ -0,0 +1,35 @@
import type { ContactProperties } from '../../Interfaces';
export const contactGetAllDescription: ContactProperties = [
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['contact'],
operation: ['getAll'],
},
},
noDataExpression: true,
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
typeOptions: {
minValue: 1,
},
description: 'Max number of results to return',
displayOptions: {
show: {
resource: ['contact'],
operation: ['getAll'],
returnAll: [false],
},
},
default: 25,
},
];
@@ -0,0 +1,25 @@
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
import { apiRequest, apiRequestAllItems } from '../../../transport';
export async function getAll(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const returnAll = this.getNodeParameter('returnAll', index);
const qs = {} as IDataObject;
const requestMethod = 'GET';
const endpoint = 'contacts';
const body = {} as IDataObject;
let responseData;
if (returnAll) {
responseData = await apiRequestAllItems.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData);
} else {
const limit = this.getNodeParameter('limit', index);
responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData.contacts.splice(0, limit) as IDataObject[]);
}
}
@@ -0,0 +1,4 @@
import { contactGetAllDescription as description } from './description';
import { getAll as execute } from './execute';
export { description, execute };
@@ -0,0 +1,61 @@
import type { INodeProperties } from 'n8n-workflow';
import * as create from './create';
import * as del from './del';
import * as get from './get';
import * as getAll from './getAll';
import * as update from './update';
export { getAll, create, del as delete, update, get };
export const descriptions = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['contact'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create new contact',
action: 'Create a contact',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete contact',
action: 'Delete a contact',
},
{
name: 'Get',
value: 'get',
description: 'Retrieve contact',
action: 'Get a contact',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Retrieve many contacts',
action: 'Get many contacts',
},
{
name: 'Update',
value: 'update',
description: 'Update contact',
action: 'Update a contact',
},
],
default: 'getAll',
},
...getAll.description,
...create.description,
...get.description,
...update.description,
...del.description,
] as INodeProperties[];
@@ -0,0 +1,64 @@
import { addressFixedCollection } from '../../../methods/sharedFields';
import type { ContactProperties } from '../../Interfaces';
export const contactUpdateDescription: ContactProperties = [
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
displayOptions: {
show: {
resource: ['contact'],
operation: ['update'],
},
},
default: '',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
resource: ['contact'],
operation: ['update'],
},
},
default: {},
options: [
addressFixedCollection,
{
displayName: 'Customer ID',
name: 'customerId',
type: 'string',
default: '',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
placeholder: 'name@email.com',
default: '',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
},
],
},
];
@@ -0,0 +1,39 @@
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
import { apiRequest } from '../../../transport';
export async function updateContact(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const id = this.getNodeParameter('contactId', index) as IDataObject;
const { address, customerId, email, name, notes, phone } = this.getNodeParameter(
'updateFields',
index,
);
const qs = {} as IDataObject;
const requestMethod = 'PUT';
const endpoint = `contacts/${id}`;
let body = {} as IDataObject;
let addressData = address as IDataObject;
if (addressData) {
addressData = addressData.addressFields as IDataObject;
addressData.address1 = addressData.address;
}
body = {
...addressData,
contact_id: id,
customer_id: customerId,
email,
name,
notes,
phone,
};
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData as IDataObject);
}
@@ -0,0 +1,4 @@
import { contactUpdateDescription as description } from './description';
import { updateContact as execute } from './execute';
export { description, execute };