Skip to content

Commit

Permalink
0.3.5 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Sep 14, 2017
1 parent 978a436 commit 4d75c49
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
0.3.5 / 2017-09-15
==================
### messaging-api-messenger
- [docs] Fix a typo.

### messaging-api-line
- [new] Support message factories:
+ LINE.createText
+ LINE.createImage
+ LINE.createVideo
+ createAudio
+ createLocation
+ createSticker
+ createImagemap
+ createTemplate
+ createButtonTemplate
+ createConfirmTemplate
+ createCarouselTemplate
+ createImageCarouselTemplate

For example:

```js
const { LINE } = require('messaging-api-line');

client.reply(REPLY_TOKEN, [
LINE.createText('Hello'),
LINE.createImage(
'https://example.com/original.jpg',
'https://example.com/preview.jpg'
),
LINE.createText('End'),
]);
```


0.3.4 / 2017-09-13
==================
- [docs] Show method arguments in tables.
Expand Down

0 comments on commit 4d75c49

Please sign in to comment.