/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$inboundSchema, Address$Outbound, Address$outboundSchema, } from "./address.js"; /** * The supplier this entity is linked to. */ export type LinkedSupplier = { /** * The ID of the supplier this entity is linked to. */ id?: string | undefined; /** * The display ID of the supplier. */ displayId?: string | null | undefined; /** * The display name of the supplier. */ displayName?: string | null | undefined; /** * The company name of the supplier. */ companyName?: string | null | undefined; address?: Address | undefined; }; /** @internal */ export const LinkedSupplier$inboundSchema: z.ZodType< LinkedSupplier, z.ZodTypeDef, unknown > = z.object({ id: z.string().optional(), display_id: z.nullable(z.string()).optional(), display_name: z.nullable(z.string()).optional(), company_name: z.nullable(z.string()).optional(), address: Address$inboundSchema.optional(), }).transform((v) => { return remap$(v, { "display_id": "displayId", "display_name": "displayName", "company_name": "companyName", }); }); /** @internal */ export type LinkedSupplier$Outbound = { id?: string | undefined; display_id?: string | null | undefined; display_name?: string | null | undefined; company_name?: string | null | undefined; address?: Address$Outbound | undefined; }; /** @internal */ export const LinkedSupplier$outboundSchema: z.ZodType< LinkedSupplier$Outbound, z.ZodTypeDef, LinkedSupplier > = z.object({ id: z.string().optional(), displayId: z.nullable(z.string()).optional(), displayName: z.nullable(z.string()).optional(), companyName: z.nullable(z.string()).optional(), address: Address$outboundSchema.optional(), }).transform((v) => { return remap$(v, { displayId: "display_id", displayName: "display_name", companyName: "company_name", }); }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace LinkedSupplier$ { /** @deprecated use `LinkedSupplier$inboundSchema` instead. */ export const inboundSchema = LinkedSupplier$inboundSchema; /** @deprecated use `LinkedSupplier$outboundSchema` instead. */ export const outboundSchema = LinkedSupplier$outboundSchema; /** @deprecated use `LinkedSupplier$Outbound` instead. */ export type Outbound = LinkedSupplier$Outbound; } export function linkedSupplierToJSON(linkedSupplier: LinkedSupplier): string { return JSON.stringify(LinkedSupplier$outboundSchema.parse(linkedSupplier)); } export function linkedSupplierFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => LinkedSupplier$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'LinkedSupplier' from JSON`, ); }