n8n/packages/nodes-base/credentials/CalApi.credentials.ts
Jan Oberhauser 86721fc496
feat(core) Simplify authentication type (#3578)
*  Add generic auth type

*  Remove queryAuth

*  Remove bearer

*  Remove headerAuth

*  Remove basicAuth

*  Adjust tests

*  Small improvements

* 👕 Fix lint issue
2022-06-26 15:55:51 -07:00

43 lines
735 B
TypeScript

import {
IAuthenticateGeneric,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class CalApi implements ICredentialType {
name = 'calApi';
displayName = 'Cal API';
documentationUrl = 'cal';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
default: 'https://api.cal.com',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
qs: {
apiKey: '={{$credentials.apiKey}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials.host}}',
url: '=/v1/memberships',
},
};
}