mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
1965407030
* Added versioning, with new credentials * Fix lint issue * 🔥 Remove old import name * Change function name * 🎨 Simplify name of versions within the node mindee * 🎨 Change version type from string to number * 🔥 Removed Mindee from getting ignored by prettier * 🎨 Ran prettier on Mindee folder * 🔥 Removed unused import * 🎨 Moved exceptions that were not working anymore Co-authored-by: Omar Ajoue <krynble@gmail.com>
31 lines
881 B
TypeScript
31 lines
881 B
TypeScript
import {
|
|
ICredentialDataDecryptedObject,
|
|
ICredentialType,
|
|
IHttpRequestOptions,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MindeeReceiptApi implements ICredentialType {
|
|
name = 'mindeeReceiptApi';
|
|
displayName = 'Mindee Receipt API';
|
|
documentationUrl = 'mindee';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
async authenticate(credentials: ICredentialDataDecryptedObject, requestOptions: IHttpRequestOptions): Promise<IHttpRequestOptions> {
|
|
// @ts-ignore
|
|
const url = requestOptions.url ? requestOptions.url : requestOptions.uri;
|
|
if(url.includes('https://api.mindee.net/v1/')) {
|
|
requestOptions.headers!['Authorization'] = `Token ${credentials.apiKey}`;
|
|
} else {
|
|
requestOptions.headers!['X-Inferuser-Token'] = `${credentials.apiKey}`;
|
|
}
|
|
return requestOptions;
|
|
}
|
|
}
|