Skip to content

Commit f4b2cbd

Browse files
authored
Merge pull request #26 from messente/travis_3.6.0
release version 2.5.0
2 parents 65f96a2 + 62360e8 commit f4b2cbd

131 files changed

Lines changed: 2340 additions & 165 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.4.2
4+
- NPM package version: 2.5.0
55

66
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp 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/Channel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
* `whatsapp` (value: `"whatsapp"`)
1111

12-
* `telegram` (value: `"telegram"`)
12+
* `rcs` (value: `"rcs"`)
1313

1414

docs/Rcs.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# MessenteApi.Rcs
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**channel** | **String** | The channel used to deliver the message | [optional] [default to 'rcs']
7+
**sender** | **String** | Phone number or alphanumeric sender name |
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]
10+
**text** | **String** | Text content of the RCS message | [optional]
11+
**suggestions** | [**[RcsSuggestion]**](RcsSuggestion.md) | List of suggestions to include with the message | [optional]
12+
**rich_card** | [**RcsRichCard**](RcsRichCard.md) | | [optional]
13+
**content_info** | [**RcsContentInfo**](RcsContentInfo.md) | | [optional]
14+
15+
16+
<a name="ChannelEnum"></a>
17+
## Enum: ChannelEnum
18+
19+
20+
* `rcs` (value: `"rcs"`)
21+
22+
23+
24+

docs/RcsCardContent.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MessenteApi.RcsCardContent
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**title** | **String** | Title of the card content | [optional]
7+
**description** | **String** | Description of the card content | [optional]
8+
**media** | [**RcsMedia**](RcsMedia.md) | | [optional]
9+
**suggestions** | [**[RcsSuggestion]**](RcsSuggestion.md) | List of suggestions that the recipient can use to respond. | [optional]
10+
11+

docs/RcsCardOrientation.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# MessenteApi.RcsCardOrientation
2+
3+
## Enum
4+
5+
6+
* `VERTICAL` (value: `"VERTICAL"`)
7+
8+
* `HORIZONTAL` (value: `"HORIZONTAL"`)
9+
10+

docs/RcsCardWidth.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# MessenteApi.RcsCardWidth
2+
3+
## Enum
4+
5+
6+
* `SMALL` (value: `"SMALL"`)
7+
8+
* `MEDIUM` (value: `"MEDIUM"`)
9+
10+

docs/RcsCarouselCard.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# MessenteApi.RcsCarouselCard
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**card_width** | [**RcsCardWidth**](RcsCardWidth.md) | |
7+
**card_contents** | [**[RcsCardContent]**](RcsCardContent.md) | The contents of the carousel card. |
8+
9+

docs/RcsContentInfo.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# MessenteApi.RcsContentInfo
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**file_url** | **String** | Required file URL |
7+
**thumbnail_url** | **String** | Optional thumbnail URL | [optional]
8+
**force_refresh** | **Boolean** | Force refresh the content |
9+
10+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MessenteApi.RcsCreateCalendarEventAction
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**start_time** | **String** | The start time of the event. |
7+
**end_time** | **String** | The end time of the event. |
8+
**title** | **String** | The title of the event. |
9+
**description** | **String** | The description of the event. |
10+
11+

docs/RcsDialAction.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# MessenteApi.RcsDialAction
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**phone_number** | **String** | The phone number to dial in E.164 format. |
7+
8+

0 commit comments

Comments
 (0)