Hello, I am using Node.js version 6.0.0.
I currently have the following interface definition:
export interface ConversationTeammates {
/** The type of the object - `admin.list`. */
type: string;
/** The list of teammates who participated in the conversation (wrote at least one conversation part). */
teammates: Intercom.Reference[];
}
However, the API response returns teammates.admins instead of the expected teammates.teammates.