Skip to content

Commit

Permalink
Fix #14 Missing argument for conversations.open (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch authored Jun 19, 2024
1 parent c0faad5 commit a553f37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/client/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,7 @@ export interface ConversationsMembersRequest
export interface ConversationsOpenRequest extends SlackAPIRequest {
channel?: string;
users?: string | string[];
prevent_creation?: boolean;
return_im?: boolean;
}
export interface ConversationsRenameRequest extends SlackAPIRequest {
Expand Down
1 change: 1 addition & 0 deletions src_deno/client/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,7 @@ export interface ConversationsMembersRequest
export interface ConversationsOpenRequest extends SlackAPIRequest {
channel?: string;
users?: string | string[];
prevent_creation?: boolean;
return_im?: boolean;
}
export interface ConversationsRenameRequest extends SlackAPIRequest {
Expand Down

0 comments on commit a553f37

Please sign in to comment.