mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0712334679
* ✨ Autopilot Node & Trigger * 🎨 Replace PNG with SVG icon * 🚚 Rename description file * 🔨 Fix contact operations default * ✏️ Edit contact property descriptions * ✏️ Edit journey property descriptions * ✏️ Edit contact list property descriptions * ✏️ Edit list property descriptions * 🐛 Fix issue with a wrong named resource * ⚡ Fix Trigger-Node name and minor improvements * 🔨 Remove 404 from contactList:exist Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
19 lines
348 B
TypeScript
19 lines
348 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class AutopilotApi implements ICredentialType {
|
|
name = 'autopilotApi';
|
|
displayName = 'Autopilot API';
|
|
documentationUrl = 'autopilot';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|