mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
✨ Add Apache Kafka node (#1109)
* ✨ Add Apache Kafka node * ⚡ Improvements Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
This commit is contained in:
29
packages/nodes-base/credentials/KafkaPlain.credentials.ts
Normal file
29
packages/nodes-base/credentials/KafkaPlain.credentials.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class KafkaPlain implements ICredentialType {
|
||||
extends = [
|
||||
'kafka',
|
||||
];
|
||||
name = 'kafkaPlain';
|
||||
displayName = 'Kafka';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Username',
|
||||
name: 'username',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Password',
|
||||
name: 'password',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user