rocketchat-node icon indicating copy to clipboard operation
rocketchat-node copied to clipboard

:rocket: rocket-chat node api

Results 15 rocketchat-node issues
Sort by recently updated
recently updated
newest added

TypeScript declarations wanted, for better development with TypeScript.

` rocketChatClient.authentication.login('username', 'password', function(err, body) { if(err) console.log(err); else console.log(body); //BAD REQUEST rocketChatClient.channels.history('roomIdNumber', {}, function(err, body) { if(err) console.log(err); else console.log(body); }); }); ` Maybe I'm doing this wrong? Login...

Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 1.0.0 to 5.0.0. Release notes Sourced from https-proxy-agent's releases. 5.0.0 Major Changes Refactor to TypeScript: #95 4.0.0 Major Changes Set "engines" requirement to node 6.0.0: #82 Update...

dependencies

Bumps [ws](https://github.com/websockets/ws) from 2.3.1 to 7.2.0. Release notes *Sourced from [ws's releases](https://github.com/websockets/ws/releases).* > ## 7.2.0 > # Features > > - Added ability to specify the `readableObjectMode` option when using...

dependencies

Bumps [eslint](https://github.com/eslint/eslint) from 3.19.0 to 4.19.1. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v4.19.1 > * 3ff5d11 Fix: no-invalid-regexp not understand variable for flags (fixes [#10112](https://github-redirect.dependabot.com/eslint/eslint/issues/10112)) ([#10113](https://github-redirect.dependabot.com/eslint/eslint/issues/10113)) (薛定谔的猫) >...

dependencies

The optional "useragent" parameter has been added to the connection parameters. In my network, Cisco ChekPoint requires its presence in requests. Added method selection (ws/wss) for net.wsClient depending on the...

Hi, i'm trying to create a user and set a custom field, like the twitter account or something like that but it doesn't seems to work. Any problem in my...

Routes in question: - https://rocket.chat/docs/developer-guides/rest-api/channels/delete/ - https://rocket.chat/docs/developer-guides/rest-api/groups/delete/ ~~Test cases included as well :)~~ Edit: still have to fix test cases

``` this.login = function (username, password, callback) { var self = this; this.rocketChatClient.authentication.login(username, password, function (err, body) { self.token = body.data; callback(null, body); }); }; ``` no handle error !!!...