@duytransipher/gitnexus 1.1.1 → 1.1.2

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.
@@ -64,14 +64,14 @@ export async function syncUnrealAssetManifest(storagePath, config) {
64
64
  const args = buildBaseArgs(config, 'SyncAssets', outputPath);
65
65
  try {
66
66
  const { stdout } = await runCommand(config, 'SyncAssets', args);
67
- const response = await readOutputJson(outputPath, stdout);
68
- const manifestPath = await saveUnrealAssetManifest(storagePath, response.manifest);
67
+ const manifest = await readOutputJson(outputPath, stdout);
68
+ const manifestPath = await saveUnrealAssetManifest(storagePath, manifest);
69
69
  return {
70
70
  status: 'success',
71
71
  manifest_path: manifestPath,
72
- asset_count: response.manifest.assets.length,
73
- generated_at: response.manifest.generated_at,
74
- warnings: response.warnings || [],
72
+ asset_count: manifest.assets.length,
73
+ generated_at: manifest.generated_at,
74
+ warnings: [],
75
75
  };
76
76
  }
77
77
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duytransipher/gitnexus",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Sipher-maintained fork of GitNexus for graph-powered code intelligence via MCP and CLI.",
5
5
  "author": "DuyTranSipher",
6
6
  "license": "PolyForm-Noncommercial-1.0.0",