UNPKG

ws-dottie

Version:

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

24 lines 1.25 kB
/** * @fileoverview WSF Terminals API Input Schemas * * This module provides Zod schemas for validating input parameters for the WSF * Terminals API endpoints. */ import { z } from "../../../../shared/zod"; /** * Schema for TerminalBulletins input parameters * * This operation retrieves alerts and bulletins associated with terminals. Each terminal may have zero or more bulletins assigned to it. A TerminalID, or unique terminal identifier, may be optionally passed to retrieve a specific terminal. */ export declare const terminalBulletinsInputSchema: z.ZodObject<{}, z.core.$strip>; export type TerminalBulletinsInput = z.infer<typeof terminalBulletinsInputSchema>; /** * Schema for TerminalBulletinsById input parameters * * This operation retrieves alerts and bulletins associated with terminals. Each terminal may have zero or more bulletins assigned to it. A TerminalID, or unique terminal identifier, may be optionally passed to retrieve a specific terminal. */ export declare const terminalBulletinsByIdInputSchema: z.ZodObject<{ TerminalID: z.ZodNumber; }, z.core.$strip>; export type TerminalBulletinsByIdInput = z.infer<typeof terminalBulletinsByIdInputSchema>; //# sourceMappingURL=terminalBulletins.input.d.ts.map