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