hanoman 0.1.42 → 0.1.44

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.42",
3
- "sha": "ad6403a",
4
- "builtAt": "2026-08-17T00:53:19.226Z"
2
+ "version": "0.1.44",
3
+ "sha": "0b74c39",
4
+ "builtAt": "2026-08-17T09:48:14.366Z"
5
5
  }
package/dist/cli.js CHANGED
@@ -5650,6 +5650,9 @@ var init_api = __esm({
5650
5650
  ideCompare: (id, from, to) => `${API}/projects/${id}/compare?from=${encodeURIComponent(from)}&to=${encodeURIComponent(to)}`,
5651
5651
  ideCompareFile: (id, from, to, path) => `${API}/projects/${id}/compare/file?from=${encodeURIComponent(from)}&to=${encodeURIComponent(to)}&path=${encodeURIComponent(path)}`,
5652
5652
  ideGit: (id) => `${API}/projects/${id}/git`,
5653
+ // ADR-0121 · operasi berkas Explorer: satu path untuk buat/rename/hapus, satu untuk unggah.
5654
+ ideEntry: (id, path) => `${API}/projects/${id}/entry${path ? `?path=${encodeURIComponent(path)}` : ""}`,
5655
+ ideUpload: (id) => `${API}/projects/${id}/upload`,
5653
5656
  ideGitMerge: (id) => `${API}/projects/${id}/git/merge`,
5654
5657
  // SPEC-229 · merge git graph isolasi
5655
5658
  // SPEC-234 · status working tree (staged/unstaged) + diff satu file working tree
@@ -5677,6 +5680,9 @@ var init_api = __esm({
5677
5680
  sessionReviewFile: (id, path) => `${API}/terminal/sessions/${id}/review/${path}`,
5678
5681
  sessionIntegrate: (id) => `${API}/terminal/sessions/${id}/integrate`,
5679
5682
  terminalWs: (id) => `${API}/terminal/sessions/${id}/ws`,
5683
+ // SPEC-816 · lampiran gambar sesi (multipart). Di bawah prefix /terminal supaya ikut capability
5684
+ // `sessions` yang sudah ada — POST menurunkan cabang tulisnya tanpa perubahan peta.
5685
+ terminalAttachments: (id) => `${API}/terminal/sessions/${id}/attachments`,
5680
5686
  // SPEC-362 · ADR-0079 · riwayat sesi. Di bawah prefix /terminal supaya ikut capability
5681
5687
  // `sessions` yang sudah ada (services/agent-capabilities.ts) tanpa menambah domain baru.
5682
5688
  sessionHistory: (qs = "") => `${API}/terminal/history${qs}`,