Skip to content

Commit e38b8be

Browse files
author
mike dupont
committed
removing client for now, sorry
1 parent ff247a8 commit e38b8be

File tree

7 files changed

+47
-78
lines changed

7 files changed

+47
-78
lines changed

client/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
"@radix-ui/react-tooltip": "^1.1.6",
2323
"@react-spring/web": "^9.7.5",
2424
"@tanstack/react-query": "^5.63.0",
25+
"@types/hapi": "^18.0.14",
26+
"@types/hapi__shot": "^6.0.0",
2527
"@uidotdev/usehooks": "^2.4.1",
2628
"class-variance-authority": "^0.7.1",
2729
"clsx": "2.1.1",
@@ -39,7 +41,7 @@
3941
},
4042
"devDependencies": {
4143
"@eslint/js": "^9.17.0",
42-
"@types/node": "^22.10.5",
44+
"@types/node": "^22.13.4",
4345
"@types/react": "^19.0.3",
4446
"@types/react-dom": "^19.0.2",
4547
"@types/semver": "^7.5.8",

client/tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"files": [],
3+
"compilerOptions": {
4+
"typeRoots":["./node_modules/@types"],
5+
},
36
"references": [
47
{ "path": "./tsconfig.app.json" },
58
{ "path": "./tsconfig.node.json" }

packages/client-direct/src/api.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import express from "express";
2+
import Router from "express";
23
import bodyParser from "body-parser";
34
import cors from "cors";
45
import path from "path";
@@ -53,7 +54,7 @@ function validateUUIDParams(
5354
export function createApiRouter(
5455
agents: Map<string, AgentRuntime>,
5556
directClient: DirectClient
56-
) {
57+
) :Router {
5758
const router = express.Router();
5859

5960
router.use(cors());

packages/client-direct/src/verifiable-log-api.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import express from "express";
2+
import Router from "express";
23
import bodyParser from "body-parser";
34
import cors from "cors";
45

@@ -8,9 +9,9 @@ import type {
89
VerifiableLogQuery,
910
} from "@elizaos/plugin-tee-verifiable-log";
1011

11-
export function createVerifiableLogApiRouter(
12+
export function createVerifiableLogApiRouter (
1213
agents: Map<string, AgentRuntime>
13-
) {
14+
) : Router {
1415
const router = express.Router();
1516
router.use(cors());
1617
router.use(bodyParser.json());

packages/core/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"emitDeclarationOnly": true,
1616
"resolveJsonModule": true,
1717
"noImplicitAny": false,
18-
"typeRoots":["./node_modulse/@types"],
18+
"typeRoots":["./node_modules/@types"],
1919
"allowJs": true,
2020
"checkJs": false,
2121
"noEmitOnError": false,

pnpm-lock.yaml

+35-69
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
"outputs": ["dist/**"],
1515
"dependsOn": ["^@elizaos/core#build"]
1616
},
17-
"@elizaos/client-direct#build": {
18-
"outputs": ["dist/**"]
19-
20-
},
2117
"@elizaos/plugin-solana#build": {
2218
"outputs": ["dist/**"],
2319
"dependsOn": [

0 commit comments

Comments
 (0)