n8n-nodes-deepidv
Version:
n8n community node to integrate with the DeepIDV identity verification API
27 lines • 888 B
JavaScript
;
// credentials/DeepIDVApi.credentials.ts
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeepIDVApi = void 0;
class DeepIDVApi {
constructor() {
/**
* This MUST match the `name` your node uses in its
* credentials: [ { name: 'deepIDVApi', ... } ] declaration.
*/
this.name = 'deepIDVApi';
this.displayName = 'DeepIDV API';
this.documentationUrl = 'https://www.deepidv.com/docs';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
typeOptions: { password: true },
description: 'Your DeepIDV API Key (Bearer token)',
},
];
}
}
exports.DeepIDVApi = DeepIDVApi;
//# sourceMappingURL=DeepIDVApi.credentials.js.map