UNPKG

ws-dottie

Version:

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

22 lines 864 B
/** * @fileoverview Endpoint Registry * * This module provides a centralized registry of all endpoints from refactored * API structure. It creates a flat array of Endpoint objects for CLI and * e2e test consumption. * * IMPORTANT: This module imports zod-openapi-init FIRST to ensure Zod schemas * have `.openapi()` method available before any API modules are imported. */ import "./zod"; import type { Endpoint } from "./types"; /** * All endpoints from all APIs as a flat array * * This array contains all endpoints from all APIs flattened into a single * array for easy iteration and processing by CLI and e2e tests. * Each endpoint is generated by mapping over the endpointMappings configuration. */ export declare const endpoints: Endpoint<unknown, unknown>[]; export { apis } from "../apis/shared/apis"; //# sourceMappingURL=endpoints.d.ts.map