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.
- package/dist/build-info.json +3 -3
- package/dist/cli.js +6 -0
- package/dist/server.js +754 -495
- package/package.json +1 -1
- package/web/assets/{index-TRbs6vrh.css → index-ChXVk9Y2.css} +1 -1
- package/web/assets/{index-B7aHqLDK.js → index-CzdyLXKP.js} +1544 -1541
- package/web/index.html +2 -2
package/dist/build-info.json
CHANGED
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}`,
|