Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ graph TB

Before running the bootstrap script, you'll need:

1. **Node.js 18.12 or later**
1. **Node.js 19 or later**
- Download from [https://nodejs.org/](https://nodejs.org/)
- Verify installation: `node --version`

Expand Down
2 changes: 1 addition & 1 deletion packages/todo0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "dist/app-server.js",
"types": "dist/app-server.d.ts",
"scripts": {
"build": "tsc",
"build": "prisma generate && tsc",
"start": "node dist/app-server.js",
"start:mcp": "node dist/mcp-server.js",
"dev:mcp": "tsc && node dist/mcp-server.js",
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/agent-identity-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export interface CreateConnectionRequest {
connectionType: string;
authorizationServer: {
orn: string;
resourceIndicator: string;
};
resourceIndicator: string;
scopeCondition: string;
scopes: string[];
}
Expand Down