@elizaos/server 1.6.1-alpha.3 → 1.6.1-alpha.5

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.
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <link rel="icon" type="image/x-icon" href="/favicon.ico" />
7
7
  <title>ElizaOS - Client</title>
8
- <script type="module" crossorigin src="/assets/main-C4q5_rtN.js"></script>
8
+ <script type="module" crossorigin src="/assets/main-4tyUgNqd.js"></script>
9
9
  </head>
10
10
  <body>
11
11
  <div id="root"></div>
package/dist/index.js CHANGED
@@ -23396,7 +23396,10 @@ function createAgentRunsRouter(elizaOS) {
23396
23396
  actionName: body.action,
23397
23397
  success: body.result?.success !== false,
23398
23398
  result: body.result,
23399
- promptCount: body.promptCount
23399
+ promptCount: body.promptCount,
23400
+ prompts: body.prompts,
23401
+ params: body.params,
23402
+ response: body.response
23400
23403
  }
23401
23404
  });
23402
23405
  }
@@ -23409,7 +23412,15 @@ function createAgentRunsRouter(elizaOS) {
23409
23412
  modelType: body.modelType || (typeof e.type === "string" ? e.type.replace("useModel:", "") : undefined),
23410
23413
  provider: body.provider,
23411
23414
  executionTime: body.executionTime,
23412
- actionContext: body.actionContext
23415
+ actionContext: body.actionContext,
23416
+ params: body.params,
23417
+ response: body.response,
23418
+ usage: body.usage,
23419
+ prompts: body.prompts,
23420
+ prompt: body.prompt,
23421
+ inputTokens: body.inputTokens,
23422
+ outputTokens: body.outputTokens,
23423
+ cost: body.cost
23413
23424
  }
23414
23425
  });
23415
23426
  }
@@ -27616,7 +27627,7 @@ import express30 from "express";
27616
27627
  // package.json
27617
27628
  var package_default = {
27618
27629
  name: "@elizaos/server",
27619
- version: "1.6.1-alpha.3",
27630
+ version: "1.6.1-alpha.5",
27620
27631
  description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
27621
27632
  publishConfig: {
27622
27633
  access: "public",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/server",
3
- "version": "1.6.1-alpha.3",
3
+ "version": "1.6.1-alpha.5",
4
4
  "description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -44,7 +44,7 @@
44
44
  "dev": "bun run build.ts --watch"
45
45
  },
46
46
  "devDependencies": {
47
- "@elizaos/client": "1.6.1-alpha.3",
47
+ "@elizaos/client": "1.6.1-alpha.5",
48
48
  "@types/node": "^24.0.1",
49
49
  "prettier": "3.5.3",
50
50
  "tsx": "4.19.4",
@@ -52,10 +52,10 @@
52
52
  "which": "^4.0.0",
53
53
  "ws": "^8.18.0"
54
54
  },
55
- "gitHead": "19058b935fffc6409bf94eb65b90a680d809ce73",
55
+ "gitHead": "90c052c82d42bdbfac79771ccdbcd6a1be939562",
56
56
  "dependencies": {
57
- "@elizaos/core": "1.6.1-alpha.3",
58
- "@elizaos/plugin-sql": "1.6.1-alpha.3",
57
+ "@elizaos/core": "1.6.1-alpha.5",
58
+ "@elizaos/plugin-sql": "1.6.1-alpha.5",
59
59
  "@sentry/node": "^10.11.0",
60
60
  "@types/express": "^5.0.2",
61
61
  "@types/helmet": "^4.0.0",