mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ 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:
21
packages/nodes-base/credentials/EgoiApi.credentials.ts
Normal file
21
packages/nodes-base/credentials/EgoiApi.credentials.ts
Normal 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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user