@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
15 lines • 833 B
JavaScript
import { z } from 'zod';
import { BaseResponseSchema } from '../../../core/schemas';
/** Tax engine address - passthrough for flexible input */
export const TaxEngineAddressSchema = z.object({}).passthrough();
/** Tax engine item - passthrough for flexible input */
export const TaxEngineItemSchema = z.object({}).passthrough();
/** Tax engine request - passthrough for flexible input */
export const TaxEngineRequestSchema = z.object({}).passthrough();
/** Tax jurisdiction - passthrough for API flexibility */
export const TaxJurisdictionSchema = z.object({}).passthrough();
/** Tax engine data - passthrough for API flexibility */
export const TaxEngineDataSchema = z.object({}).passthrough();
// Response Schema
export const TaxEngineResponseSchema = BaseResponseSchema(TaxEngineDataSchema);
//# sourceMappingURL=taxEngine.js.map