UNPKG

ws-dottie

Version:

Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration

14 lines 621 B
import { z } from "zod"; import { vesselAccommodationsSchema } from "@/schemas/wsf-vessels/vesselAccommodations.zod"; /** Input schema for getVesselAccommodations */ const vesselAccommodationsInput = z.object({}); /** Endpoint metadata for getVesselAccommodations */ export const getVesselAccommodationsMeta = { id: "wsf-vessels/vesselAccommodations", endpoint: "/ferries/api/vessels/rest/vesselaccommodations", inputSchema: vesselAccommodationsInput, outputSchema: z.array(vesselAccommodationsSchema), sampleParams: {}, cacheStrategy: "STATIC", }; //# sourceMappingURL=vesselAccommodations.js.map