mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
18 lines
377 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|