Skip to content

Commit

Permalink
Merge pull request #763 from slackapi/fix-broken-links
Browse files Browse the repository at this point in the history
Fix broken links in README and main documentation page
  • Loading branch information
aoberoi committed Apr 11, 2019
2 parents 19db04b + 3a32c51 commit 961f9d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,7 @@ walk you through building your first Slack app using Node.js.
| Events API | Listen for incoming messages and [many other events](https://api.slack.com/events) happening in Slack, using a URL. | [`@slack/events-api`](https://slack.dev/node-slack-sdk/events-api) |
| Interactive Messages | Respond to button clicks, dialogs, and other interactions with messages. | [`@slack/interactive-messages`](https://slack.dev/node-slack-sdk/interactive-messages) |
| RTM API | Listen for incoming messages and a limited set of events happening in Slack, using websockets. | [`@slack/rtm-api`](https://slack.dev/node-slack-sdk/rtm-api) |
| Incoming Webhooks | Send notifications to a single channel which the user picks on installation. | [`@slack/webhook`](https://slack.dev/node-slack-sdk/incoming_webhook) |
| Incoming Webhooks | Send notifications to a single channel which the user picks on installation. | [`@slack/webhook`](https://slack.dev/node-slack-sdk/webhook) |

**Not sure about which APIs are right for your app?** Read our [blog
post](https://medium.com/slack-developer-blog/getting-started-with-slacks-apis-f930c73fc889) that explains the options.
Expand Down
6 changes: 3 additions & 3 deletions docs/_main/index.md
Expand Up @@ -20,10 +20,10 @@ walk you through building your first Slack app using Node.js.
| Slack API | What its for | NPM Package |
|--------------|--------------|-------------------|
| Web API | Send data to or query data from Slack using any of [over 130 methods](https://api.slack.com/methods). | [`@slack/web-api`](https://slack.dev/node-slack-sdk/web-api) |
| Events API | Listen for incoming messages and [many other events](https://api.slack.com/events) happening in Slack, using a URL. | [`@slack/events-api`](https://slack.dev/node-slack-sdk/events_api) |
| Interactive Messages | Respond to button clicks, dialogs, and other interactions with messages. | [`@slack/interactive-messages`](https://slack.dev/node-slack-sdk/interactive_messages) |
| Events API | Listen for incoming messages and [many other events](https://api.slack.com/events) happening in Slack, using a URL. | [`@slack/events-api`](https://slack.dev/node-slack-sdk/events-api) |
| Interactive Messages | Respond to button clicks, dialogs, and other interactions with messages. | [`@slack/interactive-messages`](https://slack.dev/node-slack-sdk/interactive-messages) |
| RTM API | Listen for incoming messages and a limited set of events happening in Slack, using websockets. | [`@slack/rtm-api`](https://slack.dev/node-slack-sdk/rtm-api) |
| Incoming Webhooks | Send notifications to a single channel which the user picks on installation. | [`@slack/webhook`](https://slack.dev/node-slack-sdk/incoming_webhook) |
| Incoming Webhooks | Send notifications to a single channel which the user picks on installation. | [`@slack/webhook`](https://slack.dev/node-slack-sdk/webhook) |

**Not sure about which APIs are right for your app?** Read our [blog
post](https://medium.com/slack-developer-blog/getting-started-with-slacks-apis-f930c73fc889) that explains the options.
Expand Down
4 changes: 2 additions & 2 deletions packages/web-api/src/methods.ts
Expand Up @@ -77,7 +77,7 @@ export interface BotsInfoArguments extends WebAPICallOptions, TokenOverridable
/*
* `channels.*`
*/
export interface ChannelsArchiveArguments extends TokenOverridable {
export interface ChannelsArchiveArguments extends WebAPICallOptions, TokenOverridable {
channel: string;
}

Expand Down Expand Up @@ -491,7 +491,7 @@ export interface MPIMRepliesArguments extends WebAPICallOptions, TokenOverridabl
/*
* `oauth.*`
*/
export interface OAuthAccessArguments {
export interface OAuthAccessArguments extends WebAPICallOptions {
client_id: string;
client_secret: string;
code: string;
Expand Down

0 comments on commit 961f9d8

Please sign in to comment.