@rudderhq/cli 0.3.4-canary.1 → 0.3.4-canary.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.
package/dist/index.js CHANGED
@@ -11545,7 +11545,10 @@ function buildIssueListPath(orgId, opts, searchQuery) {
11545
11545
  if (opts.status) params.set("status", opts.status);
11546
11546
  if (opts.assigneeAgentId) params.set("assigneeAgentId", opts.assigneeAgentId);
11547
11547
  if (opts.projectId) params.set("projectId", opts.projectId);
11548
- if (searchQuery?.trim()) params.set("q", searchQuery.trim());
11548
+ if (searchQuery?.trim()) {
11549
+ params.set("q", searchQuery.trim());
11550
+ params.set("searchFields", "title,description,comment");
11551
+ }
11549
11552
  const query = params.toString();
11550
11553
  return `/api/orgs/${orgId}/issues${query ? `?${query}` : ""}`;
11551
11554
  }