Skip to content

Commit b315aa3

Browse files
Merge pull request #15 from messente/travis
1.4.2
2 parents 154abca + 2de5e38 commit b315aa3

Some content is hidden

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

69 files changed

+171
-85
lines changed

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-
- Python package version: 1.4.1
3+
- Messente API version: 2.0.0
4+
- Python package version: 1.4.2
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
@@ -4,7 +4,7 @@ A container for phone numbers
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**numbers** | **list[str]** | Array of phone numbers |
7+
**numbers** | **list[str]** | A list of phone numbers. Max 10 numbers per request |
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

docs/SMS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**text** | **str** | Text content of the SMS |
88
**sender** | **str** | Phone number or alphanumeric sender name | [optional]
9-
**validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
9+
**validity** | **int** | 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]
10+
**ttl** | **int** | 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]
1011
**autoconvert** | **str** | 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]
1112
**udh** | **str** | hex-encoded string containing SMS UDH | [optional]
1213
**channel** | **str** | 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
@@ -5,7 +5,8 @@ Viber message content
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**sender** | **str** | Phone number or alphanumeric sender name | [optional]
8-
**validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
8+
**validity** | **int** | 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** | **int** | 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
**text** | **str** | Plaintext content for Viber | [optional]
1011
**image_url** | **str** | URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text | [optional]
1112
**button_url** | **str** | 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
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**sender** | **str** | Phone number or alphanumeric sender name | [optional]
88
**validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
9+
**ttl** | **int** | 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
**text** | [**WhatsAppText**](WhatsAppText.md) | | [optional]
1011
**image** | [**WhatsAppImage**](WhatsAppImage.md) | | [optional]
1112
**document** | [**WhatsAppDocument**](WhatsAppDocument.md) | | [optional]

messente_api/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
[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. # noqa: E501
99
10-
The version of the OpenAPI document: 1.4.0
10+
The version of the OpenAPI document: 2.0.0
1111
Contact: messente@messente.com
1212
Generated by: https://openapi-generator.tech
1313
"""
1414

1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "1.4.1"
18+
__version__ = "1.4.2"
1919

2020
# import apis into sdk package
2121
from messente_api.api.blacklist_api import BlacklistApi

messente_api/api/blacklist_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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. # noqa: E501
77
8-
The version of the OpenAPI document: 1.4.0
8+
The version of the OpenAPI document: 2.0.0
99
Contact: messente@messente.com
1010
Generated by: https://openapi-generator.tech
1111
"""

messente_api/api/contacts_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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. # noqa: E501
77
8-
The version of the OpenAPI document: 1.4.0
8+
The version of the OpenAPI document: 2.0.0
99
Contact: messente@messente.com
1010
Generated by: https://openapi-generator.tech
1111
"""

messente_api/api/delivery_report_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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. # noqa: E501
77
8-
The version of the OpenAPI document: 1.4.0
8+
The version of the OpenAPI document: 2.0.0
99
Contact: messente@messente.com
1010
Generated by: https://openapi-generator.tech
1111
"""

messente_api/api/groups_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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. # noqa: E501
77
8-
The version of the OpenAPI document: 1.4.0
8+
The version of the OpenAPI document: 2.0.0
99
Contact: messente@messente.com
1010
Generated by: https://openapi-generator.tech
1111
"""

0 commit comments

Comments
 (0)