@@ -187358,6 +187358,17 @@ var requestPrototype = {
187358187358 }
187359187359 });
187360187360});
187361+ Object.defineProperty(requestPrototype, /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom"), {
187362+ value: function(depth, options, inspectFn) {
187363+ const props = {
187364+ method: this.method,
187365+ url: this.url,
187366+ headers: this.headers,
187367+ nativeRequest: this[requestCache]
187368+ };
187369+ return `Request (lightweight) ${inspectFn(props, { ...options, depth: depth == null ? null : depth - 1 })}`;
187370+ }
187371+ });
187361187372Object.setPrototypeOf(requestPrototype, Request.prototype);
187362187373var newRequest = (incoming, defaultHostname) => {
187363187374 const req = Object.create(requestPrototype);
@@ -187462,6 +187473,17 @@ var Response2 = class _Response {
187462187473 }
187463187474 });
187464187475});
187476+ Object.defineProperty(Response2.prototype, /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom"), {
187477+ value: function(depth, options, inspectFn) {
187478+ const props = {
187479+ status: this.status,
187480+ headers: this.headers,
187481+ ok: this.ok,
187482+ nativeResponse: this[responseCache]
187483+ };
187484+ return `Response (lightweight) ${inspectFn(props, { ...options, depth: depth == null ? null : depth - 1 })}`;
187485+ }
187486+ });
187465187487Object.setPrototypeOf(Response2, GlobalResponse);
187466187488Object.setPrototypeOf(Response2.prototype, GlobalResponse.prototype);
187467187489async function readWithoutBlocking(readPromise) {
@@ -201506,7 +201528,7 @@ init_package_paths();
201506201528init_logger();
201507201529import_dotenv.default.config({ path: resolve14(packageRootDir, ".env"), quiet: true });
201508201530var PACKAGE_NAME = "codeql-development-mcp-server";
201509- var VERSION = "2.25.1-next.2 ";
201531+ var VERSION = "2.25.1-next.3 ";
201510201532async function startServer(mode = "stdio") {
201511201533 logger.info(`Starting CodeQL Development MCP McpServer v${VERSION} in ${mode} mode`);
201512201534 const codeqlBinary = resolveCodeQLBinary();
0 commit comments