whatsapp-business
Version:
Node.js connector for the WhatsApp Business APIs with TypeScript support, integration tests and more.
17 lines (16 loc) • 755 B
TypeScript
export type BusinessVertical = "UNDEFINED" | "OTHER" | "AUTO" | "BEAUTY" | "APPAREL" | "EDU" | "ENTERTAIN" | "EVENT_PLAN" | "FINANCE" | "GROCERY" | "GOVT" | "HOTEL" | "HEALTH" | "NONPROFIT" | "PROF_SERVICES" | "RETAIL" | "TRAVEL" | "RESTAURANT" | "NOT_A_BIZ";
export type BusinessProfileFields = {
messaging_product: string;
address: string;
description: string;
vertical: BusinessVertical;
email: string;
websites: string[];
profile_picture_url: string;
id: string;
};
export type BusinessProfile = {
data: BusinessProfileFields[];
};
export type BusinessProfileFieldsQuery = (keyof BusinessProfileFields)[];
export type UpdateBusinessProfilePayload = Partial<Omit<BusinessProfileFields, "messaging_product" | "id">>;