@lovelybunch/api 1.0.27 → 1.0.28

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.
@@ -66,6 +66,7 @@ import config from './routes/api/v1/config/index.js';
66
66
  import user from './routes/api/v1/user/index.js';
67
67
  import agents from './routes/api/v1/agents/index.js';
68
68
  import agentsById from './routes/api/v1/agents/[id]/index.js';
69
+ import git from './routes/api/v1/git/index.js';
69
70
  // Register API routes FIRST
70
71
  console.log('🔗 Registering API routes...');
71
72
  app.route('/api/v1/proposals', proposals);
@@ -84,6 +85,7 @@ app.route('/api/v1/config', config);
84
85
  app.route('/api/v1/user', user);
85
86
  app.route('/api/v1/agents', agents);
86
87
  app.route('/api/v1/agents/:id', agentsById);
88
+ app.route('/api/v1/git', git);
87
89
  console.log('✅ API routes registered');
88
90
  // Health check endpoint
89
91
  app.get('/api/health', (c) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lovelybunch/api",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "type": "module",
5
5
  "main": "dist/server-with-static.js",
6
6
  "exports": {
@@ -32,8 +32,8 @@
32
32
  "dependencies": {
33
33
  "@hono/node-server": "^1.13.7",
34
34
  "@hono/node-ws": "^1.0.6",
35
- "@lovelybunch/core": "^1.0.27",
36
- "@lovelybunch/types": "^1.0.27",
35
+ "@lovelybunch/core": "^1.0.28",
36
+ "@lovelybunch/types": "^1.0.28",
37
37
  "dotenv": "^17.2.1",
38
38
  "fuse.js": "^7.0.0",
39
39
  "gray-matter": "^4.0.3",