@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
17 lines • 568 B
JavaScript
;
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.notificationInfoZodSchema = void 0;
const zod_1 = require("zod");
/**
* Zod schema for validating NotificationInfo objects.
*/
exports.notificationInfoZodSchema = zod_1.z.object({
alert: zod_1.z.boolean().optional(),
alertInMeeting: zod_1.z.boolean().optional(),
externalResourceUrl: zod_1.z.string().min(1).optional()
});
//# sourceMappingURL=notificationInfo.js.map