feat: manage owner usage history records

This commit is contained in:
Wyndham ARR
2026-08-03 16:43:27 +08:00
parent 393b841023
commit 84443d5dba
17 changed files with 798 additions and 102 deletions

View File

@@ -127,6 +127,10 @@
...options,
method: "POST",
body: input
}),
deleteUsageRecord: (id, options = {}) => request(`usage-records/${encodeURIComponent(id)}`, {
...options,
method: "DELETE"
})
});