- Update to latest Webex API client library.
- Fix to mention stripping to better support Webex web client formatting
- Update dependencies (Bot Framework to 4.6, Botkit to 4.6)
- Add support for Adaptive Cards thanks to @darrenparkinson
- Replace
ciscospark
package withwebex
package, thanks to @teamup
Developers who wish to use this brand new feature should add the following lines to their bot.js file in order to create a dedicated webhook for receiving card submissions from the Webex client. Note that this is necessary due to a bug in the Webex webhook service, and will be removed from future versions.
controller.ready(async function() {
await controller.adapter.registerAdaptiveCardWebhookSubscription('/api/messages');
});
Once enabled, your bot will receive attachmentActions
events with message.inputs
set to include values from the card.
- Update dependencies (Bot Framework to 4.5.2, Botkit to 4.5)
- Fix for file attachments
- 1:1 messages between bot and user will now emit
direct_message
events instead ofmessage
events - Messages will now have
orgId
,appId
andactorId
fields - Add
enable_incomplete
option to allow adapter to start without a complete config.
First release