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 • 584 B
JavaScript
import { z } from "zod";
import { wsfStandardCacheFlushDateSchema } from "@/schemas/shared/cacheFlushDate.zod";
/** Input schema for getFaresCacheFlushDate */
const faresCacheFlushDateInput = z.object({});
/** Endpoint metadata for getFaresCacheFlushDate */
export const getFaresCacheFlushDateMeta = {
id: "wsf-fares/cacheFlushDate",
endpoint: "/ferries/api/fares/rest/cacheflushdate",
inputSchema: faresCacheFlushDateInput,
outputSchema: wsfStandardCacheFlushDateSchema,
sampleParams: {},
cacheStrategy: "STATIC",
};
//# sourceMappingURL=cacheFlushDate.js.map