@elizaos/server 1.5.9 → 1.5.10-alpha.1
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/client/assets/main-CkbfKgca.css +5999 -0
- package/dist/client/assets/main-Cxu5WF7C.js +8 -0
- package/dist/client/assets/main-Cxu5WF7C.js.map +1 -0
- package/dist/client/assets/main-Dbnvjs-Q.js +119 -0
- package/dist/client/assets/main-Dbnvjs-Q.js.map +1 -0
- package/dist/client/assets/react-vendor-BZhB15Ka.js +546 -0
- package/dist/client/assets/react-vendor-BZhB15Ka.js.map +1 -0
- package/dist/client/assets/ui-vendor-B7JxFfFk.js +2 -0
- package/dist/client/assets/ui-vendor-B7JxFfFk.js.map +1 -0
- package/dist/client/elizaos-avatar.png +0 -0
- package/dist/client/elizaos-icon.png +0 -0
- package/dist/client/elizaos-logo-light.png +0 -0
- package/dist/client/elizaos.webp +0 -0
- package/dist/client/favicon.ico +0 -0
- package/dist/client/images/agents/agent1.png +0 -0
- package/dist/client/images/agents/agent2.png +0 -0
- package/dist/client/images/agents/agent3.png +0 -0
- package/dist/client/images/agents/agent4.png +0 -0
- package/dist/client/images/agents/agent5.png +0 -0
- package/dist/client/index.html +14 -0
- package/dist/index.js +2 -1
- package/package.json +5 -4
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var u=Object.defineProperty;var a=(n,t)=>u(n,"name",{value:t,configurable:!0});function o(n,t,{checkForDefaultPrevented:e=!0}={}){return a(function(r){if(n?.(r),e===!1||!r.defaultPrevented)return t?.(r)},"handleEvent")}a(o,"composeEventHandlers");function i(n,[t,e]){return Math.min(e,Math.max(t,n))}a(i,"clamp");export{i as a,o as c};
|
|
2
|
+
//# sourceMappingURL=ui-vendor-B7JxFfFk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ui-vendor-B7JxFfFk.js","sources":["../../../../node_modules/@radix-ui/primitive/dist/index.mjs","../../../../node_modules/@radix-ui/number/dist/index.mjs"],"sourcesContent":["// src/primitive.tsx\nvar canUseDOM = !!(typeof window !== \"undefined\" && window.document && window.document.createElement);\nfunction composeEventHandlers(originalEventHandler, ourEventHandler, { checkForDefaultPrevented = true } = {}) {\n return function handleEvent(event) {\n originalEventHandler?.(event);\n if (checkForDefaultPrevented === false || !event.defaultPrevented) {\n return ourEventHandler?.(event);\n }\n };\n}\nfunction getOwnerWindow(element) {\n if (!canUseDOM) {\n throw new Error(\"Cannot access window outside of the DOM\");\n }\n return element?.ownerDocument?.defaultView ?? window;\n}\nfunction getOwnerDocument(element) {\n if (!canUseDOM) {\n throw new Error(\"Cannot access document outside of the DOM\");\n }\n return element?.ownerDocument ?? document;\n}\nfunction getActiveElement(node, activeDescendant = false) {\n const { activeElement } = getOwnerDocument(node);\n if (!activeElement?.nodeName) {\n return null;\n }\n if (isFrame(activeElement) && activeElement.contentDocument) {\n return getActiveElement(activeElement.contentDocument.body, activeDescendant);\n }\n if (activeDescendant) {\n const id = activeElement.getAttribute(\"aria-activedescendant\");\n if (id) {\n const element = getOwnerDocument(activeElement).getElementById(id);\n if (element) {\n return element;\n }\n }\n }\n return activeElement;\n}\nfunction isFrame(element) {\n return element.tagName === \"IFRAME\";\n}\nexport {\n canUseDOM,\n composeEventHandlers,\n getActiveElement,\n getOwnerDocument,\n getOwnerWindow,\n isFrame\n};\n//# sourceMappingURL=index.mjs.map\n","// packages/core/number/src/number.ts\nfunction clamp(value, [min, max]) {\n return Math.min(max, Math.max(min, value));\n}\nexport {\n clamp\n};\n//# sourceMappingURL=index.mjs.map\n"],"names":["composeEventHandlers","originalEventHandler","ourEventHandler","checkForDefaultPrevented","__name","event","clamp","value","min","max"],"mappings":"+EAEA,SAASA,EAAqBC,EAAsBC,EAAiB,CAAE,yBAAAC,EAA2B,EAAI,EAAK,GAAI,CAC7G,OAAOC,EAAA,SAAqBC,EAAO,CAEjC,GADAJ,IAAuBI,CAAK,EACxBF,IAA6B,IAAS,CAACE,EAAM,iBAC/C,OAAOH,IAAkBG,CAAK,CAElC,EALO,cAMT,CAPSD,EAAAJ,EAAA,wBCDT,SAASM,EAAMC,EAAO,CAACC,EAAKC,CAAG,EAAG,CAChC,OAAO,KAAK,IAAIA,EAAK,KAAK,IAAID,EAAKD,CAAK,CAAC,CAC3C,CAFSH,EAAAE,EAAA","x_google_ignoreList":[0,1]}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" class="dark">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
7
|
+
<title>ElizaOS - Client</title>
|
|
8
|
+
<script type="module" crossorigin src="/assets/main-Cxu5WF7C.js"></script>
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
<!-- Minimal early Buffer/global/process bootstrap to avoid race before entry polyfills -->
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/dist/index.js
CHANGED
|
@@ -27452,7 +27452,7 @@ import express30 from "express";
|
|
|
27452
27452
|
// package.json
|
|
27453
27453
|
var package_default = {
|
|
27454
27454
|
name: "@elizaos/server",
|
|
27455
|
-
version: "1.5.
|
|
27455
|
+
version: "1.5.10-alpha.1",
|
|
27456
27456
|
description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
27457
27457
|
publishConfig: {
|
|
27458
27458
|
access: "public",
|
|
@@ -27496,6 +27496,7 @@ var package_default = {
|
|
|
27496
27496
|
dev: "bun run build.ts --watch"
|
|
27497
27497
|
},
|
|
27498
27498
|
devDependencies: {
|
|
27499
|
+
"@elizaos/client": "workspace:*",
|
|
27499
27500
|
"@types/node": "^24.0.1",
|
|
27500
27501
|
prettier: "3.5.3",
|
|
27501
27502
|
tsx: "4.19.4",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/server",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.10-alpha.1",
|
|
4
4
|
"description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"dev": "bun run build.ts --watch"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
+
"@elizaos/client": "1.5.10-alpha.1",
|
|
47
48
|
"@types/node": "^24.0.1",
|
|
48
49
|
"prettier": "3.5.3",
|
|
49
50
|
"tsx": "4.19.4",
|
|
@@ -51,10 +52,10 @@
|
|
|
51
52
|
"which": "^4.0.0",
|
|
52
53
|
"ws": "^8.18.0"
|
|
53
54
|
},
|
|
54
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "0651bedd0ed9d6c6d6d9ff752e329a9826e09eab",
|
|
55
56
|
"dependencies": {
|
|
56
|
-
"@elizaos/core": "1.5.
|
|
57
|
-
"@elizaos/plugin-sql": "1.5.
|
|
57
|
+
"@elizaos/core": "1.5.10-alpha.1",
|
|
58
|
+
"@elizaos/plugin-sql": "1.5.10-alpha.1",
|
|
58
59
|
"@sentry/node": "^10.11.0",
|
|
59
60
|
"@types/express": "^5.0.2",
|
|
60
61
|
"@types/helmet": "^4.0.0",
|