UNPKG

psgc-mcp

Version:

Philippine Standard Geographic Code MCP Server - provides hierarchical geographic data for the Philippines

12 lines 1.34 kB
/** * PSGC Types - Barrel exports for all type definitions */ // Export validation schemas and their inferred types (preferred) export { IslandGroupCodeSchema, RegionCodeSchema, ProvinceCodeSchema, DistrictCodeSchema, CityCodeSchema, MunicipalityCodeSchema, SubMunicipalityCodeSchema, CityMunicipalityCodeSchema, BarangayCodeSchema, EntityTypeSchema, // Parameter schemas IslandGroupParamsSchema, RegionParamsSchema, ProvinceParamsSchema, DistrictParamsSchema, CityParamsSchema, MunicipalityParamsSchema, SubMunicipalityParamsSchema, CityMunicipalityParamsSchema, BarangayParamsSchema, SearchByNameParamsSchema, ValidateCodeParamsSchema, GetHierarchyParamsSchema, // Response schemas IslandGroupSchema, RegionSchema, ProvinceSchema, DistrictSchema, CitySchema, MunicipalitySchema, SubMunicipalitySchema, CityMunicipalitySchema, BarangaySchema, IslandGroupsResponseSchema, RegionsResponseSchema, ProvincesResponseSchema, DistrictsResponseSchema, CitiesResponseSchema, MunicipalitiesResponseSchema, SubMunicipalitiesResponseSchema, CityMunicipalitiesResponseSchema, BarangaysResponseSchema, } from './validation.schemas.js'; // Export constants export { API_CONFIG, GEOGRAPHIC_CODES, ENTITY_TYPES, API_ENDPOINTS, ERROR_MESSAGES, CONTENT_TYPES, CACHE_KEYS, RATE_LIMITS, PAGINATION, } from './constants.js'; //# sourceMappingURL=index.js.map