Add Egoi node (#1227)

* Add E-goi Node

*  Improvements to #1224

*  Small improvements

*  Minor improvements to Egoi-Node

*  Add 'simple' option to get and getAll operations.

*  Minor improvements to Egoi-Node

Co-authored-by: fbobiano <fbobiano@e-goi.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Ricardo Espinoza
2020-12-19 08:08:31 -05:00
committed by GitHub
parent bfb344a23c
commit 48830eda77
6 changed files with 928 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class EgoiApi implements ICredentialType {
name = 'egoiApi';
displayName = 'e-goi API';
properties = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}