/**
 * Zod request body schemas for customer routes — customers module.
 * Re-exports from the canonical packages/db/src/validation/customers.ts location
 * so that route files import from @zync/api/schemas/* (single import path within
 * the API package).
 */
export {
  addressSchema,
  createCustomerSchema,
  updateCustomerSchema,
  contactSchema,
  createCommunicationSchema,
} from '@zync/db/validation/customers'

export type {
  CreateCustomerInput,
  UpdateCustomerInput,
  ContactInput,
  CreateCommunicationInput,
  AddressInput,
} from '@zync/db/validation/customers'
