lib/slack/web/api/endpoints/search.rb
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake module Slack module Web module Api module Endpoints module Search # # Searches for messages and files matching a query. # # @option options [Object] :query # Search query. May contains booleans, etc. # @option options [Object] :highlight # Pass a value of true to enable query highlight markers (see below). # @option options [Object] :sort # Return matches sorted by either score or timestamp. # @option options [Object] :sort_dir # Change sort direction to ascending (asc) or descending (desc). # @option options [Object] :team_id # encoded team id to search in, required if org token is used. # @see https://api.slack.com/methods/search.all # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/search/search.all.json def search_all(options = {}) throw ArgumentError.new('Required arguments :query missing') if options[:query].nil? post('search.all', options) end # # Searches for files matching a query. # # @option options [Object] :query # Search query. # @option options [Object] :highlight # Pass a value of true to enable query highlight markers (see below). # @option options [Object] :sort # Return matches sorted by either score or timestamp. # @option options [Object] :sort_dir # Change sort direction to ascending (asc) or descending (desc). # @option options [Object] :team_id # encoded team id to search in, required if org token is used. # @see https://api.slack.com/methods/search.files # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/search/search.files.json def search_files(options = {}) throw ArgumentError.new('Required arguments :query missing') if options[:query].nil? post('search.files', options) end # # Searches for messages matching a query. # # @option options [Object] :query # Search query. # @option options [Object] :highlight # Pass a value of true to enable query highlight markers (see below). # @option options [Object] :sort # Return matches sorted by either score or timestamp. # @option options [Object] :sort_dir # Change sort direction to ascending (asc) or descending (desc). # @option options [Object] :team_id # encoded team id to search in, required if org token is used. # @see https://api.slack.com/methods/search.messages # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/search/search.messages.json def search_messages(options = {}) throw ArgumentError.new('Required arguments :query missing') if options[:query].nil? post('search.messages', options) end end end end end end