UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

20 lines 977 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** * Shipping rates request parameters * Input validation - keeps structure for API documentation */ export const RatesRequestParamsSchema = z.object({}).passthrough(); /** Shipping rate - passthrough for API flexibility */ export const ShippingRateSchema = z.object({}).passthrough(); /** Shipping rates summary - passthrough for API flexibility */ export const ShippingRatesSummarySchema = z.object({}).passthrough(); /** Shipping rates detailed - passthrough for API flexibility */ export const ShippingRatesDetailedSchema = z.object({}).passthrough(); /** Shipping rates result - supports multiple response formats */ export const ShippingRatesResultSchema = z.unknown(); /** Shipping rates response data */ export const RatesDataSchema = z.unknown(); /** Shipping rates response */ export const RatesResponseSchema = BaseResponseSchema(z.unknown()); //# sourceMappingURL=rates.js.map