import defineApp from '../../helpers/define-app'; import addAuthHeader from './common/add-auth-header'; import auth from './auth'; import actions from './actions'; export default defineApp({ name: 'Telegram', key: 'telegram-bot', iconUrl: '{BASE_URL}/apps/telegram-bot/assets/favicon.svg', authDocUrl: 'https://automatisch.io/docs/apps/telegram-bot/connection', supportsConnections: true, baseUrl: 'https://telegram.org', apiBaseUrl: 'https://api.telegram.org', primaryColor: '2AABEE', beforeRequest: [addAuthHeader], auth, actions, });