mrvn-cli 0.5.8 → 0.5.9

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 CHANGED
@@ -24932,11 +24932,11 @@ var JiraClient = class {
24932
24932
  return response.json();
24933
24933
  }
24934
24934
  async searchIssues(jql, maxResults = 50) {
24935
- const params = new URLSearchParams({
24935
+ return this.searchIssuesV3(
24936
24936
  jql,
24937
- maxResults: String(maxResults)
24938
- });
24939
- return this.request(`/search?${params}`);
24937
+ ["summary", "description", "status", "issuetype", "priority", "assignee", "labels", "created", "updated"],
24938
+ maxResults
24939
+ );
24940
24940
  }
24941
24941
  async searchIssuesV3(jql, fields = ["summary", "status", "issuetype", "priority", "assignee", "labels"], maxResults = 50) {
24942
24942
  const params = new URLSearchParams({
@@ -31914,7 +31914,7 @@ function createProgram() {
31914
31914
  const program = new Command();
31915
31915
  program.name("marvin").description(
31916
31916
  "AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
31917
- ).version("0.5.8");
31917
+ ).version("0.5.9");
31918
31918
  program.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
31919
31919
  await initCommand();
31920
31920
  });