codeql-development-mcp-server 2.25.1-next.3 → 2.25.2-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -187313,6 +187313,17 @@ var requestPrototype = {
187313
187313
  }
187314
187314
  });
187315
187315
  });
187316
+ Object.defineProperty(requestPrototype, /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom"), {
187317
+ value: function(depth, options, inspectFn) {
187318
+ const props = {
187319
+ method: this.method,
187320
+ url: this.url,
187321
+ headers: this.headers,
187322
+ nativeRequest: this[requestCache]
187323
+ };
187324
+ return `Request (lightweight) ${inspectFn(props, { ...options, depth: depth == null ? null : depth - 1 })}`;
187325
+ }
187326
+ });
187316
187327
  Object.setPrototypeOf(requestPrototype, Request.prototype);
187317
187328
  var newRequest = (incoming, defaultHostname) => {
187318
187329
  const req = Object.create(requestPrototype);
@@ -187417,6 +187428,17 @@ var Response2 = class _Response {
187417
187428
  }
187418
187429
  });
187419
187430
  });
187431
+ Object.defineProperty(Response2.prototype, /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom"), {
187432
+ value: function(depth, options, inspectFn) {
187433
+ const props = {
187434
+ status: this.status,
187435
+ headers: this.headers,
187436
+ ok: this.ok,
187437
+ nativeResponse: this[responseCache]
187438
+ };
187439
+ return `Response (lightweight) ${inspectFn(props, { ...options, depth: depth == null ? null : depth - 1 })}`;
187440
+ }
187441
+ });
187420
187442
  Object.setPrototypeOf(Response2, GlobalResponse);
187421
187443
  Object.setPrototypeOf(Response2.prototype, GlobalResponse.prototype);
187422
187444
  async function readWithoutBlocking(readPromise) {
@@ -201057,7 +201079,7 @@ init_package_paths();
201057
201079
  init_logger();
201058
201080
  import_dotenv.default.config({ path: resolve14(packageRootDir, ".env"), quiet: true });
201059
201081
  var PACKAGE_NAME = "codeql-development-mcp-server";
201060
- var VERSION = "2.25.1-next.3";
201082
+ var VERSION = "2.25.2-rc1";
201061
201083
  async function startServer(mode = "stdio") {
201062
201084
  logger.info(`Starting CodeQL Development MCP McpServer v${VERSION} in ${mode} mode`);
201063
201085
  const codeqlBinary = resolveCodeQLBinary();