@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
8 lines • 513 B
JavaScript
import { z } from 'zod';
import { BaseResponseSchema } from '../../../core/schemas';
// Reuse existing ItemFavorite schema but for the new endpoint structure
import { ItemFavoriteSchema } from './favorites';
// Response Schemas for the new OpenAPI endpoints following exact path structure
export const ItemFavoritesListResponseSchema = BaseResponseSchema(z.array(ItemFavoriteSchema));
export const ItemFavoritesItemResponseSchema = BaseResponseSchema(ItemFavoriteSchema);
//# sourceMappingURL=itemFavorites.js.map