UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

32 lines (31 loc) 717 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { z } from 'zod'; /** * Interface representing the search parameters for adaptive cards. */ export interface AdaptiveCardsSearchParams { /** * The text query for the search. */ queryText: string; /** * The dataset to search within. */ dataset: string; } /** * Zod schema for validating AdaptiveCardsSearchParams. */ export declare const adaptiveCardsSearchParamsZodSchema: z.ZodObject<{ queryText: z.ZodString; dataset: z.ZodString; }, "strip", z.ZodTypeAny, { queryText: string; dataset: string; }, { queryText: string; dataset: string; }>;