@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
20 lines (19 loc) • 566 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { z } from 'zod';
/**
* Enum representing treatment types for the activity.
*/
export declare enum ActivityTreatments {
/**
* Indicates that only the recipient should be able to see the message even if the activity
* is being sent to a group of people.
*/
Targeted = "targeted"
}
/**
* Zod schema for validating an ActivityTreatments enum.
*/
export declare const activityTreatments: z.ZodNativeEnum<typeof ActivityTreatments>;