You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
*[#494](https://github.com/slack-ruby/slack-ruby-client/pull/494): Configure Dependabot to update GitHub Actions - [@olleolleolle](https://github.com/olleolleolle).
4
4
*[#503](https://github.com/slack-ruby/slack-ruby-client/pull/503): Update Slack API Update API from [slack-api-ref@bc545649](https://github.com/slack-ruby/slack-api-ref/commit/bc545649) - [@dblock](https://github.com/dblock).
5
+
*[#504](https://github.com/slack-ruby-client/pulls/504): Update API from [slack-api-ref@bc54564](https://github.com/slack-ruby/slack-api-ref/commit/bc54564) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot).
Copy file name to clipboardExpand all lines: bin/commands/chat.rb
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,6 @@ class App
94
94
c.flag'mrkdwn',desc: 'Disable Slack markup parsing by setting to false. Enabled by default.'
95
95
c.flag'parse',desc: 'Change how messages are treated. See below.'
96
96
c.flag'reply_broadcast',desc: 'Used in conjunction with thread_ts and indicates whether reply should be made visible to everyone in the channel or conversation. Defaults to false.'
97
-
c.flag'service_team_id',desc: 'For a message posted in App Home, Team ID corresponding to the selected app installation.'
98
97
c.flag'thread_ts',desc: "Provide another message's ts value to make this message a reply. Avoid using a reply's ts value; use its parent instead."
99
98
c.flag'unfurl_links',desc: 'Pass true to enable unfurling of primarily text-based content.'
100
99
c.flag'unfurl_media',desc: 'Pass false to disable unfurling of media content.'
@@ -108,7 +107,7 @@ class App
108
107
g.long_desc%( Schedules a message to be sent to a channel. )
109
108
g.command'scheduleMessage'do |c|
110
109
c.flag'channel',desc: 'Channel, private group, or DM channel to send message to. Can be an encoded ID, or a name. See below for more details.'
111
-
c.flag'post_at',desc: 'Unix EPOCH timestamp of time in future to send the message.'
110
+
c.flag'post_at',desc: 'Unix timestamp representing the future time the message should post to Slack.'
112
111
c.flag'attachments',desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
113
112
c.flag'blocks',desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
114
113
c.flag'text',desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
Copy file name to clipboardExpand all lines: bin/commands/conversations.rb
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,7 @@ class App
100
100
g.command'invite'do |c|
101
101
c.flag'channel',desc: 'The ID of the public or private channel to invite user(s) to.'
102
102
c.flag'users',desc: 'A comma separated list of user IDs. Up to 1000 users may be listed.'
103
+
c.flag'force',desc: 'When set to true and multiple user IDs are provided, continue inviting the valid ones while disregarding invalid IDs. Defaults to false.'
Copy file name to clipboardExpand all lines: bin/commands/team.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class App
33
33
g.desc'Gets information about the current team.'
34
34
g.long_desc%( Gets information about the current team. )
35
35
g.command'info'do |c|
36
-
c.flag'domain',desc: 'Query by domain instead of team (only when team is null). This only works for domains in the same enterprise as the querying team token. This also expects the domain to belong to a team and not the enterprise itself.'
36
+
c.flag'domain',desc: "Query by domain instead of team (only when team is null). This only works for domains in the same enterprise as the querying team token. This also expects the domain to belong to a team and not the enterprise itself. This is the value set up for the 'Joining This Workspace' workspace setting. If it contains more than one domain, the field will contain multiple comma-separated domain values. If no domain is set, the field is empty."
37
37
c.flag'team',desc: 'Team to get info about; if omitted, will return information about the current team.'
Copy file name to clipboardExpand all lines: lib/slack/web/api/endpoints/admin_apps_activities.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ module AdminAppsActivities
27
27
# The earliest timestamp of the log to retrieve (epoch microseconds).
28
28
# @option options [string] :min_log_level
29
29
# The minimum log level of the log events to be returned. Defaults to info. Acceptable values (in order of relative importance from smallest to largest) are trace, debug, info, warn, error and fatal.
30
-
# @option options [string] :sort_direction
30
+
# @option options [enum] :sort_direction
31
31
# The direction you want the data sorted by (always by timestamp).
32
32
# @option options [string] :source
33
33
# The source of log events to be returned. Acceptable values are slack and developer.
0 commit comments