Add DHL node (#2385)

*  DHL node

*  Add credentials verfication

* 👕 Nodelinter pass

*  Improvements

*  Fix node name

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-11-25 12:48:52 -05:00
committed by GitHub
parent 5fd3f8a244
commit a58c251a28
5 changed files with 268 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class DhlApi implements ICredentialType {
name = 'dhlApi';
displayName = 'DHL API';
documentationUrl = 'dhl';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}