@zernio/node 0.2.187 → 0.2.189
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 +20 -0
- package/dist/index.d.mts +501 -16
- package/dist/index.d.ts +501 -16
- package/dist/index.js +95 -1
- package/dist/index.mjs +95 -1
- package/package.json +1 -1
- package/src/client.ts +36 -0
- package/src/generated/sdk.gen.ts +190 -1
- package/src/generated/types.gen.ts +526 -15
package/README.md
CHANGED
|
@@ -617,6 +617,19 @@ try {
|
|
|
617
617
|
| `whatsapp.sendWhatsAppConversion()` | Send WhatsApp conversion event |
|
|
618
618
|
| `whatsapp.uploadWhatsAppProfilePhoto()` | Upload profile picture |
|
|
619
619
|
|
|
620
|
+
### WhatsApp Calling
|
|
621
|
+
| Method | Description |
|
|
622
|
+
|--------|-------------|
|
|
623
|
+
| `whatsappCalling.listWhatsAppCalls()` | List call history for an account |
|
|
624
|
+
| `whatsappCalling.getWhatsAppCall()` | Get a single call |
|
|
625
|
+
| `whatsappCalling.getWhatsAppCallEstimate()` | Estimate per-minute cost for a destination |
|
|
626
|
+
| `whatsappCalling.getWhatsAppCallingConfig()` | Get calling config for an account |
|
|
627
|
+
| `whatsappCalling.getWhatsAppCallPermissions()` | Check call permission for a consumer |
|
|
628
|
+
| `whatsappCalling.updateWhatsAppCalling()` | Update calling config |
|
|
629
|
+
| `whatsappCalling.disableWhatsAppCalling()` | Disable calling on a number |
|
|
630
|
+
| `whatsappCalling.enableWhatsAppCalling()` | Enable calling on a number |
|
|
631
|
+
| `whatsappCalling.initiateWhatsAppCall()` | Initiate outbound call |
|
|
632
|
+
|
|
620
633
|
### WhatsApp Flows
|
|
621
634
|
| Method | Description |
|
|
622
635
|
|--------|-------------|
|
|
@@ -643,6 +656,13 @@ try {
|
|
|
643
656
|
| `whatsappPhoneNumbers.purchaseWhatsAppPhoneNumber()` | Purchase phone number |
|
|
644
657
|
| `whatsappPhoneNumbers.releaseWhatsAppPhoneNumber()` | Release phone number |
|
|
645
658
|
|
|
659
|
+
### WhatsApp Sandbox
|
|
660
|
+
| Method | Description |
|
|
661
|
+
|--------|-------------|
|
|
662
|
+
| `whatsappSandbox.listWhatsAppSandboxSessions()` | List your sandbox sessions |
|
|
663
|
+
| `whatsappSandbox.createWhatsAppSandboxSession()` | Start a sandbox activation for a phone |
|
|
664
|
+
| `whatsappSandbox.deleteWhatsAppSandboxSession()` | Revoke a sandbox session |
|
|
665
|
+
|
|
646
666
|
### WhatsApp Templates
|
|
647
667
|
| Method | Description |
|
|
648
668
|
|--------|-------------|
|