UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

40 lines (39 loc) 2.13 kB
import type * as Intercom from "../index.js"; /** * The type of the conversation part that started this conversation. Can be Contact, Admin, Campaign, Automated or Operator initiated. */ export interface ConversationSource { /** This includes conversation, email, facebook, instagram, phone_call, phone_switch, push, sms, twitter and whatsapp. */ type?: ConversationSource.Type; /** The id representing the message. */ id?: string; /** The conversation's initiation type. Possible values are customer_initiated, campaigns_initiated (legacy campaigns), operator_initiated (Custom bot), automated (Series and other outbounds with dynamic audience message) and admin_initiated (fixed audience message, ticket initiated by an admin, group email). */ delivered_as?: string; /** Optional. The message subject. For Twitter, this will show a generic message regarding why the subject is obscured. */ subject?: string; /** The message body, which may contain HTML. For Twitter, this will show a generic message regarding why the body is obscured. */ body?: string; author?: Intercom.ConversationPartAuthor; /** A list of attachments for the part. */ attachments?: Intercom.PartAttachment[]; /** The URL where the conversation was started. For Twitter, Email, and Bots, this will be blank. */ url?: string; /** Whether or not the source message has been redacted. Only applicable for contact initiated messages. */ redacted?: boolean; } export declare namespace ConversationSource { /** This includes conversation, email, facebook, instagram, phone_call, phone_switch, push, sms, twitter and whatsapp. */ const Type: { readonly Conversation: "conversation"; readonly Email: "email"; readonly Facebook: "facebook"; readonly Instagram: "instagram"; readonly PhoneCall: "phone_call"; readonly PhoneSwitch: "phone_switch"; readonly Push: "push"; readonly Sms: "sms"; readonly Twitter: "twitter"; readonly Whatsapp: "whatsapp"; }; type Type = (typeof Type)[keyof typeof Type]; }