Skip to content
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

port: [#3931] Add "omnichannel" to Channels (#5891) #4153

Merged
merged 2 commits into from
Mar 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,8 @@ export enum Channels {
// (undocumented)
Msteams = "msteams",
// (undocumented)
Omni = "omnichannel",
// (undocumented)
Skype = "skype",
// (undocumented)
Skypeforbusiness = "skypeforbusiness",
Expand Down
3 changes: 2 additions & 1 deletion libraries/botframework-schema/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2238,7 +2238,7 @@ export enum SemanticActionStateTypes {
/**
* Defines values for ChannelIds for Channels.
* Possible values include: 'alexa', 'console', 'cortana', 'directline', 'directlinespeech', 'email',
* 'emulator', 'facebook', 'groupme', 'kik', 'line', 'msteams', 'skype', 'skypeforbusiness',
* 'emulator', 'facebook', 'groupme', 'kik', 'line', 'msteams', 'onmichannel', 'skype', 'skypeforbusiness',
* 'slack', 'sms', 'telegram', 'test', 'twilio-sms', 'webchat'
*
* @readonly
Expand All @@ -2256,6 +2256,7 @@ export enum Channels {
Kik = 'kik',
Line = 'line',
Msteams = 'msteams',
Omni = 'omnichannel',
Skype = 'skype',
Skypeforbusiness = 'skypeforbusiness',
Slack = 'slack',
Expand Down