UNPKG

@microsoft/agents-activity

Version:

Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.

15 lines 427 B
"use strict"; /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.entityZodSchema = void 0; const zod_1 = require("zod"); /** * Zod schema for validating Entity objects. */ exports.entityZodSchema = zod_1.z.object({ type: zod_1.z.string().min(1) }).passthrough(); //# sourceMappingURL=entity.js.map