import type { NotificationConfig } from "~/schemas/notifications"; export const buildTelegramShoutrrrUrl = (config: Extract) => { let shoutrrrUrl = `telegram://${config.botToken}@telegram?channels=${config.chatId}`; if (config.threadId) { shoutrrrUrl += `:${config.threadId}`; } return shoutrrrUrl; };