@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
12 lines (11 loc) • 384 B
TypeScript
import type { ILivechatContact } from '../livechat';
export interface IContactCreator {
verifyContact(verifyContactChannelParams: {
contactId: string;
field: string;
value: string;
visitorId: string;
roomId: string;
}): Promise<void>;
addContactEmail(contactId: ILivechatContact['_id'], email: string): Promise<ILivechatContact>;
}