BeeFlow 1

This commit is contained in:
Beedataco 2022-02-11 08:52:24 -05:00
commit 812cdaeace
8 changed files with 446 additions and 92 deletions

View file

@ -0,0 +1,18 @@
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class BeeFlowOmniKey implements ICredentialType {
name = 'BeeFlowOmniKey';
displayName = 'BeeFlow Omni API Key';
documentationUrl = 'BeeFlowOmni';
properties: INodeProperties[] = [
{
displayName: 'Authorization',
name: 'apiKey Authorization',
type: 'string',
default: '',
},
];
}