@createlex/createlexgenai 1.0.2 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createlex/createlexgenai",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "CLI tool and MCP server for CreatelexGenAI — Unreal Engine AI integration",
5
5
  "bin": {
6
6
  "createlex": "./bin/createlex.js"
@@ -82,8 +82,8 @@ async function healthCheck(options = {}) {
82
82
  return { available: false, error: `Port ${port} not reachable` };
83
83
  }
84
84
 
85
- // Full health check
86
- const res = await request('GET', '/remote/api/v1/health', null, options);
85
+ // Full health check — UE uses /remote/info (not /remote/api/v1/health)
86
+ const res = await request('GET', '/remote/info', null, options);
87
87
  return {
88
88
  available: res.status === 200,
89
89
  status: res.status,