Skip to content

Commit 292e4ae

Browse files
Merge pull request #15 from messente/travis
Release version 2.1.0
2 parents 8b2c2f9 + 0ea0f9c commit 292e4ae

61 files changed

Lines changed: 200 additions & 65 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: 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.0.0
4+
- NPM package version: 2.1.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/DeliveryResult.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@ Name | Type | Description | Notes
99
**error** | **String** | Human-readable description of what went wrong, *null* in case of success or if the message has not been processed yet | [optional]
1010
**err** | [**ErrorCodeOmnichannelMachine**](ErrorCodeOmnichannelMachine.md) | | [optional]
1111
**timestamp** | **Date** | When this status was received by Omnichannel API | [optional]
12+
**priceInfo** | [**PriceInfo**](PriceInfo.md) | | [optional]
13+
**sender** | **String** | the sender of the message | [optional]
1214

1315

docs/PriceInfo.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# MessenteApi.PriceInfo
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**partPrice** | **String** | price per message part - relevant mostly for SMS |
7+
**partsCount** | **Number** | the number of parts the message consists of |
8+
**totalPrice** | **String** | total price for the message |
9+
10+

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.0.0",
3+
"version": "2.1.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.0.0
36+
* @version 2.1.0
3737
*/
3838

3939
/**

src/api/BlacklistApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* Blacklist service.
3636
* @module api/BlacklistApi
37-
* @version 2.0.0
37+
* @version 2.1.0
3838
*/
3939

4040
/**

src/api/BulkMessagingApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* BulkMessaging service.
3636
* @module api/BulkMessagingApi
37-
* @version 2.0.0
37+
* @version 2.1.0
3838
*/
3939

4040
/**

src/api/ContactsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* Contacts service.
3636
* @module api/ContactsApi
37-
* @version 2.0.0
37+
* @version 2.1.0
3838
*/
3939

4040
/**

src/api/DeliveryReportApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* DeliveryReport service.
3636
* @module api/DeliveryReportApi
37-
* @version 2.0.0
37+
* @version 2.1.0
3838
*/
3939

4040
/**

src/api/GroupsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* Groups service.
3636
* @module api/GroupsApi
37-
* @version 2.0.0
37+
* @version 2.1.0
3838
*/
3939

4040
/**

0 commit comments

Comments
 (0)