export interface IFacebookChannel { token: string; pageId: string; pageName: string; } export interface IWhatsAppChannel { phoneNumber: string; url: string; } export interface IChannel { type: 'whatsapp' | 'facebook' | 'web-messenger' | 'twilio' | 'messagebird' | 'telegram' | 'twitter' | 'line' | 'mailgun' | 'wechat' | 'viber' | 'apple' | 'instagram' | 'smooch' | 'in-app' | 'web-chat'; config?: IWhatsAppChannel | IFacebookChannel; channelId: string; url: string; }