n8n/packages/nodes-base/credentials/PeekalinkApi.credentials.ts
Tanay Pant bf46620b52
Add Peekalink node (#1411)
*  Add Peekalink node

*  Small improvements

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2021-02-07 21:44:20 +01:00

19 lines
348 B
TypeScript

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: '',
},
];
}