/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type StepConfigSlim = { /** * Human readable identifier for this step */ label: string; /** * Unique name of the step in the engine */ name: string; }; /** @internal */ export const StepConfigSlim$inboundSchema: z.ZodType< StepConfigSlim, z.ZodTypeDef, unknown > = z.object({ label: z.string(), name: z.string(), }); /** @internal */ export type StepConfigSlim$Outbound = { label: string; name: string; }; /** @internal */ export const StepConfigSlim$outboundSchema: z.ZodType< StepConfigSlim$Outbound, z.ZodTypeDef, StepConfigSlim > = z.object({ label: z.string(), name: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace StepConfigSlim$ { /** @deprecated use `StepConfigSlim$inboundSchema` instead. */ export const inboundSchema = StepConfigSlim$inboundSchema; /** @deprecated use `StepConfigSlim$outboundSchema` instead. */ export const outboundSchema = StepConfigSlim$outboundSchema; /** @deprecated use `StepConfigSlim$Outbound` instead. */ export type Outbound = StepConfigSlim$Outbound; }