UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

31 lines 916 B
"use strict"; /** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.channelTypeZodSchema = exports.ChannelTypes = void 0; const zod_1 = require("zod"); /** * Enum representing the different Teams channel types. */ var ChannelTypes; (function (ChannelTypes) { /** * Represents a private Teams channel. */ ChannelTypes["Private"] = "private"; /** * Represents a shared Teams channel. */ ChannelTypes["Shared"] = "shared"; /** * Represents a standard Teams channel. */ ChannelTypes["Standard"] = "standard"; })(ChannelTypes || (exports.ChannelTypes = ChannelTypes = {})); /** * Zod schema for validating channel types. */ exports.channelTypeZodSchema = zod_1.z.enum(['standard', 'private', 'shared']); //# sourceMappingURL=channelTypes.js.map