-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(teams): teams v1 #336
Conversation
| Quick Reply | ✅ | | ||
| Postback | ✅ | | ||
| Say Something | ✅ | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I sorted these out. Turns out this channel only received text, even if it was quick reply, postback and say something. Now all three work.
export interface TeamsConfig extends ChannelConfig { | ||
appId: string | ||
appPassword: string | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the tenantId here because I don't know what it's used for. We can add it back if we need it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it was for some validation but I'm not sure either.
export interface TeamsConfig extends ChannelConfig { | ||
appId: string | ||
appPassword: string | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it was for some validation but I'm not sure either.
Upgrades teams to be version 1.0.0. Added more content types and fixed some things. As for the API version nothing really changed for this channel. We were using botbuilder 4.14.0 before and now we use 4.15.0
Closes DEV-2277