UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

7 lines 411 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** Element payment params - passthrough for flexible input */ export const ElementPaymentParamsSchema = z.object({}).passthrough(); /** Element payment response - passthrough for API flexibility */ export const ElementPaymentResponseSchema = BaseResponseSchema(z.object({}).passthrough()); //# sourceMappingURL=element.js.map