/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { ElementTarget, ElementTarget$inboundSchema, ElementTarget$Outbound, ElementTarget$outboundSchema, } from "./elementtarget.js"; import { SingleTargetCache, SingleTargetCache$inboundSchema, SingleTargetCache$Outbound, SingleTargetCache$outboundSchema, } from "./singletargetcache.js"; export type HoverCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; useSelector?: boolean | undefined; force?: boolean | undefined; /** * disable element caching for this step */ disableCache?: boolean | undefined; /** * url or url regex for the iframe */ iframeUrl?: string | undefined; type?: "HOVER" | undefined; target: ElementTarget; cache?: SingleTargetCache | undefined; }; /** @internal */ export const HoverCommand$inboundSchema: z.ZodType< HoverCommand, z.ZodTypeDef, unknown > = z.object({ thoughts: z.string().optional(), id: z.string(), useSelector: z.boolean().optional(), force: z.boolean().optional(), disableCache: z.boolean().optional(), iframeUrl: z.string().optional(), type: z.literal("HOVER").optional(), target: ElementTarget$inboundSchema, cache: SingleTargetCache$inboundSchema.optional(), }); /** @internal */ export type HoverCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; type: "HOVER"; target: ElementTarget$Outbound; cache?: SingleTargetCache$Outbound | undefined; }; /** @internal */ export const HoverCommand$outboundSchema: z.ZodType< HoverCommand$Outbound, z.ZodTypeDef, HoverCommand > = z.object({ thoughts: z.string().optional(), id: z.string(), useSelector: z.boolean().optional(), force: z.boolean().optional(), disableCache: z.boolean().optional(), iframeUrl: z.string().optional(), type: z.literal("HOVER").default("HOVER" as const), target: ElementTarget$outboundSchema, cache: SingleTargetCache$outboundSchema.optional(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace HoverCommand$ { /** @deprecated use `HoverCommand$inboundSchema` instead. */ export const inboundSchema = HoverCommand$inboundSchema; /** @deprecated use `HoverCommand$outboundSchema` instead. */ export const outboundSchema = HoverCommand$outboundSchema; /** @deprecated use `HoverCommand$Outbound` instead. */ export type Outbound = HoverCommand$Outbound; }