File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.3.20] - 2021-08-23
9
+
10
+ - Updated type Message, subject should be optional
11
+
8
12
## [ 0.3.19] - 2021-07-14
9
13
10
14
- Renamed credential key names from TELSTRA_MESSAGING_CLIENT_ID to TELSTRA_CLIENT_ID and TELSTRA_MESSAGING_CLIENT_SECRET to TELSTRA_CLIENT_SECRET
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 0.3.19 " ,
2
+ "version" : " 0.3.20 " ,
3
3
"license" : " Apache-2.0" ,
4
4
"main" : " dist/index.js" ,
5
5
"typings" : " dist/index.d.ts" ,
57
57
"ajv" : " ^6.12.6" ,
58
58
"axios" : " ^0.21.1"
59
59
}
60
- }
60
+ }
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export type TMessage = {
47
47
receiptOff ?: boolean ;
48
48
userMsgRef ?: string ;
49
49
type ?: TMessageType ;
50
- subject : string ;
50
+ subject ? : string ;
51
51
MMSContent ?: Array < TMMSContentObject > ;
52
52
} ;
53
53
You can’t perform that action at this time.
0 commit comments