Skip to content

Commit 705b90c

Browse files
committed
Travis update: Jul 2025 (Build 914)
[skip ci]
1 parent 8a94b60 commit 705b90c

91 files changed

Lines changed: 823 additions & 93 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Messente API Library
22

33
- Messente API version: 2.0.0
4-
- NPM package version: 2.3.0
4+
- NPM package version: 2.4.0
55

66
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
77

docs/AnyJsonResponse.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# MessenteApi.AnyJsonResponse
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+

docs/WhatsApp.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ Name | Type | Description | Notes
77
**validity** | **Number** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
88
**ttl** | **Number** | After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional]
99
**template** | [**WhatsAppTemplate**](WhatsAppTemplate.md) | | [optional]
10-
**text** | [**WhatsAppText**](WhatsAppText.md) | | [optional]
1110
**channel** | **String** | The channel used to deliver the message | [optional] [default to 'whatsapp']
11+
**text** | [**WhatsAppText**](WhatsAppText.md) | | [optional]
12+
**image** | [**WhatsAppImage**](WhatsAppImage.md) | | [optional]
13+
**video** | [**WhatsAppVideo**](WhatsAppVideo.md) | | [optional]
14+
**audio** | [**WhatsAppAudio**](WhatsAppAudio.md) | | [optional]
15+
**document** | [**WhatsAppDocument**](WhatsAppDocument.md) | | [optional]
16+
**sticker** | [**WhatsAppSticker**](WhatsAppSticker.md) | | [optional]
1217

1318

1419
<a name="ChannelEnum"></a>

docs/WhatsAppAudio.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# MessenteApi.WhatsAppAudio
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **String** | Unique identifier for the audio file. | [optional]
7+
**mime_type** | **String** | MIME type of the audio file. | [optional]
8+
**link** | **String** | URL link to the audio file. | [optional]
9+
10+

docs/WhatsAppDocument.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# MessenteApi.WhatsAppDocument
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **String** | Unique identifier for the document file. | [optional]
7+
**caption** | **String** | Caption for the document. | [optional]
8+
**mime_type** | **String** | MIME type of the document file. | [optional]
9+
**file_name** | **String** | Name of the document file. | [optional]
10+
**link** | **String** | URL link to the document file. | [optional]
11+
12+

docs/WhatsAppImage.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MessenteApi.WhatsAppImage
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **String** | Unique identifier for the image file. | [optional]
7+
**caption** | **String** | Caption for the image. | [optional]
8+
**mime_type** | **String** | MIME type of the image file. | [optional]
9+
**link** | **String** | URL link to the image file. | [optional]
10+
11+

docs/WhatsAppSticker.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MessenteApi.WhatsAppSticker
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **String** | Unique identifier for the sticker file. | [optional]
7+
**mime_type** | **String** | MIME type of the sticker file. | [optional]
8+
**animated** | **Boolean** | Indicates whether the sticker is animated. | [optional]
9+
**link** | **String** | URL link to the sticker file. | [optional]
10+
11+

docs/WhatsAppVideo.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MessenteApi.WhatsAppVideo
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **String** | Unique identifier for the video file. | [optional]
7+
**caption** | **String** | Caption for the video. | [optional]
8+
**mime_type** | **String** | MIME type of the video file. | [optional]
9+
**link** | **String** | URL link to the video file. | [optional]
10+
11+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "messente_api",
3-
"version": "2.3.0",
3+
"version": "2.4.0",
44
"description": "Send and receive SMS, Viber, Telegram and WhatsApp messages, blacklist phone numbers to make sure you're not sending any unwanted messages, manage contacts and groups.",
55
"license": "Apache-2.0",
66
"main": "src/index.js",

src/ApiClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
/**
3535
* @module ApiClient
36-
* @version 2.3.0
36+
* @version 2.4.0
3737
*/
3838

3939
/**

0 commit comments

Comments
 (0)