Skip to content

Commit 6b854b1

Browse files
Merge pull request #11 from messente/travis
1.4.1
2 parents c1782e6 + b8d7d14 commit 6b854b1

66 files changed

Lines changed: 147 additions & 120 deletions

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Messente API Library
22

3-
- Messente API version: 1.4.0
4-
- NPM package version: 1.4.0
3+
- Messente API version: 2.0.0
4+
- NPM package version: 1.4.1
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/NumbersToInvestigate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**numbers** | **[String]** | Array of phone numbers |
6+
**numbers** | **[String]** | A list of phone numbers. Max 10 numbers per request |
77

88

docs/SMS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**text** | **String** | Text content of the SMS |
77
**sender** | **String** | Phone number or alphanumeric sender name | [optional]
8-
**validity** | **Number** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
8+
**validity** | **Number** | After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional]
9+
**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]
910
**autoconvert** | **String** | Defines how non-GSM characters will be treated: - \"on\" Use replacement settings from the account's [API Auto Replace settings page](https://dashboard.messente.com/api-settings/auto-replace) (default) - \"full\" All non GSM 03.38 characters will be replaced with suitable alternatives - \"off\" Message content is not modified in any way | [optional]
1011
**udh** | **String** | hex-encoded string containing SMS UDH | [optional]
1112
**channel** | **String** | The channel used to deliver the message | [optional] [default to 'sms']

docs/Viber.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**sender** | **String** | Phone number or alphanumeric sender name | [optional]
7-
**validity** | **Number** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
7+
**validity** | **Number** | After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional]
8+
**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]
89
**text** | **String** | Plaintext content for Viber | [optional]
910
**imageUrl** | **String** | URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text | [optional]
1011
**buttonUrl** | **String** | URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) | [optional]

docs/WhatsApp.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**sender** | **String** | Phone number or alphanumeric sender name | [optional]
77
**validity** | **Number** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
8+
**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]
89
**text** | [**WhatsAppText**](WhatsAppText.md) | | [optional]
910
**image** | [**WhatsAppImage**](WhatsAppImage.md) | | [optional]
1011
**document** | [**WhatsAppDocument**](WhatsAppDocument.md) | | [optional]

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": "1.4.0",
3+
"version": "1.4.1",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Messente API
33
* [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.
44
*
5-
* OpenAPI spec version: 1.4.0
5+
* OpenAPI spec version: 2.0.0
66
* Contact: messente@messente.com
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
3333

3434
/**
3535
* @module ApiClient
36-
* @version 1.4.0
36+
* @version 1.4.1
3737
*/
3838

3939
/**

src/api/BlacklistApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Messente API
33
* [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.
44
*
5-
* OpenAPI spec version: 1.4.0
5+
* OpenAPI spec version: 2.0.0
66
* Contact: messente@messente.com
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
3434
/**
3535
* Blacklist service.
3636
* @module api/BlacklistApi
37-
* @version 1.4.0
37+
* @version 1.4.1
3838
*/
3939

4040
/**

src/api/ContactsApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Messente API
33
* [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.
44
*
5-
* OpenAPI spec version: 1.4.0
5+
* OpenAPI spec version: 2.0.0
66
* Contact: messente@messente.com
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
3434
/**
3535
* Contacts service.
3636
* @module api/ContactsApi
37-
* @version 1.4.0
37+
* @version 1.4.1
3838
*/
3939

4040
/**

src/api/DeliveryReportApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Messente API
33
* [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.
44
*
5-
* OpenAPI spec version: 1.4.0
5+
* OpenAPI spec version: 2.0.0
66
* Contact: messente@messente.com
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
3434
/**
3535
* DeliveryReport service.
3636
* @module api/DeliveryReportApi
37-
* @version 1.4.0
37+
* @version 1.4.1
3838
*/
3939

4040
/**

0 commit comments

Comments
 (0)