chatwoot-develop/enterprise/app/services/captain/tools/definitions.rb

23 lines
537 B
Ruby

module Captain
module Tools
class Definitions
ALL = {
'status_suites' => {
type: :http,
method: :get,
url: 'https://oxpi.com.br/api/PlugPlay/api/SuitesStatus',
description: 'Check suite availability'
},
'maria_fotos' => {
type: :webhook,
description: 'Send photos via webhook'
},
'escalar_humano' => {
type: :webhook,
description: 'Escalate to human agent'
}
}.freeze
end
end
end