dtamind-components
Version:
Apps integration for Dtamind. Contain Nodes and Credentials.
20 lines • 652 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class SearchApi {
constructor() {
this.label = 'Search API';
this.name = 'searchApi';
this.version = 1.0;
this.description =
'Sign in to <a target="_blank" href="https://www.searchapi.io/">SearchApi</a> to obtain a free API key from the dashboard.';
this.inputs = [
{
label: 'SearchApi API Key',
name: 'searchApiKey',
type: 'password'
}
];
}
}
module.exports = { credClass: SearchApi };
//# sourceMappingURL=SearchApi.credential.js.map