mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
51 lines
927 B
TypeScript
51 lines
927 B
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class QdrantApi implements ICredentialType {
|
|
name = 'qdrantApi';
|
|
|
|
displayName = 'QdrantApi';
|
|
|
|
documentationUrl = 'https://docs.n8n.io/integrations/builtin/credentials/qdrant/';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
required: false,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Qdrant URL',
|
|
name: 'qdrantUrl',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
'api-key': '={{$credentials.apiKey}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '={{$credentials.qdrantUrl}}',
|
|
headers: {
|
|
accept: 'application/json; charset=utf-8',
|
|
},
|
|
},
|
|
};
|
|
}
|