@getlatedev/node 0.1.43 → 0.1.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -0
- package/dist/index.d.mts +1242 -1
- package/dist/index.d.ts +1242 -1
- package/dist/index.js +241 -0
- package/dist/index.mjs +241 -0
- package/package.json +1 -1
- package/src/client.ts +78 -0
- package/src/generated/sdk.gen.ts +417 -1
- package/src/generated/types.gen.ts +1298 -1
package/README.md
CHANGED
|
@@ -405,6 +405,47 @@ try {
|
|
|
405
405
|
| `validate.validatePostLength()` | Validate post character count |
|
|
406
406
|
| `validate.validateSubreddit()` | Check subreddit existence |
|
|
407
407
|
|
|
408
|
+
### WhatsApp
|
|
409
|
+
| Method | Description |
|
|
410
|
+
|--------|-------------|
|
|
411
|
+
| `whatsapp.bulkDeleteWhatsAppContacts()` | Bulk delete contacts |
|
|
412
|
+
| `whatsapp.bulkUpdateWhatsAppContacts()` | Bulk update contacts |
|
|
413
|
+
| `whatsapp.createWhatsAppBroadcast()` | Create broadcast |
|
|
414
|
+
| `whatsapp.createWhatsAppContact()` | Create contact |
|
|
415
|
+
| `whatsapp.createWhatsAppTemplate()` | Create template |
|
|
416
|
+
| `whatsapp.getWhatsAppBroadcast()` | Get broadcast |
|
|
417
|
+
| `whatsapp.getWhatsAppBroadcastRecipients()` | List recipients |
|
|
418
|
+
| `whatsapp.getWhatsAppBroadcasts()` | List broadcasts |
|
|
419
|
+
| `whatsapp.getWhatsAppBusinessProfile()` | Get business profile |
|
|
420
|
+
| `whatsapp.getWhatsAppContact()` | Get contact |
|
|
421
|
+
| `whatsapp.getWhatsAppContacts()` | List contacts |
|
|
422
|
+
| `whatsapp.getWhatsAppGroups()` | List contact groups |
|
|
423
|
+
| `whatsapp.getWhatsAppTemplate()` | Get template |
|
|
424
|
+
| `whatsapp.getWhatsAppTemplates()` | List templates |
|
|
425
|
+
| `whatsapp.updateWhatsAppBusinessProfile()` | Update business profile |
|
|
426
|
+
| `whatsapp.updateWhatsAppContact()` | Update contact |
|
|
427
|
+
| `whatsapp.updateWhatsAppTemplate()` | Update template |
|
|
428
|
+
| `whatsapp.deleteWhatsAppBroadcast()` | Delete broadcast |
|
|
429
|
+
| `whatsapp.deleteWhatsAppContact()` | Delete contact |
|
|
430
|
+
| `whatsapp.deleteWhatsAppGroup()` | Delete group |
|
|
431
|
+
| `whatsapp.deleteWhatsAppTemplate()` | Delete template |
|
|
432
|
+
| `whatsapp.addWhatsAppBroadcastRecipients()` | Add recipients |
|
|
433
|
+
| `whatsapp.cancelWhatsAppBroadcastSchedule()` | Cancel scheduled broadcast |
|
|
434
|
+
| `whatsapp.importWhatsAppContacts()` | Bulk import contacts |
|
|
435
|
+
| `whatsapp.removeWhatsAppBroadcastRecipients()` | Remove recipients |
|
|
436
|
+
| `whatsapp.renameWhatsAppGroup()` | Rename group |
|
|
437
|
+
| `whatsapp.scheduleWhatsAppBroadcast()` | Schedule broadcast |
|
|
438
|
+
| `whatsapp.sendWhatsAppBroadcast()` | Send broadcast |
|
|
439
|
+
| `whatsapp.sendWhatsAppBulk()` | Bulk send template messages |
|
|
440
|
+
|
|
441
|
+
### WhatsApp Phone Numbers
|
|
442
|
+
| Method | Description |
|
|
443
|
+
|--------|-------------|
|
|
444
|
+
| `whatsappPhoneNumbers.getWhatsAppPhoneNumber()` | Get phone number |
|
|
445
|
+
| `whatsappPhoneNumbers.getWhatsAppPhoneNumbers()` | List phone numbers |
|
|
446
|
+
| `whatsappPhoneNumbers.purchaseWhatsAppPhoneNumber()` | Purchase phone number |
|
|
447
|
+
| `whatsappPhoneNumbers.releaseWhatsAppPhoneNumber()` | Release phone number |
|
|
448
|
+
|
|
408
449
|
### Invites
|
|
409
450
|
| Method | Description |
|
|
410
451
|
|--------|-------------|
|