/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type TestContextSnapshot = { env: { [k: string]: any }; }; /** @internal */ export const TestContextSnapshot$inboundSchema: z.ZodType< TestContextSnapshot, z.ZodTypeDef, unknown > = z.object({ env: z.record(z.any()), }); /** @internal */ export type TestContextSnapshot$Outbound = { env: { [k: string]: any }; }; /** @internal */ export const TestContextSnapshot$outboundSchema: z.ZodType< TestContextSnapshot$Outbound, z.ZodTypeDef, TestContextSnapshot > = z.object({ env: z.record(z.any()), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace TestContextSnapshot$ { /** @deprecated use `TestContextSnapshot$inboundSchema` instead. */ export const inboundSchema = TestContextSnapshot$inboundSchema; /** @deprecated use `TestContextSnapshot$outboundSchema` instead. */ export const outboundSchema = TestContextSnapshot$outboundSchema; /** @deprecated use `TestContextSnapshot$Outbound` instead. */ export type Outbound = TestContextSnapshot$Outbound; }