@elizaos/server 1.7.1-alpha.16 → 1.7.1-alpha.18
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
|
@@ -8190,15 +8190,16 @@ var require_import_in_the_middle = __commonJS((exports, module) => {
|
|
|
8190
8190
|
}
|
|
8191
8191
|
if (modules) {
|
|
8192
8192
|
for (const moduleName of modules) {
|
|
8193
|
-
|
|
8194
|
-
|
|
8195
|
-
|
|
8193
|
+
const nameMatch = moduleName === name;
|
|
8194
|
+
const specMatch = moduleName === specifier;
|
|
8195
|
+
if (nameMatch || specMatch) {
|
|
8196
8196
|
if (baseDir) {
|
|
8197
8197
|
if (internals) {
|
|
8198
8198
|
name = name + path8.sep + path8.relative(baseDir, fileURLToPath2(filename));
|
|
8199
8199
|
} else {
|
|
8200
|
-
if (!getExperimentalPatchInternals() && !baseDir.endsWith(specifiers.get(filename)))
|
|
8200
|
+
if (!getExperimentalPatchInternals() && !specMatch && !baseDir.endsWith(specifiers.get(filename))) {
|
|
8201
8201
|
continue;
|
|
8202
|
+
}
|
|
8202
8203
|
}
|
|
8203
8204
|
}
|
|
8204
8205
|
callHookFn(hookFn, namespace, name, baseDir);
|
|
@@ -27430,7 +27431,7 @@ import express31 from "express";
|
|
|
27430
27431
|
// package.json
|
|
27431
27432
|
var package_default = {
|
|
27432
27433
|
name: "@elizaos/server",
|
|
27433
|
-
version: "1.7.1-alpha.
|
|
27434
|
+
version: "1.7.1-alpha.18",
|
|
27434
27435
|
description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
27435
27436
|
publishConfig: {
|
|
27436
27437
|
access: "public",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/server",
|
|
3
|
-
"version": "1.7.1-alpha.
|
|
3
|
+
"version": "1.7.1-alpha.18",
|
|
4
4
|
"description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"dev": "bun run build.ts --watch"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@elizaos/client": "1.7.1-alpha.
|
|
48
|
-
"@elizaos/config": "1.7.1-alpha.
|
|
47
|
+
"@elizaos/client": "1.7.1-alpha.18",
|
|
48
|
+
"@elizaos/config": "1.7.1-alpha.18",
|
|
49
49
|
"@types/bcrypt": "^6.0.0",
|
|
50
50
|
"@types/node": "^24.10.1",
|
|
51
51
|
"bun-fetch-mock": "^1.0.0",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"which": "^6.0.0",
|
|
56
56
|
"ws": "^8.18.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "420e0000b8e82db47bf0402237156959e1767d05",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@elizaos/core": "1.7.1-alpha.
|
|
61
|
-
"@elizaos/plugin-sql": "1.7.1-alpha.
|
|
60
|
+
"@elizaos/core": "1.7.1-alpha.18",
|
|
61
|
+
"@elizaos/plugin-sql": "1.7.1-alpha.18",
|
|
62
62
|
"@sentry/node": "^10.16.0",
|
|
63
63
|
"@types/express": "^5.0.2",
|
|
64
64
|
"@types/helmet": "^4.0.0",
|