@elizaos/server 1.6.4-alpha.15 → 1.6.4-alpha.17

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,10 +1,16 @@
1
1
  import { Service, type Content, type IAgentRuntime, type Plugin, type UUID, ElizaOS } from '@elizaos/core';
2
2
  import type { MessageMetadata } from '@elizaos/api-client';
3
+ import type { AgentServer } from '../index.js';
3
4
  /**
4
5
  * Set the global ElizaOS instance
5
6
  * Should be called by AgentServer during initialization
6
7
  */
7
8
  export declare function setGlobalElizaOS(elizaOS: ElizaOS): void;
9
+ /**
10
+ * Set the global AgentServer instance
11
+ * Should be called by AgentServer during initialization
12
+ */
13
+ export declare function setGlobalAgentServer(agentServer: AgentServer): void;
8
14
  export interface MessageServiceMessage {
9
15
  id: UUID;
10
16
  channel_id: UUID;
@@ -27,6 +33,7 @@ export declare class MessageBusService extends Service {
27
33
  private boundHandleMessageDeleted;
28
34
  private boundHandleChannelCleared;
29
35
  private subscribedServers;
36
+ private serverInstance;
30
37
  constructor(runtime: IAgentRuntime);
31
38
  static start(runtime: IAgentRuntime): Promise<Service>;
32
39
  static stop(runtime: IAgentRuntime): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/server",
3
- "version": "1.6.4-alpha.15",
3
+ "version": "1.6.4-alpha.17",
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.4-alpha.15",
47
+ "@elizaos/client": "1.6.4-alpha.17",
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": "5a15da1e9f38a2e91240a3d02213daffed6b60c7",
55
+ "gitHead": "3885b3b2cf3afde79000e4884f013ede61f883bb",
56
56
  "dependencies": {
57
- "@elizaos/core": "1.6.4-alpha.15",
58
- "@elizaos/plugin-sql": "1.6.4-alpha.15",
57
+ "@elizaos/core": "1.6.4-alpha.17",
58
+ "@elizaos/plugin-sql": "1.6.4-alpha.17",
59
59
  "@sentry/node": "^10.16.0",
60
60
  "@types/express": "^5.0.2",
61
61
  "@types/helmet": "^4.0.0",