paisa-mcp 0.0.5 → 0.0.6
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/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45261,7 +45261,7 @@ async function runRescan(client) {
|
|
|
45261
45261
|
const persons = (personsRes.data ?? []).filter((p2) => p2.name);
|
|
45262
45262
|
const allRows = [];
|
|
45263
45263
|
let offset = 0;
|
|
45264
|
-
const limit =
|
|
45264
|
+
const limit = 200;
|
|
45265
45265
|
while (true) {
|
|
45266
45266
|
const res = await client.get("/api/transactions", { limit, offset });
|
|
45267
45267
|
const rows = res.data ?? [];
|
|
@@ -45555,5 +45555,5 @@ main().catch((err) => {
|
|
|
45555
45555
|
process.exit(1);
|
|
45556
45556
|
});
|
|
45557
45557
|
|
|
45558
|
-
//# debugId=
|
|
45558
|
+
//# debugId=557FA489B90AB7D964756E2164756E21
|
|
45559
45559
|
//# sourceMappingURL=index.js.map
|