UNPKG

whatsapp-business-serverless

Version:

Connector for the WhatsApp Business APIs with TypeScript support. Serverless version.

17 lines (16 loc) 429 B
export type RegisterPhonePayload = { messaging_product: "whatsapp"; /** * A 6-digit pin you have previously set up */ pin: string; }; export type RegisterPhoneArgs = Omit<RegisterPhonePayload, "messaging_product"> & { phoneNumberId: string; }; export type SetUpTwoFactorAuthPayload = { pin: string; }; export type SetUpTwoFactorAuthArgs = SetUpTwoFactorAuthPayload & { phoneNumberId: string; };