Messaging Apis Versions Save

Messaging APIs for multi-platform

v1.1.0

2 years ago

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"
// }

v1.0.6

2 years ago

messaging-api-viber

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

v1.0.5

3 years ago

messaging-api-messenger

  • fix: type TemplateElement should allow optional attributes

v1.0.4

3 years ago
  • deps: bump axios.

v1.0.3

3 years ago

messaging-api-slack

  • fix: add the missing warning package.

v1.0.2

3 years ago

messaging-api-messenger

  • feat: add persona support to typing_on and typing_off

v1.0.1

3 years ago
  • chore: remove namespace and export types from module instead #627

v1.0.0

3 years ago

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.

v0.8.5

4 years ago

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)

v0.7.18

4 years ago
  • [fix] fix a broken release.