Raymond Bernardo
Raymond Bernardo
rewriting in typescript?
I good place to start would be the following: - Change `Jira.js` to `Jira.ts` and update the build npm script to use typescript (tsc) - Add input `Interface`s for the...
I'm under the impression that it's intended to be passed as a string since the jsdoc indicates that here: https://github.com/jira-node/node-jira-client/blob/9dc7c187271077dc98ff316fbd9e4b9dbb271508/src/jira.js#L1852
A few other notes here. You will need to use `sql.toString()` to convert the buffer returned from `readFile` to a string. ``` function up() { return fs.readFile('up.sql').then(sql => sequelize.query(sql.toString())) }...
@udovichenko > But if I have the semicolons inside my data values, then I get an error after trying to split the dump file by semicolon symbol. Any idea how...
Similar issue to #396 and #433
Hey @adamk72, thank you for the detailed description. If you get it working the way you expect then feel free to open an MR or post the solution here! I...
Are there any features that axios gives us that are currently not implemented with `postman-request`?
That makes sense to me. We recently switched to `postman-request` since its a fork of the original `request` library (#331). I've used `axios` a lot and believe it would be...
It might be a good idea to setup a free jira organization and create some integration tests against it