@elizaos/server 1.6.2-alpha.21 → 1.6.2-alpha.22
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 +1 -1
- package/package.json +5 -5
- package/dist/characters/default.d.ts +0 -14
package/dist/index.js
CHANGED
|
@@ -28860,7 +28860,7 @@ import express30 from "express";
|
|
|
28860
28860
|
// package.json
|
|
28861
28861
|
var package_default = {
|
|
28862
28862
|
name: "@elizaos/server",
|
|
28863
|
-
version: "1.6.2-alpha.
|
|
28863
|
+
version: "1.6.2-alpha.22",
|
|
28864
28864
|
description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
28865
28865
|
publishConfig: {
|
|
28866
28866
|
access: "public",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/server",
|
|
3
|
-
"version": "1.6.2-alpha.
|
|
3
|
+
"version": "1.6.2-alpha.22",
|
|
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.2-alpha.
|
|
47
|
+
"@elizaos/client": "1.6.2-alpha.22",
|
|
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": "
|
|
55
|
+
"gitHead": "4ea6b5aa416df5df3c2c27dd08d1b98cec67fef2",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@elizaos/core": "1.6.2-alpha.
|
|
58
|
-
"@elizaos/plugin-sql": "1.6.2-alpha.
|
|
57
|
+
"@elizaos/core": "1.6.2-alpha.22",
|
|
58
|
+
"@elizaos/plugin-sql": "1.6.2-alpha.22",
|
|
59
59
|
"@sentry/node": "^10.16.0",
|
|
60
60
|
"@types/express": "^5.0.2",
|
|
61
61
|
"@types/helmet": "^4.0.0",
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { Character } from '@elizaos/core';
|
|
2
|
-
/**
|
|
3
|
-
* Returns the default Eliza character with plugins ordered by priority based on environment variables.
|
|
4
|
-
* This should be called after environment variables are loaded.
|
|
5
|
-
*
|
|
6
|
-
* @returns {Character} The Eliza character with appropriate plugins for the current environment
|
|
7
|
-
*/
|
|
8
|
-
export declare function getDefaultCharacter(): Character;
|
|
9
|
-
/**
|
|
10
|
-
* Legacy export for backward compatibility.
|
|
11
|
-
* Note: This will include all plugins regardless of environment variables.
|
|
12
|
-
* Use getDefaultCharacter() for environment-aware plugin loading.
|
|
13
|
-
*/
|
|
14
|
-
export declare const character: Character;
|