@tarcisiopgs/lisa 1.0.1 → 1.0.3

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1638,7 +1638,7 @@ var TrelloSource = class {
1638
1638
  name = "trello";
1639
1639
  async fetchNextIssue(config2) {
1640
1640
  const board = await findBoardByName(config2.team);
1641
- const list = await findListByName(board.id, config2.project);
1641
+ const list = await findListByName(board.id, config2.pick_from);
1642
1642
  const label = await findLabelByName(board.id, config2.label);
1643
1643
  const cards = await trelloGet(
1644
1644
  `/lists/${list.id}/cards`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarcisiopgs/lisa",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Deterministic autonomous issue resolver — structured AI agent loop for Linear/Trello",
5
5
  "license": "MIT",
6
6
  "type": "module",