@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
9 lines • 528 B
JavaScript
import { z } from 'zod';
import { BaseResponseSchema } from '../../../core/schemas';
/** Web hook create params - passthrough for flexible input */
export const WebHookCreateParamsSchema = z.object({}).passthrough();
/** Webhook response data - key field only, passthrough for API flexibility */
export const WebHookDataSchema = z.object({ webhook_id: z.string().optional() }).passthrough();
/** Web hook response */
export const WebHookResponseSchema = BaseResponseSchema(WebHookDataSchema);
//# sourceMappingURL=webHook.js.map