UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

18 lines 1.13 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TaxEngineResponseSchema = exports.TaxEngineDataSchema = exports.TaxJurisdictionSchema = exports.TaxEngineRequestSchema = exports.TaxEngineItemSchema = exports.TaxEngineAddressSchema = void 0; const zod_1 = require("zod"); const schemas_1 = require("../../../core/schemas"); /** Tax engine address - passthrough for flexible input */ exports.TaxEngineAddressSchema = zod_1.z.object({}).passthrough(); /** Tax engine item - passthrough for flexible input */ exports.TaxEngineItemSchema = zod_1.z.object({}).passthrough(); /** Tax engine request - passthrough for flexible input */ exports.TaxEngineRequestSchema = zod_1.z.object({}).passthrough(); /** Tax jurisdiction - passthrough for API flexibility */ exports.TaxJurisdictionSchema = zod_1.z.object({}).passthrough(); /** Tax engine data - passthrough for API flexibility */ exports.TaxEngineDataSchema = zod_1.z.object({}).passthrough(); // Response Schema exports.TaxEngineResponseSchema = (0, schemas_1.BaseResponseSchema)(exports.TaxEngineDataSchema); //# sourceMappingURL=taxEngine.js.map