/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: de0fd3d15eac */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The name of method used to surface relevant data for a given calendar event. */ export const EventStrategyName = { CustomerCard: "customerCard", News: "news", Call: "call", Email: "email", MeetingNotes: "meetingNotes", LinkedIn: "linkedIn", RelevantDocuments: "relevantDocuments", ChatFollowUps: "chatFollowUps", Conversations: "conversations", } as const; /** * The name of method used to surface relevant data for a given calendar event. */ export type EventStrategyName = OpenEnum; /** @internal */ export const EventStrategyName$inboundSchema: z.ZodType< EventStrategyName, z.ZodTypeDef, unknown > = openEnums.inboundSchema(EventStrategyName);