latinfo 0.20.3 → 0.20.5

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4261,7 +4261,14 @@ async function tasksCmd(args) {
4261
4261
  }
4262
4262
  console.log('\n BOUNTY BOARD\n');
4263
4263
  for (const b of bounties) {
4264
- console.log(` [#${b.id}] ${String(b.points).padStart(3)} pts ${b.title}`);
4264
+ if (b.status === 'open') {
4265
+ console.log(` [#${b.id}] ${String(b.points).padStart(3)} pts ${b.title}`);
4266
+ }
4267
+ else {
4268
+ const who = b.assignee_username || '?';
4269
+ const st = b.status === 'completed' ? 'REVIEW' : 'TAKEN';
4270
+ console.log(` [#${b.id}] ${String(b.points).padStart(3)} pts ${b.title} --- ${st} @${who}`);
4271
+ }
4265
4272
  }
4266
4273
  console.log(`\n Claim one: latinfo tasks claim <id>\n`);
4267
4274
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "latinfo",
3
- "version": "0.20.3",
3
+ "version": "0.20.5",
4
4
  "description": "Tax registry & procurement API for Latin America. Query RUC, DNI, NIT, licitaciones from Peru & Colombia. Offline MPHF search, full OCDS data, updated daily.",
5
5
  "homepage": "https://latinfo.dev",
6
6
  "repository": {