Add Mindee-Node (#1004)

*  Mindee-Node

*  Improvements
This commit is contained in:
Ricardo Espinoza
2020-10-03 08:08:50 -04:00
committed by GitHub
parent 7c51964bd2
commit 419b58024a
6 changed files with 341 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MindeeReceiptApi implements ICredentialType {
name = 'mindeeReceiptApi';
displayName = 'Mindee Receipt API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}