/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { smartUnion } from "../../types/smartUnion.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$inboundSchema, Address$Outbound, Address$outboundSchema, } from "./address.js"; import { CustomerType, CustomerType$inboundSchema, CustomerType$outboundSchema, } from "./customertype.js"; import { MetadataOutputType, MetadataOutputType$inboundSchema, MetadataOutputType$Outbound, MetadataOutputType$outboundSchema, } from "./metadataoutputtype.js"; import { TaxIDFormat, TaxIDFormat$inboundSchema, TaxIDFormat$outboundSchema, } from "./taxidformat.js"; export type OrderCustomerTaxId = string | TaxIDFormat; export type OrderCustomer = { /** * The ID of the customer. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; metadata: { [k: string]: MetadataOutputType }; /** * The ID of the customer in your system. This must be unique within the organization. Once set, it can't be updated. */ externalId?: string | null | undefined; /** * The email address of the customer. This must be unique within the organization. */ email?: string | null | undefined; /** * Whether the customer email address is verified. The address is automatically verified when the customer accesses the customer portal using their email address. */ emailVerified: boolean; type: CustomerType; /** * The name of the customer. */ name: string | null; billingAddress: Address | null; taxId: Array | null; locale?: string | null | undefined; /** * The ID of the organization owning the customer. */ organizationId: string; /** * The ID of the customer's default payment method, if any. Use the payment methods endpoint to retrieve its details. */ defaultPaymentMethodId?: string | null | undefined; /** * Timestamp for when the customer was soft deleted. */ deletedAt: Date | null; avatarUrl: string; }; /** @internal */ export const OrderCustomerTaxId$inboundSchema: z.ZodMiniType< OrderCustomerTaxId, unknown > = smartUnion([z.string(), TaxIDFormat$inboundSchema]); /** @internal */ export type OrderCustomerTaxId$Outbound = string | string; /** @internal */ export const OrderCustomerTaxId$outboundSchema: z.ZodMiniType< OrderCustomerTaxId$Outbound, OrderCustomerTaxId > = smartUnion([z.string(), TaxIDFormat$outboundSchema]); export function orderCustomerTaxIdToJSON( orderCustomerTaxId: OrderCustomerTaxId, ): string { return JSON.stringify( OrderCustomerTaxId$outboundSchema.parse(orderCustomerTaxId), ); } export function orderCustomerTaxIdFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => OrderCustomerTaxId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OrderCustomerTaxId' from JSON`, ); } /** @internal */ export const OrderCustomer$inboundSchema: z.ZodMiniType< OrderCustomer, unknown > = z.pipe( z.object({ id: z.string(), created_at: z.pipe( z.iso.datetime({ offset: true }), z.transform(v => new Date(v)), ), modified_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), metadata: z.record(z.string(), MetadataOutputType$inboundSchema), external_id: z.optional(z.nullable(z.string())), email: z.optional(z.nullable(z.string())), email_verified: z.boolean(), type: CustomerType$inboundSchema, name: z.nullable(z.string()), billing_address: z.nullable(Address$inboundSchema), tax_id: z.nullable( z.array(z.nullable(smartUnion([z.string(), TaxIDFormat$inboundSchema]))), ), locale: z.optional(z.nullable(z.string())), organization_id: z.string(), default_payment_method_id: z.optional(z.nullable(z.string())), deleted_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), avatar_url: z.string(), }), z.transform((v) => { return remap$(v, { "created_at": "createdAt", "modified_at": "modifiedAt", "external_id": "externalId", "email_verified": "emailVerified", "billing_address": "billingAddress", "tax_id": "taxId", "organization_id": "organizationId", "default_payment_method_id": "defaultPaymentMethodId", "deleted_at": "deletedAt", "avatar_url": "avatarUrl", }); }), ); /** @internal */ export type OrderCustomer$Outbound = { id: string; created_at: string; modified_at: string | null; metadata: { [k: string]: MetadataOutputType$Outbound }; external_id?: string | null | undefined; email?: string | null | undefined; email_verified: boolean; type: string; name: string | null; billing_address: Address$Outbound | null; tax_id: Array | null; locale?: string | null | undefined; organization_id: string; default_payment_method_id?: string | null | undefined; deleted_at: string | null; avatar_url: string; }; /** @internal */ export const OrderCustomer$outboundSchema: z.ZodMiniType< OrderCustomer$Outbound, OrderCustomer > = z.pipe( z.object({ id: z.string(), createdAt: z.pipe(z.date(), z.transform(v => v.toISOString())), modifiedAt: z.nullable(z.pipe(z.date(), z.transform(v => v.toISOString()))), metadata: z.record(z.string(), MetadataOutputType$outboundSchema), externalId: z.optional(z.nullable(z.string())), email: z.optional(z.nullable(z.string())), emailVerified: z.boolean(), type: CustomerType$outboundSchema, name: z.nullable(z.string()), billingAddress: z.nullable(Address$outboundSchema), taxId: z.nullable( z.array(z.nullable(smartUnion([z.string(), TaxIDFormat$outboundSchema]))), ), locale: z.optional(z.nullable(z.string())), organizationId: z.string(), defaultPaymentMethodId: z.optional(z.nullable(z.string())), deletedAt: z.nullable(z.pipe(z.date(), z.transform(v => v.toISOString()))), avatarUrl: z.string(), }), z.transform((v) => { return remap$(v, { createdAt: "created_at", modifiedAt: "modified_at", externalId: "external_id", emailVerified: "email_verified", billingAddress: "billing_address", taxId: "tax_id", organizationId: "organization_id", defaultPaymentMethodId: "default_payment_method_id", deletedAt: "deleted_at", avatarUrl: "avatar_url", }); }), ); export function orderCustomerToJSON(orderCustomer: OrderCustomer): string { return JSON.stringify(OrderCustomer$outboundSchema.parse(orderCustomer)); } export function orderCustomerFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => OrderCustomer$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OrderCustomer' from JSON`, ); }