UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

9 lines 375 B
import { z } from 'zod'; import { BaseResponseSchema } from '../../../core/schemas'; /** * Schema for /menu/{id}/doc GET endpoint * Returns enhanced menu item document with navigation hierarchy */ export const MenuIdDocItemSchema = z.record(z.unknown()); export const MenuIdDocResponseSchema = BaseResponseSchema(MenuIdDocItemSchema); //# sourceMappingURL=menuIdDoc.js.map