Affinity node and trigger

This commit is contained in:
Ricardo Espinoza
2020-02-25 14:50:42 -05:00
parent e51237a0b9
commit 5b00ef7158
10 changed files with 1360 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class AffinityApi implements ICredentialType {
name = 'affinityApi';
displayName = 'Affinity API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}