UNPKG

dtamind-components

Version:

Apps integration for Dtamind. Contain Nodes and Credentials.

25 lines 830 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class MilvusCredential { constructor() { this.label = 'Milvus Auth'; this.name = 'milvusAuth'; this.version = 1.0; this.description = 'You can find the Milvus Authentication from <a target="_blank" href="https://milvus.io/docs/authenticate.md#Authenticate-User-Access">here</a> page.'; this.inputs = [ { label: 'Milvus User', name: 'milvusUser', type: 'string' }, { label: 'Milvus Password', name: 'milvusPassword', type: 'password' } ]; } } module.exports = { credClass: MilvusCredential }; //# sourceMappingURL=MilvusAuth.credential.js.map