Skip to content

Commit ef49055

Browse files
authored
Add MobilePush channel (#21)
* Add MobilePush channel * Bump version
1 parent f2fcd2a commit ef49055

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.3.3] - 2020-12-23
2+
### Added
3+
- Support for the MobilePush channel
4+
15
## [1.3.2] - 2020-08-20
26
### Fixed
37
- Moved from ClientResponse to IncomingMessage in the external api as well.

lib/MessageApiClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as CMTypes from "../typescript-node-client/api";
22
import http = require('http');
33

4-
export type Channel = "SMS" | "Viber" | "RCS" | "Apple Business Chat" | "WhatsApp" | "Twitter";
4+
export type Channel = "SMS" | "Viber" | "RCS" | "Apple Business Chat" | "WhatsApp" | "Twitter" | "MobilePush";
55
export type RichMessage = CMTypes.RichMessage;
66
export type Suggestion = CMTypes.Suggestion;
77
export type Template = CMTypes.Template;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cmdotcom/text-sdk",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Package to make it very easy to send text messages with CM.com",
55
"keywords": [
66
"cm",

0 commit comments

Comments
 (0)