@elizaos/server 1.5.8-alpha.12 → 1.5.8-alpha.13

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAGzD,OAAO,OAAO,MAAM,SAAS,CAAC;AAE9B,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B,OAAO,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAkB5C;;;;GAIG;AAIH,wBAAgB,aAAa,CAC3B,MAAM,EAAE,IAAI,CAAC,MAAM,EACnB,MAAM,EAAE,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,EAChC,cAAc,EAAE,WAAW,GAC1B,cAAc,CAkBhB;AAyCD,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,GAAG,OAAO,CAAC,cAAc,CA4NjG;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAC7B,MAAM,EAAE,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,EAChC,cAAc,EAAE,WAAW,GAC1B,OAAO,CAAC,MAAM,CAuEhB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAGzD,OAAO,OAAO,MAAM,SAAS,CAAC;AAE9B,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B,OAAO,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAkB5C;;;;GAIG;AAIH,wBAAgB,aAAa,CAC3B,MAAM,EAAE,IAAI,CAAC,MAAM,EACnB,MAAM,EAAE,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,EAChC,cAAc,EAAE,WAAW,GAC1B,cAAc,CAkBhB;AAyCD,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,GAAG,OAAO,CAAC,cAAc,CAgOjG;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAC7B,MAAM,EAAE,GAAG,CAAC,IAAI,EAAE,aAAa,CAAC,EAChC,cAAc,EAAE,WAAW,GAC1B,OAAO,CAAC,MAAM,CAuEhB"}
package/dist/index.js CHANGED
@@ -5826,7 +5826,7 @@ import express29 from "express";
5826
5826
  // package.json
5827
5827
  var package_default = {
5828
5828
  name: "@elizaos/server",
5829
- version: "1.5.8-alpha.12",
5829
+ version: "1.5.8-alpha.13",
5830
5830
  description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
5831
5831
  publishConfig: {
5832
5832
  access: "public",
@@ -6321,7 +6321,7 @@ function setupLogStreaming(io, router) {
6321
6321
  }
6322
6322
  function createPluginRouteHandler(agents) {
6323
6323
  return (req, res, next) => {
6324
- logger26.debug("Handling plugin request in the plugin route handler", {
6324
+ logger26.debug("Handling plugin request in the plugin route handler", `path: ${req.path}, method: ${req.method}`, {
6325
6325
  path: req.path,
6326
6326
  method: req.method,
6327
6327
  query: req.query
@@ -6367,8 +6367,7 @@ function createPluginRouteHandler(agents) {
6367
6367
  handled = true;
6368
6368
  }
6369
6369
  } catch (error) {
6370
- logger26.error(`Error handling plugin wildcard route for agent ${agentIdFromQuery}: ${routePath}`, {
6371
- error,
6370
+ logger26.error(`Error handling plugin wildcard route for agent ${agentIdFromQuery}: ${routePath}`, error instanceof Error ? error.message : String(error), {
6372
6371
  path: reqPath,
6373
6372
  agent: agentIdFromQuery
6374
6373
  });
@@ -6387,7 +6386,7 @@ function createPluginRouteHandler(agents) {
6387
6386
  try {
6388
6387
  matcher = import_path_to_regexp.match(routePath, { decode: decodeURIComponent });
6389
6388
  } catch (err) {
6390
- logger26.error(`Invalid plugin route path syntax for agent ${agentIdFromQuery}: "${routePath}"`, err);
6389
+ logger26.error(`Invalid plugin route path syntax for agent ${agentIdFromQuery}: "${routePath}"`, err instanceof Error ? err.message : String(err));
6391
6390
  continue;
6392
6391
  }
6393
6392
  const matched = matcher(baselessReqPath);
@@ -6400,8 +6399,7 @@ function createPluginRouteHandler(agents) {
6400
6399
  handled = true;
6401
6400
  }
6402
6401
  } catch (error) {
6403
- logger26.error(`Error handling plugin route for agent ${agentIdFromQuery}: ${routePath}`, {
6404
- error,
6402
+ logger26.error(`Error handling plugin route for agent ${agentIdFromQuery}: ${routePath}`, error instanceof Error ? error.message : String(error), {
6405
6403
  path: reqPath,
6406
6404
  agent: agentIdFromQuery,
6407
6405
  params: req.params
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/server",
3
- "version": "1.5.8-alpha.12",
3
+ "version": "1.5.8-alpha.13",
4
4
  "description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -51,10 +51,10 @@
51
51
  "which": "^4.0.0",
52
52
  "ws": "^8.18.0"
53
53
  },
54
- "gitHead": "2d04ade03dae7a1a8548e395cc6043438f0f751d",
54
+ "gitHead": "af94cbb41adda91dde3d38002a79d3f608cf677b",
55
55
  "dependencies": {
56
- "@elizaos/core": "1.5.8-alpha.12",
57
- "@elizaos/plugin-sql": "1.5.8-alpha.12",
56
+ "@elizaos/core": "1.5.8-alpha.13",
57
+ "@elizaos/plugin-sql": "1.5.8-alpha.13",
58
58
  "@types/express": "^5.0.2",
59
59
  "@types/helmet": "^4.0.0",
60
60
  "@types/multer": "^1.4.13",