@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
27 lines (26 loc) • 677 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { z } from 'zod';
/**
* Enum representing the state types of a semantic action.
*/
export declare enum SemanticActionStateTypes {
/**
* Indicates the start of a semantic action.
*/
Start = "start",
/**
* Indicates the continuation of a semantic action.
*/
Continue = "continue",
/**
* Indicates the completion of a semantic action.
*/
Done = "done"
}
/**
* Zod schema for validating SemanticActionStateTypes.
*/
export declare const semanticActionStateTypesZodSchema: z.ZodEnum<["start", "continue", "done"]>;