node-jira
node-jira copied to clipboard
A nodejs wrapper for the JIRA REST API
Is that just saying "Get" an issue?
Externalizing request options Be able to set request options @ the JiraApi level, will make more flexible that package allowing it to sign in on all infra types: authenticated proxy,...
Hi, I am playing with you class & you might not defnitly play with proxy, username, passwords, & others authentication scenarios. Instead of that you should accept a requestOptions parameter...
It would be great if functions like getIssue would take an options object with fields for "fields" and "expand".
Hi I just cloned version "0.10.0" of node-jira and using it my app. After entering all of the necessary configs ``` var jira = new JiraApi('http', config.host, config.port, config.user, config.password,...
Check documentation: https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/#api/2/search Seems that the expand field is being triggered by the module, and even has defaults. Updated the code comment to reflect this, consistent with other params in...
Does this library support the query parameter "os_authType" ? Based on: https://developer.atlassian.com/docs/atlassian-platform-common-components/rest-api-development/rest-and-os_authtype Thank you.
Create a new argument in the findIssue functional for query string args allowed by the API. This remains backwards compatible so leaving out this arg when calling findIssue will revert...
I am trying to find the issue by using the library's findIssue method. But i am getting 'invalid issue number' under '2.0.alpha1' and 'null' under 2 version. I also tried...