/* * 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 { CustomerStateBenefitGrant, CustomerStateBenefitGrant$inboundSchema, CustomerStateBenefitGrant$Outbound, CustomerStateBenefitGrant$outboundSchema, } from "./customerstatebenefitgrant.js"; import { CustomerStateMeter, CustomerStateMeter$inboundSchema, CustomerStateMeter$Outbound, CustomerStateMeter$outboundSchema, } from "./customerstatemeter.js"; import { CustomerStateSubscription, CustomerStateSubscription$inboundSchema, CustomerStateSubscription$Outbound, CustomerStateSubscription$outboundSchema, } from "./customerstatesubscription.js"; import { MetadataOutputType, MetadataOutputType$inboundSchema, MetadataOutputType$Outbound, MetadataOutputType$outboundSchema, } from "./metadataoutputtype.js"; import { TaxIDFormat, TaxIDFormat$inboundSchema, TaxIDFormat$outboundSchema, } from "./taxidformat.js"; export type CustomerStateTeamTaxId = string | TaxIDFormat; /** * A team customer along with additional state information: * * @remarks * * * Active subscriptions * * Granted benefits * * Active meters */ export type CustomerStateTeam = { /** * 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; /** * The type of customer. Team customers can have multiple members. */ type: "team"; /** * 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; /** * The customer's active subscriptions. */ activeSubscriptions: Array; /** * The customer's active benefit grants. */ grantedBenefits: Array; /** * The customer's active meters. */ activeMeters: Array; avatarUrl: string; }; /** @internal */ export const CustomerStateTeamTaxId$inboundSchema: z.ZodMiniType< CustomerStateTeamTaxId, unknown > = smartUnion([z.string(), TaxIDFormat$inboundSchema]); /** @internal */ export type CustomerStateTeamTaxId$Outbound = string | string; /** @internal */ export const CustomerStateTeamTaxId$outboundSchema: z.ZodMiniType< CustomerStateTeamTaxId$Outbound, CustomerStateTeamTaxId > = smartUnion([z.string(), TaxIDFormat$outboundSchema]); export function customerStateTeamTaxIdToJSON( customerStateTeamTaxId: CustomerStateTeamTaxId, ): string { return JSON.stringify( CustomerStateTeamTaxId$outboundSchema.parse(customerStateTeamTaxId), ); } export function customerStateTeamTaxIdFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => CustomerStateTeamTaxId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CustomerStateTeamTaxId' from JSON`, ); } /** @internal */ export const CustomerStateTeam$inboundSchema: z.ZodMiniType< CustomerStateTeam, 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: z.literal("team"), 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))), ), active_subscriptions: z.array(CustomerStateSubscription$inboundSchema), granted_benefits: z.array(CustomerStateBenefitGrant$inboundSchema), active_meters: z.array(CustomerStateMeter$inboundSchema), 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", "active_subscriptions": "activeSubscriptions", "granted_benefits": "grantedBenefits", "active_meters": "activeMeters", "avatar_url": "avatarUrl", }); }), ); /** @internal */ export type CustomerStateTeam$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: "team"; 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; active_subscriptions: Array; granted_benefits: Array; active_meters: Array; avatar_url: string; }; /** @internal */ export const CustomerStateTeam$outboundSchema: z.ZodMiniType< CustomerStateTeam$Outbound, CustomerStateTeam > = 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: z.literal("team"), 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()))), activeSubscriptions: z.array(CustomerStateSubscription$outboundSchema), grantedBenefits: z.array(CustomerStateBenefitGrant$outboundSchema), activeMeters: z.array(CustomerStateMeter$outboundSchema), 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", activeSubscriptions: "active_subscriptions", grantedBenefits: "granted_benefits", activeMeters: "active_meters", avatarUrl: "avatar_url", }); }), ); export function customerStateTeamToJSON( customerStateTeam: CustomerStateTeam, ): string { return JSON.stringify( CustomerStateTeam$outboundSchema.parse(customerStateTeam), ); } export function customerStateTeamFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => CustomerStateTeam$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CustomerStateTeam' from JSON`, ); }