UNPKG

ws-dottie

Version:

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

38 lines 1.66 kB
import { z } from "../../../../shared/zod"; /** * GetWeatherInformation input schema * * Input parameters for getting current weather information. Provides current information from weather stations. Coverage Area: Statewide. */ export declare const weatherInformationInputSchema: z.ZodObject<{}, z.core.$strip>; export type WeatherInformationInput = z.infer<typeof weatherInformationInputSchema>; /** * GetWeatherInformationByStationId input schema * * Input parameters for getting current weather information by station ID. Provides current information from weather stations. Coverage Area: Statewide. */ export declare const weatherInformationByStationIdInputSchema: z.ZodObject<{ StationID: z.ZodInt; }, z.core.$strip>; export type WeatherInformationByStationIdInput = z.infer<typeof weatherInformationByStationIdInputSchema>; /** * SearchWeatherInformation input schema * * Input parameters for searching weather information by station ID and time range. */ export declare const searchWeatherInformationInputSchema: z.ZodObject<{ StationID: z.ZodInt; SearchStartTime: z.ZodString; SearchEndTime: z.ZodString; }, z.core.$strip>; export type SearchWeatherInformationInput = z.infer<typeof searchWeatherInformationInputSchema>; /** * GetCurrentWeatherForStations input schema * * Input parameters for getting current weather information for multiple stations. */ export declare const currentWeatherForStationsInputSchema: z.ZodObject<{ StationList: z.ZodString; }, z.core.$strip>; export type CurrentWeatherForStationsInput = z.infer<typeof currentWeatherForStationsInputSchema>; //# sourceMappingURL=weatherInfo.input.d.ts.map