n8n-nodes-starter/credentials/BeeFlowOmni.credentials.ts
2022-02-11 08:52:24 -05:00

18 lines
377 B
TypeScript

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: '',
},
];
}