Skip to content

Commit

Permalink
Merge pull request #506 from stevengill/callsApi
Browse files Browse the repository at this point in the history
updated incorrect callRejectedEvent type name
  • Loading branch information
stevengill authored May 27, 2020
2 parents ca63084 + 13bd93c commit d3ab479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/events/base-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type SlackEvent =
| AppHomeOpenedEvent
| AppMentionEvent
| AppUninstalledEvent
| CallsRejectedEvent
| CallRejectedEvent
| ChannelArchiveEvent
| ChannelCreatedEvent
| ChannelDeletedEvent
Expand Down Expand Up @@ -160,8 +160,8 @@ export interface AppUninstalledEvent extends StringIndexed {
type: 'app_uninstalled';
}

export interface CallsRejectedEvent extends StringIndexed {
type: 'calls_rejected';
export interface CallRejectedEvent extends StringIndexed {
type: 'call_rejected';
call_id: string;
user_id: string;
channel_id: string;
Expand Down

0 comments on commit d3ab479

Please sign in to comment.