You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let textMessage =messageModel.textConversationMessage('What pizza size do you want?\n1. Small\n2. Medium\n3. Large', undefined, undefined, undefined, keywords);
101
101
context.reply(textMessage);
102
102
```
@@ -180,7 +180,7 @@ module.exports = {
180
180
name:'orderConfirmation'
181
181
}),
182
182
invoke: (context, done) => {
183
-
if (context.getRequest().message.channelConversation.type==='msteams') {
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# Release Notes
2
2
3
+
-[Version 2.5.5](#v255)
3
4
-[Version 2.5.4](#v254)
4
5
-[Version 2.5.3](#v253)
5
6
-[Version 2.5.2](#v252)
@@ -8,6 +9,14 @@
8
9
-[Version 2.4.3](#v243)
9
10
-[Version 2.4.2](#v242)
10
11
12
+
## Version 2.5.5 <aname="v255">
13
+
14
+
### New Features
15
+
16
+
-**Support for resource bundles in custom components**: The `context.translate` function that was already available for entity event handlers, can now be used with custom components as well. The function takes a resource bundle key and optionally a list of sustitution variables. Note that use of this function requires digital assistant version 21.06 or higher.
17
+
-**Convenience method to get channel type**: A new function `context.getChannelType` has been added for both custom components and entity event handler.
18
+
-**Convenience method to add a global action**: A new function `messageModel.addGlobalAction` has been added to the message model. This method adds a single globl action without removing any existing global actions.
0 commit comments