Add Brandfetch node (#1253)

*  Add Brandfetch node

*  Small improvement

*  Add donwload field to logo operation

* 🐛 Minor fixes

*  Minor improvements to Brandfetch-Node

Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
Jan
2020-12-15 16:56:28 +01:00
committed by GitHub
parent 53a97cc27b
commit d43aad2ca3
5 changed files with 356 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class BrandfetchApi implements ICredentialType {
name = 'brandfetchApi';
displayName = 'Brandfetch API';
documentationUrl = 'brandfetch';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}