@elizaos/server 1.6.3-alpha.1 → 1.6.3-alpha.3

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.
package/dist/index.js CHANGED
@@ -27355,6 +27355,7 @@ function createSessionInfoResponse(session) {
27355
27355
  const warningThresholdMs = (session.timeoutConfig.warningThresholdMinutes || DEFAULT_WARNING_THRESHOLD_MINUTES) * 60 * 1000;
27356
27356
  return {
27357
27357
  sessionId: session.id,
27358
+ channelId: session.channelId,
27358
27359
  agentId: session.agentId,
27359
27360
  userId: session.userId,
27360
27361
  createdAt: session.createdAt,
@@ -27481,6 +27482,7 @@ function createSessionsRouter(elizaOS, serverInstance) {
27481
27482
  sessions.set(sessionId, session);
27482
27483
  const response = {
27483
27484
  sessionId,
27485
+ channelId: session.channelId,
27484
27486
  agentId: session.agentId,
27485
27487
  userId: session.userId,
27486
27488
  createdAt: session.createdAt,
@@ -28864,7 +28866,7 @@ import express30 from "express";
28864
28866
  // package.json
28865
28867
  var package_default = {
28866
28868
  name: "@elizaos/server",
28867
- version: "1.6.3-alpha.1",
28869
+ version: "1.6.3-alpha.3",
28868
28870
  description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
28869
28871
  publishConfig: {
28870
28872
  access: "public",
@@ -63,6 +63,7 @@ export interface CreateSessionRequest {
63
63
  */
64
64
  export interface CreateSessionResponse {
65
65
  sessionId: string;
66
+ channelId: UUID;
66
67
  agentId: UUID;
67
68
  userId: UUID;
68
69
  createdAt: Date;
@@ -126,6 +127,7 @@ export interface GetMessagesResponse {
126
127
  */
127
128
  export interface SessionInfoResponse {
128
129
  sessionId: string;
130
+ channelId: UUID;
129
131
  agentId: UUID;
130
132
  userId: UUID;
131
133
  createdAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/server",
3
- "version": "1.6.3-alpha.1",
3
+ "version": "1.6.3-alpha.3",
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.3-alpha.1",
47
+ "@elizaos/client": "1.6.3-alpha.3",
48
48
  "@types/node": "^24.0.1",
49
49
  "prettier": "3.6.2",
50
50
  "tsx": "4.20.6",
@@ -52,10 +52,10 @@
52
52
  "which": "^5.0.0",
53
53
  "ws": "^8.18.0"
54
54
  },
55
- "gitHead": "f7bfc305580518ed392d2f12b20c80fac44f3baf",
55
+ "gitHead": "b33224d5678e86e7c70f7dc850f46338cd5eb157",
56
56
  "dependencies": {
57
- "@elizaos/core": "1.6.3-alpha.1",
58
- "@elizaos/plugin-sql": "1.6.3-alpha.1",
57
+ "@elizaos/core": "1.6.3-alpha.3",
58
+ "@elizaos/plugin-sql": "1.6.3-alpha.3",
59
59
  "@sentry/node": "^10.16.0",
60
60
  "@types/express": "^5.0.2",
61
61
  "@types/helmet": "^4.0.0",