hanoman 0.1.39 → 0.1.40
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 +4 -0
- package/dist/server.js +471 -205
- package/package.json +1 -1
- package/prisma/migrations/20260815120000_sync_tombstone/migration.sql +14 -0
- package/prisma/schema.prisma +26 -0
- package/web/assets/{index-DeGA9N3Z.css → index-BeFLNV7l.css} +1 -1
- package/web/assets/{index-BzBNb9qp.js → index-zZ7g98st.js} +1547 -1546
- package/web/index.html +2 -2
package/dist/build-info.json
CHANGED
package/dist/cli.js
CHANGED
|
@@ -5753,6 +5753,8 @@ var init_api = __esm({
|
|
|
5753
5753
|
syncNow: `${API}/sync/now`,
|
|
5754
5754
|
// SPEC-270 · ADR-0067 · antrean konflik rekonsil (cookie-authed)
|
|
5755
5755
|
syncConflicts: `${API}/sync/conflicts`,
|
|
5756
|
+
// SPEC-799 · ADR-0119 · penghapusan yang menunggu jendela online (cookie-only, cermin syncNow).
|
|
5757
|
+
syncPending: `${API}/sync/pending`,
|
|
5756
5758
|
syncConflictResolve: (entity, recordId) => `${API}/sync/conflicts/${encodeURIComponent(entity)}/${encodeURIComponent(recordId)}/resolve`,
|
|
5757
5759
|
// SPEC-257 · ADR-0065 · agent token (kelola cookie-only) + katalog capability
|
|
5758
5760
|
agentTokens: `${API}/agent-tokens`,
|
|
@@ -29187,11 +29189,13 @@ var init_migrate_pg = __esm({
|
|
|
29187
29189
|
"VpsItemState",
|
|
29188
29190
|
"SessionResult",
|
|
29189
29191
|
"SessionHistory",
|
|
29192
|
+
// SPEC-799 · ADR-0119 · SyncTombstone LOCAL-only, tanpa FK; letaknya bersama tabel sync lain.
|
|
29190
29193
|
"SyncLog",
|
|
29191
29194
|
"LocalBinding",
|
|
29192
29195
|
"SyncOutbox",
|
|
29193
29196
|
"SyncState",
|
|
29194
29197
|
"SyncConflict",
|
|
29198
|
+
"SyncTombstone",
|
|
29195
29199
|
// SPEC-485 · ADR-0102 · LeadFlow SEBELUM LeadDecision: `flowId` menunjuk ke sana. Tanpa FK, tapi
|
|
29196
29200
|
// urutan tabel harus tetap mencerminkan arah tautannya bagi pembaca berikutnya.
|
|
29197
29201
|
// SPEC-646 · ADR-0112 · SchedulerCron SEBELUM SchedulerCronRun: `cronId` menunjuk ke sana. Tanpa
|