@cnbcool/mcp-server
Version:
CNB MCP Server. A comprehensive MCP server that provides seamless integration to the CNB's API(https://cnb.cool), offering a wide range of tools for repository management, pipelines operations and collaboration features
10 lines (9 loc) • 354 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RepoVisibility = void 0;
var RepoVisibility;
(function (RepoVisibility) {
RepoVisibility["private"] = "Private";
RepoVisibility["public"] = "Public";
RepoVisibility["secret"] = "Secret";
})(RepoVisibility || (exports.RepoVisibility = RepoVisibility = {}));