chore: Update api service type directories to maintain consistency

This commit is contained in:
Aaron William Po
2023-07-07 23:23:04 -04:00
parent ee47f99f8a
commit 5292c47a2a
69 changed files with 99 additions and 99 deletions

View File

@@ -1,6 +1,6 @@
import { z } from 'zod';
const beerPostQueryResult = z.object({
const BeerPostQueryResult = z.object({
id: z.string(),
name: z.string(),
brewery: z.object({ id: z.string(), name: z.string() }),
@@ -15,4 +15,4 @@ const beerPostQueryResult = z.object({
createdAt: z.coerce.date(),
});
export default beerPostQueryResult;
export default BeerPostQueryResult;