mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-30 14:52:27 -05:00
19 lines
377 B
TypeScript
19 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: '',
|
||
|
|
},
|
||
|
|
];
|
||
|
|
}
|