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 +5 -5
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +4 -4
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +5 -5
- package/dist/marvin.js.map +1 -1
- package/package.json +1 -1
package/dist/marvin-serve.js
CHANGED
|
@@ -19060,11 +19060,11 @@ var JiraClient = class {
|
|
|
19060
19060
|
return response.json();
|
|
19061
19061
|
}
|
|
19062
19062
|
async searchIssues(jql, maxResults = 50) {
|
|
19063
|
-
|
|
19063
|
+
return this.searchIssuesV3(
|
|
19064
19064
|
jql,
|
|
19065
|
-
|
|
19066
|
-
|
|
19067
|
-
|
|
19065
|
+
["summary", "description", "status", "issuetype", "priority", "assignee", "labels", "created", "updated"],
|
|
19066
|
+
maxResults
|
|
19067
|
+
);
|
|
19068
19068
|
}
|
|
19069
19069
|
async searchIssuesV3(jql, fields = ["summary", "status", "issuetype", "priority", "assignee", "labels"], maxResults = 50) {
|
|
19070
19070
|
const params = new URLSearchParams({
|