Releases: bottenderjs/messaging-apis
Releases · bottenderjs/messaging-apis
1.1.0 / 2021-10-04
messaging-api-line
- [new] Added support for broadcast API:
await client.broadcast([
{
type: 'text',
text: 'Hello, world1',
},
]);
- [new] Added
.getBotInfo()
:
await client.getBotInfo();
// {
// "userId": "Ub9952f8...",
// "basicId": "@216ru...",
// "displayName": "Example name",
// "pictureUrl": "https://obs.line-apps.com/...",
// "chatMode": "chat",
// "markAsReadMode": "manual"
// }
- [new] Added support for webhook APIs:
await client.getWebhookEndpointInfo();
// {
// "endpoint": "https://example.com/test",
// "active": true
// }
await client.setWebhookEndpointUrl('https://www.example.com/callback');
await client.testWebhookEndpoint();
// {
// "success": true,
// "timestamp": "2020-09-30T05:38:20.031Z",
// "statusCode": 200,
// "reason": "OK",
// "detail": "200"
// }
1.0.6 / 2021-09-03
messaging-api-viber
- fix: add
type: 'keyboard'
to theKeyboard
type
1.0.5 / 2021-04-15
messaging-api-messenger
- fix: type TemplateElement should allow optional attributes
1.0.4 / 2021-01-11
- deps: bump axios.
1.0.3 / 2020-10-20
messaging-api-slack
- fix: add the missing
warning
package.
1.0.2 / 2020-09-21
messaging-api-messenger
- feat: add persona support to typing_on and typing_off
1.0.1 / 2020-09-21
- chore: remove namespace and export types from module instead #627
1.0.0 / 2020-09-07
Breaking Changes
The whole project has been rewritten with TypeScript and all APIs now accept camelcase keys instead of snakecase keys.
Please checkout the new API document.
0.8.5 / 2020-04-08
messaging-api-messenger
- [fix] support up to 13 quick replies instead of 11.
messaging-api-line
- [fix] use data domain to get media and menu content (#557)
0.7.18 / 2020-04-08
- [fix] fix a broken release.