Skip to content

Releases: bottenderjs/messaging-apis

1.1.0 / 2021-10-04

04 Oct 06:20
Compare
Choose a tag to compare

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

02 Sep 17:41
Compare
Choose a tag to compare

messaging-api-viber

  • fix: add type: 'keyboard' to the Keyboard type

1.0.5 / 2021-04-15

15 Apr 08:02
Compare
Choose a tag to compare

messaging-api-messenger

  • fix: type TemplateElement should allow optional attributes

1.0.4 / 2021-01-11

11 Jan 06:11
Compare
Choose a tag to compare
  • deps: bump axios.

1.0.3 / 2020-10-20

20 Oct 10:05
Compare
Choose a tag to compare

messaging-api-slack

  • fix: add the missing warning package.

1.0.2 / 2020-09-21

21 Sep 13:49
Compare
Choose a tag to compare

messaging-api-messenger

  • feat: add persona support to typing_on and typing_off

1.0.1 / 2020-09-21

21 Sep 07:11
Compare
Choose a tag to compare
  • chore: remove namespace and export types from module instead #627

1.0.0 / 2020-09-07

07 Sep 09:25
Compare
Choose a tag to compare

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

08 Apr 05:40
Compare
Choose a tag to compare

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

08 Apr 05:39
Compare
Choose a tag to compare
  • [fix] fix a broken release.