@elizaos/server 1.5.12-alpha.2 → 1.5.12

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.
Files changed (40) hide show
  1. package/dist/api/agents/crud.d.ts +2 -2
  2. package/dist/api/agents/index.d.ts +2 -2
  3. package/dist/api/agents/lifecycle.d.ts +2 -2
  4. package/dist/api/agents/logs.d.ts +2 -2
  5. package/dist/api/agents/panels.d.ts +2 -2
  6. package/dist/api/agents/runs.d.ts +2 -2
  7. package/dist/api/agents/worlds.d.ts +2 -2
  8. package/dist/api/audio/conversation.d.ts +2 -2
  9. package/dist/api/audio/index.d.ts +2 -2
  10. package/dist/api/audio/processing.d.ts +2 -2
  11. package/dist/api/audio/synthesis.d.ts +2 -2
  12. package/dist/api/index.d.ts +5 -5
  13. package/dist/api/memory/agents.d.ts +2 -2
  14. package/dist/api/memory/groups.d.ts +2 -2
  15. package/dist/api/memory/index.d.ts +2 -2
  16. package/dist/api/memory/rooms.d.ts +2 -2
  17. package/dist/api/messaging/channels.d.ts +2 -2
  18. package/dist/api/messaging/index.d.ts +2 -2
  19. package/dist/api/messaging/sessions.d.ts +2 -2
  20. package/dist/api/runtime/health.d.ts +2 -2
  21. package/dist/api/runtime/index.d.ts +2 -2
  22. package/dist/api/shared/middleware.d.ts +2 -2
  23. package/dist/api/shared/validation.d.ts +2 -2
  24. package/dist/client/assets/{main-FtAaPweT.js → main-Cxu5WF7C.js} +3 -3
  25. package/dist/client/assets/{main-FtAaPweT.js.map → main-Cxu5WF7C.js.map} +1 -1
  26. package/dist/client/assets/main-Dbnvjs-Q.js +119 -0
  27. package/dist/client/assets/main-Dbnvjs-Q.js.map +1 -0
  28. package/dist/client/assets/{react-vendor-2Sp1NOb7.js → react-vendor-BZhB15Ka.js} +31 -31
  29. package/dist/client/assets/react-vendor-BZhB15Ka.js.map +1 -0
  30. package/dist/client/index.html +1 -1
  31. package/dist/index.d.ts +5 -34
  32. package/dist/index.js +550 -1369
  33. package/dist/socketio/index.d.ts +4 -3
  34. package/package.json +5 -5
  35. package/dist/characters/default.d.ts +0 -14
  36. package/dist/client/assets/main-CoxLIDww.js +0 -141
  37. package/dist/client/assets/main-CoxLIDww.js.map +0 -1
  38. package/dist/client/assets/react-vendor-2Sp1NOb7.js.map +0 -1
  39. package/dist/managers/ConfigManager.d.ts +0 -32
  40. package/dist/managers/PluginLoader.d.ts +0 -27
@@ -1,32 +0,0 @@
1
- import { type RuntimeSettings, type Character } from '@elizaos/core';
2
- /**
3
- * Manages configuration loading and character settings
4
- */
5
- export declare class ConfigManager {
6
- /**
7
- * Load environment configuration for runtime
8
- *
9
- * Loads environment variables from the project's .env file and returns them as runtime settings.
10
- */
11
- loadEnvConfig(): Promise<RuntimeSettings>;
12
- /**
13
- * Find the .env file in the project
14
- */
15
- private findEnvFile;
16
- /**
17
- * Validates if a character has secrets configured
18
- */
19
- hasCharacterSecrets(character: Character): boolean;
20
- /**
21
- * Ensures character has a settings object
22
- */
23
- private ensureCharacterSettings;
24
- /**
25
- * Loads secrets from local .env file
26
- */
27
- loadLocalEnvSecrets(): Promise<Record<string, string> | null>;
28
- /**
29
- * Sets default secrets from local .env if character doesn't have any
30
- */
31
- setDefaultSecretsFromEnv(character: Character): Promise<boolean>;
32
- }
@@ -1,27 +0,0 @@
1
- import { type Plugin } from '@elizaos/core';
2
- /**
3
- * Manages plugin loading and dependency resolution
4
- */
5
- export declare class PluginLoader {
6
- /**
7
- * Check if an object has a valid plugin shape
8
- */
9
- isValidPluginShape(obj: any): obj is Plugin;
10
- /**
11
- * Validate a plugin's structure
12
- */
13
- validatePlugin(plugin: any): {
14
- isValid: boolean;
15
- errors: string[];
16
- };
17
- /**
18
- * Load and prepare a plugin for use
19
- */
20
- loadAndPreparePlugin(pluginName: string): Promise<Plugin | null>;
21
- /**
22
- * Resolve plugin dependencies with circular dependency detection
23
- *
24
- * Performs topological sorting of plugins to ensure dependencies are loaded in the correct order.
25
- */
26
- resolvePluginDependencies(availablePlugins: Map<string, Plugin>, isTestMode?: boolean): Plugin[];
27
- }