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 542 B
import { z } from "zod"; import { vesselsVerboseSchema, } from "@/schemas/wsf-vessels/vesselVerbose.zod"; /** Input schema for getVesselVerbose */ const vesselsVerboseInput = z.object({}); /** Endpoint metadata for getVesselVerbose */ export const getVesselVerboseMeta = { id: "wsf-vessels/vesselsVerbose", endpoint: "/ferries/api/vessels/rest/vesselverbose", inputSchema: vesselsVerboseInput, outputSchema: vesselsVerboseSchema, sampleParams: {}, cacheStrategy: "STATIC", }; //# sourceMappingURL=vesselsVerbose.js.map