dtamind-components
Version:
DTAmindai Components
19 lines • 630 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class MongoDBUrlApi {
constructor() {
this.label = 'MongoDB ATLAS';
this.name = 'mongoDBUrlApi';
this.version = 1.0;
this.inputs = [
{
label: 'ATLAS Connection URL',
name: 'mongoDBConnectUrl',
type: 'string',
placeholder: 'mongodb+srv://<user>:<pwd>@cluster0.example.mongodb.net/?retryWrites=true&w=majority'
}
];
}
}
module.exports = { credClass: MongoDBUrlApi };
//# sourceMappingURL=MongoDBUrlApi.credential.js.map