2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-12-19 05:08:31 -08:00
|
|
|
|
|
|
|
export class EgoiApi implements ICredentialType {
|
|
|
|
name = 'egoiApi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
|
|
|
displayName = 'E-Goi API';
|
|
|
|
|
2020-12-29 03:28:37 -08:00
|
|
|
documentationUrl = 'egoi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-12-19 05:08:31 -08:00
|
|
|
// 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',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2022-11-01 09:41:45 -07:00
|
|
|
typeOptions: { password: true },
|
2020-12-19 05:08:31 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
2020-12-29 03:28:37 -08:00
|
|
|
}
|