UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

17 lines 532 B
"use strict"; /** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.channelInfoZodSchema = void 0; const zod_1 = require("zod"); /** * Zod schema for validating ChannelInfo objects. */ exports.channelInfoZodSchema = zod_1.z.object({ id: zod_1.z.string().min(1).optional(), name: zod_1.z.string().min(1).optional(), type: zod_1.z.string().min(1).optional() }); //# sourceMappingURL=channelInfo.js.map