Add Peekalink node (#1411)

*  Add Peekalink node

*  Small improvements

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
Tanay Pant
2021-02-07 21:44:20 +01:00
committed by GitHub
parent 7c2755c970
commit bf46620b52
5 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PeekalinkApi implements ICredentialType {
name = 'peekalinkApi';
displayName = 'Peekalink API';
documentationUrl = 'peekalink';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}