UNPKG

ws-dottie

Version:

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

17 lines 725 B
/** * @fileoverview Input schemas for WSF Fares API FareTotals endpoint * * These schemas define the input parameters for WSF Fares API FareTotals endpoint. * Note: AccessCode is handled separately and is not included in these schemas. */ import { z } from "../../../../shared/zod"; export declare const fareTotalsByTripDateAndRouteInputSchema: z.ZodObject<{ TripDate: z.ZodString; DepartingTerminalID: z.ZodNumber; ArrivingTerminalID: z.ZodNumber; RoundTrip: z.ZodBoolean; FareLineItemID: z.ZodString; Quantity: z.ZodString; }, z.core.$strip>; export type FareTotalsByTripDateAndRouteInput = z.infer<typeof fareTotalsByTripDateAndRouteInputSchema>; //# sourceMappingURL=fareTotals.input.d.ts.map