messaging-api-slack
Advanced tools
Comparing version 0.3.0 to 0.3.3
{ | ||
"name": "messaging-api-slack", | ||
"description": "Messaging API client for Slack", | ||
"version": "0.3.0", | ||
"version": "0.3.3", | ||
"engines": { | ||
@@ -6,0 +6,0 @@ "node": ">=6" |
@@ -55,3 +55,3 @@ # messaging-api-slack | ||
##### callMethod(method, body) - [Official docs](https://api.slack.com/methods) | ||
## `callMethod(method, body)` - [Official docs](https://api.slack.com/methods) | ||
@@ -77,3 +77,3 @@ Calling any API methods which follow [slack calling conventions](https://api.slack.com/web#basics). | ||
##### postMessage(channel, text, options?) - [Official docs](https://api.slack.com/methods/chat.postMessage) | ||
## `postMessage(channel, text, options?)` - [Official docs](https://api.slack.com/methods/chat.postMessage) | ||
@@ -107,3 +107,3 @@ Sends a message to a channel. | ||
##### getUserList(cursor?) - [Official docs](https://api.slack.com/methods/users.list) | ||
## `getUserList(cursor?)` - [Official docs](https://api.slack.com/methods/users.list) | ||
@@ -131,3 +131,3 @@ Lists all users in a Slack team. | ||
##### getAllUserList() - [Official docs](https://api.slack.com/methods/users.list) | ||
## `getAllUserList()` - [Official docs](https://api.slack.com/methods/users.list) | ||
@@ -148,3 +148,3 @@ Recursively lists all users in a Slack team using cursor. | ||
##### getUserInfo(userId) - [Official docs](https://api.slack.com/methods/users.info) | ||
## `getUserInfo(userId)` - [Official docs](https://api.slack.com/methods/users.info) | ||
@@ -172,3 +172,3 @@ Gets information about an user. | ||
##### getChannelList() - [Official docs](https://api.slack.com/methods/channels.list) | ||
## `getChannelList()` - [Official docs](https://api.slack.com/methods/channels.list) | ||
@@ -187,3 +187,3 @@ Lists all channels in a Slack team. | ||
##### getChannelInfo(channelId) - [Official docs](https://api.slack.com/methods/channels.info) | ||
## `getChannelInfo(channelId)` - [Official docs](https://api.slack.com/methods/channels.info) | ||
@@ -235,3 +235,3 @@ Gets information about a channel. | ||
##### sendRawBody(body) | ||
## `sendRawBody(body)` | ||
@@ -248,3 +248,3 @@ ###### body | ||
##### sendText(text) | ||
## `sendText(text)` | ||
@@ -261,3 +261,3 @@ ###### text | ||
##### sendAttachments(attachments) - [Official docs](https://api.slack.com/docs/message-attachments) | ||
## `sendAttachments(attachments)` - [Official docs](https://api.slack.com/docs/message-attachments) | ||
@@ -299,3 +299,3 @@ ###### attachments | ||
##### sendAttachment(attachment) - [Official docs](https://api.slack.com/docs/message-attachments) | ||
## `sendAttachment(attachment)` - [Official docs](https://api.slack.com/docs/message-attachments) | ||
@@ -302,0 +302,0 @@ ###### attachment |
36638