@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
90 lines • 2.17 kB
JavaScript
"use strict";
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Channels = void 0;
/**
* Enum representing the different channels an agent can communicate through.
*/
var Channels;
(function (Channels) {
/**
* Represents the Alexa channel.
*/
Channels["Alexa"] = "alexa";
/**
* Represents the Console channel.
*/
Channels["Console"] = "console";
/**
* Represents the Directline channel.
*/
Channels["Directline"] = "directline";
/**
* Represents the Directline Speech channel.
*/
Channels["DirectlineSpeech"] = "directlinespeech";
/**
* Represents the Email channel.
*/
Channels["Email"] = "email";
/**
* Represents the Emulator channel.
*/
Channels["Emulator"] = "emulator";
/**
* Represents the Facebook channel.
*/
Channels["Facebook"] = "facebook";
/**
* Represents the GroupMe channel.
*/
Channels["Groupme"] = "groupme";
/**
* Represents the Line channel.
*/
Channels["Line"] = "line";
/**
* Represents the Microsoft Teams channel.
*/
Channels["Msteams"] = "msteams";
/**
* Represents the Omnichannel.
*/
Channels["Omni"] = "omnichannel";
/**
* Represents the Outlook channel.
*/
Channels["Outlook"] = "outlook";
/**
* Represents the Skype channel.
*/
Channels["Skype"] = "skype";
/**
* Represents the Slack channel.
*/
Channels["Slack"] = "slack";
/**
* Represents the SMS channel.
*/
Channels["Sms"] = "sms";
/**
* Represents the Telegram channel.
*/
Channels["Telegram"] = "telegram";
/**
* Represents the Telephony channel.
*/
Channels["Telephony"] = "telephony";
/**
* Represents the Test channel.
*/
Channels["Test"] = "test";
/**
* Represents the Webchat channel.
*/
Channels["Webchat"] = "webchat";
})(Channels || (exports.Channels = Channels = {}));
//# sourceMappingURL=channels.js.map