-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(node): Fixing chat missing in events interface (#5661)
* adding chat to overrides interface * feat(providers): adding mobishastra sms provider * fix(node): remove code unrelated to fix * fix(node): Add missing 'chat' property to ITriggerOverrides interface * fix(events): Add 'whatsapp' property to ITriggerOverrides interface * refactor(events): Update IWhatsappOverrides interface to use IWhatsappComponent type
- Loading branch information
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
packages/providers/src/lib/whatsapp-business/consts/whatsapp-business.enum.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
export enum WhatsAppMessageTypeEnum { | ||
TEMPLATE = 'template', | ||
TEXT = 'text', | ||
INTERACTIVE = 'interactive', | ||
IMAGE = 'image', | ||
DOCUMENT = 'document', | ||
VIDEO = 'video', | ||
AUDIO = 'audio', | ||
LOCATION = 'location', | ||
CONTACTS = 'contacts', | ||
STICKER = 'sticker', | ||
} |