Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@@ -14,3 +14,8 @@ export const reopenReceivableMe = async (id) => {
const { data } = await api.post(`/unit-receivable/me/${id}/reopen`);
return data.payload;
};
+
+export const chargeReceivableMe = async (id) => {
+ const { data } = await api.post(`/unit-receivable/me/${id}/charge`);
+ return data.payload;
+};