@mapbox/mcp-server 0.5.4 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (318) hide show
  1. package/README.md +36 -0
  2. package/dist/commonjs/config/toolConfig.d.ts.map +1 -1
  3. package/dist/commonjs/config/toolConfig.js +2 -0
  4. package/dist/commonjs/config/toolConfig.js.map +1 -1
  5. package/dist/commonjs/index.d.ts.map +1 -1
  6. package/dist/commonjs/index.js +47 -3
  7. package/dist/commonjs/index.js.map +1 -1
  8. package/dist/commonjs/schemas/geojson.d.ts +115 -0
  9. package/dist/commonjs/schemas/geojson.d.ts.map +1 -0
  10. package/dist/commonjs/schemas/geojson.js +5 -0
  11. package/dist/commonjs/schemas/geojson.js.map +1 -0
  12. package/dist/commonjs/schemas/shared.d.ts +36 -0
  13. package/dist/commonjs/schemas/shared.d.ts.map +1 -0
  14. package/dist/commonjs/schemas/shared.js +35 -0
  15. package/dist/commonjs/schemas/shared.js.map +1 -0
  16. package/dist/commonjs/tools/BaseTool.d.ts +6 -3
  17. package/dist/commonjs/tools/BaseTool.d.ts.map +1 -1
  18. package/dist/commonjs/tools/BaseTool.js +14 -2
  19. package/dist/commonjs/tools/BaseTool.js.map +1 -1
  20. package/dist/commonjs/tools/MapboxApiBasedTool.d.ts +11 -51
  21. package/dist/commonjs/tools/MapboxApiBasedTool.d.ts.map +1 -1
  22. package/dist/commonjs/tools/MapboxApiBasedTool.js +60 -45
  23. package/dist/commonjs/tools/MapboxApiBasedTool.js.map +1 -1
  24. package/dist/commonjs/tools/category-list-tool/CategoryListTool.d.ts +10 -20
  25. package/dist/commonjs/tools/category-list-tool/CategoryListTool.d.ts.map +1 -1
  26. package/dist/commonjs/tools/category-list-tool/CategoryListTool.input.schema.d.ts +16 -0
  27. package/dist/commonjs/tools/category-list-tool/CategoryListTool.input.schema.d.ts.map +1 -0
  28. package/dist/commonjs/tools/category-list-tool/CategoryListTool.input.schema.js +23 -0
  29. package/dist/commonjs/tools/category-list-tool/CategoryListTool.input.schema.js.map +1 -0
  30. package/dist/commonjs/tools/category-list-tool/CategoryListTool.js +36 -29
  31. package/dist/commonjs/tools/category-list-tool/CategoryListTool.js.map +1 -1
  32. package/dist/commonjs/tools/category-list-tool/CategoryListTool.output.schema.d.ts +10 -0
  33. package/dist/commonjs/tools/category-list-tool/CategoryListTool.output.schema.d.ts.map +1 -0
  34. package/dist/commonjs/tools/category-list-tool/CategoryListTool.output.schema.js +12 -0
  35. package/dist/commonjs/tools/category-list-tool/CategoryListTool.output.schema.js.map +1 -0
  36. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.d.ts +10 -83
  37. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.d.ts.map +1 -1
  38. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.input.schema.d.ts +76 -0
  39. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.input.schema.d.ts.map +1 -0
  40. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.input.schema.js +82 -0
  41. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.input.schema.js.map +1 -0
  42. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.js +44 -97
  43. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.js.map +1 -1
  44. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.output.schema.d.ts +2184 -0
  45. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.output.schema.d.ts.map +1 -0
  46. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.output.schema.js +148 -0
  47. package/dist/commonjs/tools/category-search-tool/CategorySearchTool.output.schema.js.map +1 -0
  48. package/dist/commonjs/tools/directions-tool/DirectionsTool.d.ts +10 -54
  49. package/dist/commonjs/tools/directions-tool/DirectionsTool.d.ts.map +1 -1
  50. package/dist/commonjs/tools/directions-tool/DirectionsTool.input.schema.d.ts +51 -0
  51. package/dist/commonjs/tools/directions-tool/DirectionsTool.input.schema.d.ts.map +1 -0
  52. package/dist/commonjs/tools/directions-tool/DirectionsTool.input.schema.js +242 -0
  53. package/dist/commonjs/tools/directions-tool/DirectionsTool.input.schema.js.map +1 -0
  54. package/dist/commonjs/tools/directions-tool/DirectionsTool.js +106 -266
  55. package/dist/commonjs/tools/directions-tool/DirectionsTool.js.map +1 -1
  56. package/dist/commonjs/tools/directions-tool/DirectionsTool.output.schema.d.ts +7880 -0
  57. package/dist/commonjs/tools/directions-tool/DirectionsTool.output.schema.d.ts.map +1 -0
  58. package/dist/commonjs/tools/directions-tool/DirectionsTool.output.schema.js +346 -0
  59. package/dist/commonjs/tools/directions-tool/DirectionsTool.output.schema.js.map +1 -0
  60. package/dist/commonjs/tools/directions-tool/cleanResponseData.d.ts +101 -2
  61. package/dist/commonjs/tools/directions-tool/cleanResponseData.d.ts.map +1 -1
  62. package/dist/commonjs/tools/directions-tool/cleanResponseData.js +92 -89
  63. package/dist/commonjs/tools/directions-tool/cleanResponseData.js.map +1 -1
  64. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.d.ts +11 -55
  65. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.d.ts.map +1 -1
  66. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.input.schema.d.ts +51 -0
  67. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.input.schema.d.ts.map +1 -0
  68. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.input.schema.js +66 -0
  69. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.input.schema.js.map +1 -0
  70. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.js +82 -69
  71. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.js.map +1 -1
  72. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.output.schema.d.ts +314 -0
  73. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.output.schema.d.ts.map +1 -0
  74. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.output.schema.js +58 -0
  75. package/dist/commonjs/tools/isochrone-tool/IsochroneTool.output.schema.js.map +1 -0
  76. package/dist/commonjs/tools/matrix-tool/MatrixTool.d.ts +10 -46
  77. package/dist/commonjs/tools/matrix-tool/MatrixTool.d.ts.map +1 -1
  78. package/dist/commonjs/tools/matrix-tool/MatrixTool.input.schema.d.ts +42 -0
  79. package/dist/commonjs/tools/matrix-tool/MatrixTool.input.schema.d.ts.map +1 -0
  80. package/dist/commonjs/tools/matrix-tool/MatrixTool.input.schema.js +56 -0
  81. package/dist/commonjs/tools/matrix-tool/MatrixTool.input.schema.js.map +1 -0
  82. package/dist/commonjs/tools/matrix-tool/MatrixTool.js +133 -83
  83. package/dist/commonjs/tools/matrix-tool/MatrixTool.js.map +1 -1
  84. package/dist/commonjs/tools/matrix-tool/MatrixTool.output.schema.d.ts +80 -0
  85. package/dist/commonjs/tools/matrix-tool/MatrixTool.output.schema.d.ts.map +1 -0
  86. package/dist/commonjs/tools/matrix-tool/MatrixTool.output.schema.js +22 -0
  87. package/dist/commonjs/tools/matrix-tool/MatrixTool.output.schema.js.map +1 -0
  88. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.d.ts +10 -40
  89. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.d.ts.map +1 -1
  90. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.d.ts +33 -0
  91. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.d.ts.map +1 -0
  92. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.js +49 -0
  93. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.js.map +1 -0
  94. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.js +58 -70
  95. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.js.map +1 -1
  96. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.d.ts +4085 -0
  97. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.d.ts.map +1 -0
  98. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.js +206 -0
  99. package/dist/commonjs/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.js.map +1 -0
  100. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.d.ts +10 -101
  101. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.d.ts.map +1 -1
  102. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.d.ts +94 -0
  103. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.d.ts.map +1 -0
  104. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.js +81 -0
  105. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.js.map +1 -0
  106. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.js +44 -92
  107. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.js.map +1 -1
  108. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.d.ts +1496 -0
  109. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.d.ts.map +1 -0
  110. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.js +124 -0
  111. package/dist/commonjs/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.js.map +1 -0
  112. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.d.ts +8 -172
  113. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.d.ts.map +1 -1
  114. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.input.schema.d.ts +312 -0
  115. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.input.schema.d.ts.map +1 -0
  116. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.input.schema.js +338 -0
  117. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.input.schema.js.map +1 -0
  118. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.js +26 -342
  119. package/dist/commonjs/tools/static-map-image-tool/StaticMapImageTool.js.map +1 -1
  120. package/dist/commonjs/tools/toolRegistry.d.ts.map +1 -1
  121. package/dist/commonjs/tools/toolRegistry.js +11 -8
  122. package/dist/commonjs/tools/toolRegistry.js.map +1 -1
  123. package/dist/commonjs/tools/version-tool/VersionTool.d.ts +5 -11
  124. package/dist/commonjs/tools/version-tool/VersionTool.d.ts.map +1 -1
  125. package/dist/commonjs/tools/version-tool/VersionTool.input.schema.d.ts +3 -0
  126. package/dist/commonjs/tools/version-tool/VersionTool.input.schema.d.ts.map +1 -0
  127. package/dist/commonjs/tools/version-tool/VersionTool.input.schema.js +8 -0
  128. package/dist/commonjs/tools/version-tool/VersionTool.input.schema.js.map +1 -0
  129. package/dist/commonjs/tools/version-tool/VersionTool.js +45 -29
  130. package/dist/commonjs/tools/version-tool/VersionTool.js.map +1 -1
  131. package/dist/commonjs/tools/version-tool/VersionTool.output.schema.d.ts +22 -0
  132. package/dist/commonjs/tools/version-tool/VersionTool.output.schema.d.ts.map +1 -0
  133. package/dist/commonjs/tools/version-tool/VersionTool.output.schema.js +15 -0
  134. package/dist/commonjs/tools/version-tool/VersionTool.output.schema.js.map +1 -0
  135. package/dist/commonjs/{tools/directions-tool/formatIsoDateTime.d.ts → utils/dateUtils.d.ts} +1 -1
  136. package/dist/commonjs/utils/dateUtils.d.ts.map +1 -0
  137. package/dist/commonjs/{tools/directions-tool/formatIsoDateTime.js → utils/dateUtils.js} +3 -1
  138. package/dist/commonjs/utils/dateUtils.js.map +1 -0
  139. package/dist/commonjs/utils/httpPipeline.d.ts +39 -0
  140. package/dist/commonjs/utils/httpPipeline.d.ts.map +1 -0
  141. package/dist/commonjs/utils/{fetchRequest.js → httpPipeline.js} +15 -13
  142. package/dist/commonjs/utils/httpPipeline.js.map +1 -0
  143. package/dist/commonjs/utils/tracing.d.ts +99 -0
  144. package/dist/commonjs/utils/tracing.d.ts.map +1 -0
  145. package/dist/commonjs/utils/tracing.js +283 -0
  146. package/dist/commonjs/utils/tracing.js.map +1 -0
  147. package/dist/commonjs/utils/types.d.ts +18 -0
  148. package/dist/commonjs/utils/types.d.ts.map +1 -0
  149. package/dist/commonjs/utils/types.js +5 -0
  150. package/dist/commonjs/utils/types.js.map +1 -0
  151. package/dist/commonjs/utils/versionUtils-cjs.cjs.map +1 -1
  152. package/dist/commonjs/utils/versionUtils-cjs.d.cts.map +1 -1
  153. package/dist/commonjs/utils/versionUtils.js +3 -1
  154. package/dist/commonjs/version.json +3 -3
  155. package/dist/esm/config/toolConfig.d.ts.map +1 -1
  156. package/dist/esm/config/toolConfig.js +2 -0
  157. package/dist/esm/config/toolConfig.js.map +1 -1
  158. package/dist/esm/index.d.ts.map +1 -1
  159. package/dist/esm/index.js +47 -3
  160. package/dist/esm/index.js.map +1 -1
  161. package/dist/esm/schemas/geojson.d.ts +115 -0
  162. package/dist/esm/schemas/geojson.d.ts.map +1 -0
  163. package/dist/esm/schemas/geojson.js +4 -0
  164. package/dist/esm/schemas/geojson.js.map +1 -0
  165. package/dist/esm/schemas/shared.d.ts +36 -0
  166. package/dist/esm/schemas/shared.d.ts.map +1 -0
  167. package/dist/esm/schemas/shared.js +32 -0
  168. package/dist/esm/schemas/shared.js.map +1 -0
  169. package/dist/esm/tools/BaseTool.d.ts +6 -3
  170. package/dist/esm/tools/BaseTool.d.ts.map +1 -1
  171. package/dist/esm/tools/BaseTool.js +14 -2
  172. package/dist/esm/tools/BaseTool.js.map +1 -1
  173. package/dist/esm/tools/MapboxApiBasedTool.d.ts +11 -51
  174. package/dist/esm/tools/MapboxApiBasedTool.d.ts.map +1 -1
  175. package/dist/esm/tools/MapboxApiBasedTool.js +59 -44
  176. package/dist/esm/tools/MapboxApiBasedTool.js.map +1 -1
  177. package/dist/esm/tools/category-list-tool/CategoryListTool.d.ts +10 -20
  178. package/dist/esm/tools/category-list-tool/CategoryListTool.d.ts.map +1 -1
  179. package/dist/esm/tools/category-list-tool/CategoryListTool.input.schema.d.ts +16 -0
  180. package/dist/esm/tools/category-list-tool/CategoryListTool.input.schema.d.ts.map +1 -0
  181. package/dist/esm/tools/category-list-tool/CategoryListTool.input.schema.js +20 -0
  182. package/dist/esm/tools/category-list-tool/CategoryListTool.input.schema.js.map +1 -0
  183. package/dist/esm/tools/category-list-tool/CategoryListTool.js +36 -29
  184. package/dist/esm/tools/category-list-tool/CategoryListTool.js.map +1 -1
  185. package/dist/esm/tools/category-list-tool/CategoryListTool.output.schema.d.ts +10 -0
  186. package/dist/esm/tools/category-list-tool/CategoryListTool.output.schema.d.ts.map +1 -0
  187. package/dist/esm/tools/category-list-tool/CategoryListTool.output.schema.js +9 -0
  188. package/dist/esm/tools/category-list-tool/CategoryListTool.output.schema.js.map +1 -0
  189. package/dist/esm/tools/category-search-tool/CategorySearchTool.d.ts +10 -83
  190. package/dist/esm/tools/category-search-tool/CategorySearchTool.d.ts.map +1 -1
  191. package/dist/esm/tools/category-search-tool/CategorySearchTool.input.schema.d.ts +76 -0
  192. package/dist/esm/tools/category-search-tool/CategorySearchTool.input.schema.d.ts.map +1 -0
  193. package/dist/esm/tools/category-search-tool/CategorySearchTool.input.schema.js +79 -0
  194. package/dist/esm/tools/category-search-tool/CategorySearchTool.input.schema.js.map +1 -0
  195. package/dist/esm/tools/category-search-tool/CategorySearchTool.js +44 -97
  196. package/dist/esm/tools/category-search-tool/CategorySearchTool.js.map +1 -1
  197. package/dist/esm/tools/category-search-tool/CategorySearchTool.output.schema.d.ts +2184 -0
  198. package/dist/esm/tools/category-search-tool/CategorySearchTool.output.schema.d.ts.map +1 -0
  199. package/dist/esm/tools/category-search-tool/CategorySearchTool.output.schema.js +145 -0
  200. package/dist/esm/tools/category-search-tool/CategorySearchTool.output.schema.js.map +1 -0
  201. package/dist/esm/tools/directions-tool/DirectionsTool.d.ts +10 -54
  202. package/dist/esm/tools/directions-tool/DirectionsTool.d.ts.map +1 -1
  203. package/dist/esm/tools/directions-tool/DirectionsTool.input.schema.d.ts +51 -0
  204. package/dist/esm/tools/directions-tool/DirectionsTool.input.schema.d.ts.map +1 -0
  205. package/dist/esm/tools/directions-tool/DirectionsTool.input.schema.js +239 -0
  206. package/dist/esm/tools/directions-tool/DirectionsTool.input.schema.js.map +1 -0
  207. package/dist/esm/tools/directions-tool/DirectionsTool.js +103 -263
  208. package/dist/esm/tools/directions-tool/DirectionsTool.js.map +1 -1
  209. package/dist/esm/tools/directions-tool/DirectionsTool.output.schema.d.ts +7880 -0
  210. package/dist/esm/tools/directions-tool/DirectionsTool.output.schema.d.ts.map +1 -0
  211. package/dist/esm/tools/directions-tool/DirectionsTool.output.schema.js +343 -0
  212. package/dist/esm/tools/directions-tool/DirectionsTool.output.schema.js.map +1 -0
  213. package/dist/esm/tools/directions-tool/cleanResponseData.d.ts +101 -2
  214. package/dist/esm/tools/directions-tool/cleanResponseData.d.ts.map +1 -1
  215. package/dist/esm/tools/directions-tool/cleanResponseData.js +92 -89
  216. package/dist/esm/tools/directions-tool/cleanResponseData.js.map +1 -1
  217. package/dist/esm/tools/isochrone-tool/IsochroneTool.d.ts +11 -55
  218. package/dist/esm/tools/isochrone-tool/IsochroneTool.d.ts.map +1 -1
  219. package/dist/esm/tools/isochrone-tool/IsochroneTool.input.schema.d.ts +51 -0
  220. package/dist/esm/tools/isochrone-tool/IsochroneTool.input.schema.d.ts.map +1 -0
  221. package/dist/esm/tools/isochrone-tool/IsochroneTool.input.schema.js +63 -0
  222. package/dist/esm/tools/isochrone-tool/IsochroneTool.input.schema.js.map +1 -0
  223. package/dist/esm/tools/isochrone-tool/IsochroneTool.js +82 -69
  224. package/dist/esm/tools/isochrone-tool/IsochroneTool.js.map +1 -1
  225. package/dist/esm/tools/isochrone-tool/IsochroneTool.output.schema.d.ts +314 -0
  226. package/dist/esm/tools/isochrone-tool/IsochroneTool.output.schema.d.ts.map +1 -0
  227. package/dist/esm/tools/isochrone-tool/IsochroneTool.output.schema.js +55 -0
  228. package/dist/esm/tools/isochrone-tool/IsochroneTool.output.schema.js.map +1 -0
  229. package/dist/esm/tools/matrix-tool/MatrixTool.d.ts +10 -46
  230. package/dist/esm/tools/matrix-tool/MatrixTool.d.ts.map +1 -1
  231. package/dist/esm/tools/matrix-tool/MatrixTool.input.schema.d.ts +42 -0
  232. package/dist/esm/tools/matrix-tool/MatrixTool.input.schema.d.ts.map +1 -0
  233. package/dist/esm/tools/matrix-tool/MatrixTool.input.schema.js +53 -0
  234. package/dist/esm/tools/matrix-tool/MatrixTool.input.schema.js.map +1 -0
  235. package/dist/esm/tools/matrix-tool/MatrixTool.js +133 -83
  236. package/dist/esm/tools/matrix-tool/MatrixTool.js.map +1 -1
  237. package/dist/esm/tools/matrix-tool/MatrixTool.output.schema.d.ts +80 -0
  238. package/dist/esm/tools/matrix-tool/MatrixTool.output.schema.d.ts.map +1 -0
  239. package/dist/esm/tools/matrix-tool/MatrixTool.output.schema.js +19 -0
  240. package/dist/esm/tools/matrix-tool/MatrixTool.output.schema.js.map +1 -0
  241. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.d.ts +10 -40
  242. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.d.ts.map +1 -1
  243. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.d.ts +33 -0
  244. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.d.ts.map +1 -0
  245. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.js +46 -0
  246. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.input.schema.js.map +1 -0
  247. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.js +58 -70
  248. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.js.map +1 -1
  249. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.d.ts +4085 -0
  250. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.d.ts.map +1 -0
  251. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.js +203 -0
  252. package/dist/esm/tools/reverse-geocode-tool/ReverseGeocodeTool.output.schema.js.map +1 -0
  253. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.d.ts +10 -101
  254. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.d.ts.map +1 -1
  255. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.d.ts +94 -0
  256. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.d.ts.map +1 -0
  257. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.js +78 -0
  258. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.input.schema.js.map +1 -0
  259. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.js +44 -92
  260. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.js.map +1 -1
  261. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.d.ts +1496 -0
  262. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.d.ts.map +1 -0
  263. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.js +121 -0
  264. package/dist/esm/tools/search-and-geocode-tool/SearchAndGeocodeTool.output.schema.js.map +1 -0
  265. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.d.ts +8 -172
  266. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.d.ts.map +1 -1
  267. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.input.schema.d.ts +312 -0
  268. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.input.schema.d.ts.map +1 -0
  269. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.input.schema.js +335 -0
  270. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.input.schema.js.map +1 -0
  271. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.js +26 -342
  272. package/dist/esm/tools/static-map-image-tool/StaticMapImageTool.js.map +1 -1
  273. package/dist/esm/tools/toolRegistry.d.ts.map +1 -1
  274. package/dist/esm/tools/toolRegistry.js +11 -8
  275. package/dist/esm/tools/toolRegistry.js.map +1 -1
  276. package/dist/esm/tools/version-tool/VersionTool.d.ts +5 -11
  277. package/dist/esm/tools/version-tool/VersionTool.d.ts.map +1 -1
  278. package/dist/esm/tools/version-tool/VersionTool.input.schema.d.ts +3 -0
  279. package/dist/esm/tools/version-tool/VersionTool.input.schema.d.ts.map +1 -0
  280. package/dist/esm/tools/version-tool/VersionTool.input.schema.js +5 -0
  281. package/dist/esm/tools/version-tool/VersionTool.input.schema.js.map +1 -0
  282. package/dist/esm/tools/version-tool/VersionTool.js +45 -29
  283. package/dist/esm/tools/version-tool/VersionTool.js.map +1 -1
  284. package/dist/esm/tools/version-tool/VersionTool.output.schema.d.ts +22 -0
  285. package/dist/esm/tools/version-tool/VersionTool.output.schema.d.ts.map +1 -0
  286. package/dist/esm/tools/version-tool/VersionTool.output.schema.js +12 -0
  287. package/dist/esm/tools/version-tool/VersionTool.output.schema.js.map +1 -0
  288. package/dist/esm/{tools/directions-tool/formatIsoDateTime.d.ts → utils/dateUtils.d.ts} +1 -1
  289. package/dist/esm/utils/dateUtils.d.ts.map +1 -0
  290. package/dist/esm/{tools/directions-tool/formatIsoDateTime.js → utils/dateUtils.js} +3 -1
  291. package/dist/esm/utils/dateUtils.js.map +1 -0
  292. package/dist/esm/utils/httpPipeline.d.ts +39 -0
  293. package/dist/esm/utils/httpPipeline.d.ts.map +1 -0
  294. package/dist/esm/utils/{fetchRequest.js → httpPipeline.js} +13 -11
  295. package/dist/esm/utils/httpPipeline.js.map +1 -0
  296. package/dist/esm/utils/tracing.d.ts +99 -0
  297. package/dist/esm/utils/tracing.d.ts.map +1 -0
  298. package/dist/esm/utils/tracing.js +269 -0
  299. package/dist/esm/utils/tracing.js.map +1 -0
  300. package/dist/esm/utils/types.d.ts +18 -0
  301. package/dist/esm/utils/types.d.ts.map +1 -0
  302. package/dist/esm/utils/types.js +4 -0
  303. package/dist/esm/utils/types.js.map +1 -0
  304. package/dist/esm/utils/versionUtils.d.ts.map +1 -1
  305. package/dist/esm/utils/versionUtils.js +3 -1
  306. package/dist/esm/utils/versionUtils.js.map +1 -1
  307. package/dist/esm/version.json +3 -3
  308. package/package.json +28 -8
  309. package/dist/commonjs/tools/directions-tool/formatIsoDateTime.d.ts.map +0 -1
  310. package/dist/commonjs/tools/directions-tool/formatIsoDateTime.js.map +0 -1
  311. package/dist/commonjs/utils/fetchRequest.d.ts +0 -38
  312. package/dist/commonjs/utils/fetchRequest.d.ts.map +0 -1
  313. package/dist/commonjs/utils/fetchRequest.js.map +0 -1
  314. package/dist/esm/tools/directions-tool/formatIsoDateTime.d.ts.map +0 -1
  315. package/dist/esm/tools/directions-tool/formatIsoDateTime.js.map +0 -1
  316. package/dist/esm/utils/fetchRequest.d.ts +0 -38
  317. package/dist/esm/utils/fetchRequest.d.ts.map +0 -1
  318. package/dist/esm/utils/fetchRequest.js.map +0 -1
@@ -0,0 +1,2184 @@
1
+ import { z } from 'zod';
2
+ declare const ContextSchema: z.ZodObject<{
3
+ country: z.ZodOptional<z.ZodObject<{
4
+ id: z.ZodOptional<z.ZodString>;
5
+ name: z.ZodString;
6
+ country_code: z.ZodString;
7
+ country_code_alpha_3: z.ZodString;
8
+ }, "strip", z.ZodTypeAny, {
9
+ name: string;
10
+ country_code: string;
11
+ country_code_alpha_3: string;
12
+ id?: string | undefined;
13
+ }, {
14
+ name: string;
15
+ country_code: string;
16
+ country_code_alpha_3: string;
17
+ id?: string | undefined;
18
+ }>>;
19
+ region: z.ZodOptional<z.ZodObject<{
20
+ id: z.ZodOptional<z.ZodString>;
21
+ name: z.ZodString;
22
+ region_code: z.ZodString;
23
+ region_code_full: z.ZodString;
24
+ }, "strip", z.ZodTypeAny, {
25
+ name: string;
26
+ region_code: string;
27
+ region_code_full: string;
28
+ id?: string | undefined;
29
+ }, {
30
+ name: string;
31
+ region_code: string;
32
+ region_code_full: string;
33
+ id?: string | undefined;
34
+ }>>;
35
+ postcode: z.ZodOptional<z.ZodObject<{
36
+ id: z.ZodOptional<z.ZodString>;
37
+ name: z.ZodString;
38
+ }, "strip", z.ZodTypeAny, {
39
+ name: string;
40
+ id?: string | undefined;
41
+ }, {
42
+ name: string;
43
+ id?: string | undefined;
44
+ }>>;
45
+ district: z.ZodOptional<z.ZodObject<{
46
+ id: z.ZodOptional<z.ZodString>;
47
+ name: z.ZodString;
48
+ }, "strip", z.ZodTypeAny, {
49
+ name: string;
50
+ id?: string | undefined;
51
+ }, {
52
+ name: string;
53
+ id?: string | undefined;
54
+ }>>;
55
+ place: z.ZodOptional<z.ZodObject<{
56
+ id: z.ZodOptional<z.ZodString>;
57
+ name: z.ZodString;
58
+ }, "strip", z.ZodTypeAny, {
59
+ name: string;
60
+ id?: string | undefined;
61
+ }, {
62
+ name: string;
63
+ id?: string | undefined;
64
+ }>>;
65
+ locality: z.ZodOptional<z.ZodObject<{
66
+ id: z.ZodOptional<z.ZodString>;
67
+ name: z.ZodString;
68
+ }, "strip", z.ZodTypeAny, {
69
+ name: string;
70
+ id?: string | undefined;
71
+ }, {
72
+ name: string;
73
+ id?: string | undefined;
74
+ }>>;
75
+ neighborhood: z.ZodOptional<z.ZodObject<{
76
+ id: z.ZodOptional<z.ZodString>;
77
+ name: z.ZodString;
78
+ }, "strip", z.ZodTypeAny, {
79
+ name: string;
80
+ id?: string | undefined;
81
+ }, {
82
+ name: string;
83
+ id?: string | undefined;
84
+ }>>;
85
+ address: z.ZodOptional<z.ZodObject<{
86
+ id: z.ZodOptional<z.ZodString>;
87
+ name: z.ZodString;
88
+ address_number: z.ZodOptional<z.ZodString>;
89
+ street_name: z.ZodOptional<z.ZodString>;
90
+ }, "strip", z.ZodTypeAny, {
91
+ name: string;
92
+ id?: string | undefined;
93
+ address_number?: string | undefined;
94
+ street_name?: string | undefined;
95
+ }, {
96
+ name: string;
97
+ id?: string | undefined;
98
+ address_number?: string | undefined;
99
+ street_name?: string | undefined;
100
+ }>>;
101
+ street: z.ZodOptional<z.ZodObject<{
102
+ id: z.ZodOptional<z.ZodString>;
103
+ name: z.ZodString;
104
+ }, "strip", z.ZodTypeAny, {
105
+ name: string;
106
+ id?: string | undefined;
107
+ }, {
108
+ name: string;
109
+ id?: string | undefined;
110
+ }>>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ country?: {
113
+ name: string;
114
+ country_code: string;
115
+ country_code_alpha_3: string;
116
+ id?: string | undefined;
117
+ } | undefined;
118
+ region?: {
119
+ name: string;
120
+ region_code: string;
121
+ region_code_full: string;
122
+ id?: string | undefined;
123
+ } | undefined;
124
+ postcode?: {
125
+ name: string;
126
+ id?: string | undefined;
127
+ } | undefined;
128
+ district?: {
129
+ name: string;
130
+ id?: string | undefined;
131
+ } | undefined;
132
+ place?: {
133
+ name: string;
134
+ id?: string | undefined;
135
+ } | undefined;
136
+ locality?: {
137
+ name: string;
138
+ id?: string | undefined;
139
+ } | undefined;
140
+ neighborhood?: {
141
+ name: string;
142
+ id?: string | undefined;
143
+ } | undefined;
144
+ address?: {
145
+ name: string;
146
+ id?: string | undefined;
147
+ address_number?: string | undefined;
148
+ street_name?: string | undefined;
149
+ } | undefined;
150
+ street?: {
151
+ name: string;
152
+ id?: string | undefined;
153
+ } | undefined;
154
+ }, {
155
+ country?: {
156
+ name: string;
157
+ country_code: string;
158
+ country_code_alpha_3: string;
159
+ id?: string | undefined;
160
+ } | undefined;
161
+ region?: {
162
+ name: string;
163
+ region_code: string;
164
+ region_code_full: string;
165
+ id?: string | undefined;
166
+ } | undefined;
167
+ postcode?: {
168
+ name: string;
169
+ id?: string | undefined;
170
+ } | undefined;
171
+ district?: {
172
+ name: string;
173
+ id?: string | undefined;
174
+ } | undefined;
175
+ place?: {
176
+ name: string;
177
+ id?: string | undefined;
178
+ } | undefined;
179
+ locality?: {
180
+ name: string;
181
+ id?: string | undefined;
182
+ } | undefined;
183
+ neighborhood?: {
184
+ name: string;
185
+ id?: string | undefined;
186
+ } | undefined;
187
+ address?: {
188
+ name: string;
189
+ id?: string | undefined;
190
+ address_number?: string | undefined;
191
+ street_name?: string | undefined;
192
+ } | undefined;
193
+ street?: {
194
+ name: string;
195
+ id?: string | undefined;
196
+ } | undefined;
197
+ }>;
198
+ declare const CoordinatesSchema: z.ZodObject<{
199
+ longitude: z.ZodNumber;
200
+ latitude: z.ZodNumber;
201
+ accuracy: z.ZodOptional<z.ZodEnum<["rooftop", "parcel", "point", "interpolated", "intersection", "approximate", "street"]>>;
202
+ routable_points: z.ZodOptional<z.ZodArray<z.ZodObject<{
203
+ name: z.ZodString;
204
+ latitude: z.ZodNumber;
205
+ longitude: z.ZodNumber;
206
+ note: z.ZodOptional<z.ZodString>;
207
+ }, "strip", z.ZodTypeAny, {
208
+ name: string;
209
+ longitude: number;
210
+ latitude: number;
211
+ note?: string | undefined;
212
+ }, {
213
+ name: string;
214
+ longitude: number;
215
+ latitude: number;
216
+ note?: string | undefined;
217
+ }>, "many">>;
218
+ }, "strip", z.ZodTypeAny, {
219
+ longitude: number;
220
+ latitude: number;
221
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
222
+ routable_points?: {
223
+ name: string;
224
+ longitude: number;
225
+ latitude: number;
226
+ note?: string | undefined;
227
+ }[] | undefined;
228
+ }, {
229
+ longitude: number;
230
+ latitude: number;
231
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
232
+ routable_points?: {
233
+ name: string;
234
+ longitude: number;
235
+ latitude: number;
236
+ note?: string | undefined;
237
+ }[] | undefined;
238
+ }>;
239
+ declare const MetadataSchema: z.ZodObject<{
240
+ primary_photo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
241
+ reading: z.ZodOptional<z.ZodObject<{
242
+ ja_kana: z.ZodOptional<z.ZodString>;
243
+ ja_latin: z.ZodOptional<z.ZodString>;
244
+ }, "strip", z.ZodTypeAny, {
245
+ ja_kana?: string | undefined;
246
+ ja_latin?: string | undefined;
247
+ }, {
248
+ ja_kana?: string | undefined;
249
+ ja_latin?: string | undefined;
250
+ }>>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ primary_photo?: string[] | undefined;
253
+ reading?: {
254
+ ja_kana?: string | undefined;
255
+ ja_latin?: string | undefined;
256
+ } | undefined;
257
+ }, {
258
+ primary_photo?: string[] | undefined;
259
+ reading?: {
260
+ ja_kana?: string | undefined;
261
+ ja_latin?: string | undefined;
262
+ } | undefined;
263
+ }>;
264
+ declare const FeaturePropertiesSchema: z.ZodObject<{
265
+ name: z.ZodString;
266
+ name_preferred: z.ZodOptional<z.ZodString>;
267
+ mapbox_id: z.ZodString;
268
+ feature_type: z.ZodEnum<["poi", "country", "region", "postcode", "district", "place", "locality", "neighborhood", "address"]>;
269
+ address: z.ZodOptional<z.ZodString>;
270
+ full_address: z.ZodOptional<z.ZodString>;
271
+ place_formatted: z.ZodOptional<z.ZodString>;
272
+ context: z.ZodObject<{
273
+ country: z.ZodOptional<z.ZodObject<{
274
+ id: z.ZodOptional<z.ZodString>;
275
+ name: z.ZodString;
276
+ country_code: z.ZodString;
277
+ country_code_alpha_3: z.ZodString;
278
+ }, "strip", z.ZodTypeAny, {
279
+ name: string;
280
+ country_code: string;
281
+ country_code_alpha_3: string;
282
+ id?: string | undefined;
283
+ }, {
284
+ name: string;
285
+ country_code: string;
286
+ country_code_alpha_3: string;
287
+ id?: string | undefined;
288
+ }>>;
289
+ region: z.ZodOptional<z.ZodObject<{
290
+ id: z.ZodOptional<z.ZodString>;
291
+ name: z.ZodString;
292
+ region_code: z.ZodString;
293
+ region_code_full: z.ZodString;
294
+ }, "strip", z.ZodTypeAny, {
295
+ name: string;
296
+ region_code: string;
297
+ region_code_full: string;
298
+ id?: string | undefined;
299
+ }, {
300
+ name: string;
301
+ region_code: string;
302
+ region_code_full: string;
303
+ id?: string | undefined;
304
+ }>>;
305
+ postcode: z.ZodOptional<z.ZodObject<{
306
+ id: z.ZodOptional<z.ZodString>;
307
+ name: z.ZodString;
308
+ }, "strip", z.ZodTypeAny, {
309
+ name: string;
310
+ id?: string | undefined;
311
+ }, {
312
+ name: string;
313
+ id?: string | undefined;
314
+ }>>;
315
+ district: z.ZodOptional<z.ZodObject<{
316
+ id: z.ZodOptional<z.ZodString>;
317
+ name: z.ZodString;
318
+ }, "strip", z.ZodTypeAny, {
319
+ name: string;
320
+ id?: string | undefined;
321
+ }, {
322
+ name: string;
323
+ id?: string | undefined;
324
+ }>>;
325
+ place: z.ZodOptional<z.ZodObject<{
326
+ id: z.ZodOptional<z.ZodString>;
327
+ name: z.ZodString;
328
+ }, "strip", z.ZodTypeAny, {
329
+ name: string;
330
+ id?: string | undefined;
331
+ }, {
332
+ name: string;
333
+ id?: string | undefined;
334
+ }>>;
335
+ locality: z.ZodOptional<z.ZodObject<{
336
+ id: z.ZodOptional<z.ZodString>;
337
+ name: z.ZodString;
338
+ }, "strip", z.ZodTypeAny, {
339
+ name: string;
340
+ id?: string | undefined;
341
+ }, {
342
+ name: string;
343
+ id?: string | undefined;
344
+ }>>;
345
+ neighborhood: z.ZodOptional<z.ZodObject<{
346
+ id: z.ZodOptional<z.ZodString>;
347
+ name: z.ZodString;
348
+ }, "strip", z.ZodTypeAny, {
349
+ name: string;
350
+ id?: string | undefined;
351
+ }, {
352
+ name: string;
353
+ id?: string | undefined;
354
+ }>>;
355
+ address: z.ZodOptional<z.ZodObject<{
356
+ id: z.ZodOptional<z.ZodString>;
357
+ name: z.ZodString;
358
+ address_number: z.ZodOptional<z.ZodString>;
359
+ street_name: z.ZodOptional<z.ZodString>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ name: string;
362
+ id?: string | undefined;
363
+ address_number?: string | undefined;
364
+ street_name?: string | undefined;
365
+ }, {
366
+ name: string;
367
+ id?: string | undefined;
368
+ address_number?: string | undefined;
369
+ street_name?: string | undefined;
370
+ }>>;
371
+ street: z.ZodOptional<z.ZodObject<{
372
+ id: z.ZodOptional<z.ZodString>;
373
+ name: z.ZodString;
374
+ }, "strip", z.ZodTypeAny, {
375
+ name: string;
376
+ id?: string | undefined;
377
+ }, {
378
+ name: string;
379
+ id?: string | undefined;
380
+ }>>;
381
+ }, "strip", z.ZodTypeAny, {
382
+ country?: {
383
+ name: string;
384
+ country_code: string;
385
+ country_code_alpha_3: string;
386
+ id?: string | undefined;
387
+ } | undefined;
388
+ region?: {
389
+ name: string;
390
+ region_code: string;
391
+ region_code_full: string;
392
+ id?: string | undefined;
393
+ } | undefined;
394
+ postcode?: {
395
+ name: string;
396
+ id?: string | undefined;
397
+ } | undefined;
398
+ district?: {
399
+ name: string;
400
+ id?: string | undefined;
401
+ } | undefined;
402
+ place?: {
403
+ name: string;
404
+ id?: string | undefined;
405
+ } | undefined;
406
+ locality?: {
407
+ name: string;
408
+ id?: string | undefined;
409
+ } | undefined;
410
+ neighborhood?: {
411
+ name: string;
412
+ id?: string | undefined;
413
+ } | undefined;
414
+ address?: {
415
+ name: string;
416
+ id?: string | undefined;
417
+ address_number?: string | undefined;
418
+ street_name?: string | undefined;
419
+ } | undefined;
420
+ street?: {
421
+ name: string;
422
+ id?: string | undefined;
423
+ } | undefined;
424
+ }, {
425
+ country?: {
426
+ name: string;
427
+ country_code: string;
428
+ country_code_alpha_3: string;
429
+ id?: string | undefined;
430
+ } | undefined;
431
+ region?: {
432
+ name: string;
433
+ region_code: string;
434
+ region_code_full: string;
435
+ id?: string | undefined;
436
+ } | undefined;
437
+ postcode?: {
438
+ name: string;
439
+ id?: string | undefined;
440
+ } | undefined;
441
+ district?: {
442
+ name: string;
443
+ id?: string | undefined;
444
+ } | undefined;
445
+ place?: {
446
+ name: string;
447
+ id?: string | undefined;
448
+ } | undefined;
449
+ locality?: {
450
+ name: string;
451
+ id?: string | undefined;
452
+ } | undefined;
453
+ neighborhood?: {
454
+ name: string;
455
+ id?: string | undefined;
456
+ } | undefined;
457
+ address?: {
458
+ name: string;
459
+ id?: string | undefined;
460
+ address_number?: string | undefined;
461
+ street_name?: string | undefined;
462
+ } | undefined;
463
+ street?: {
464
+ name: string;
465
+ id?: string | undefined;
466
+ } | undefined;
467
+ }>;
468
+ coordinates: z.ZodObject<{
469
+ longitude: z.ZodNumber;
470
+ latitude: z.ZodNumber;
471
+ accuracy: z.ZodOptional<z.ZodEnum<["rooftop", "parcel", "point", "interpolated", "intersection", "approximate", "street"]>>;
472
+ routable_points: z.ZodOptional<z.ZodArray<z.ZodObject<{
473
+ name: z.ZodString;
474
+ latitude: z.ZodNumber;
475
+ longitude: z.ZodNumber;
476
+ note: z.ZodOptional<z.ZodString>;
477
+ }, "strip", z.ZodTypeAny, {
478
+ name: string;
479
+ longitude: number;
480
+ latitude: number;
481
+ note?: string | undefined;
482
+ }, {
483
+ name: string;
484
+ longitude: number;
485
+ latitude: number;
486
+ note?: string | undefined;
487
+ }>, "many">>;
488
+ }, "strip", z.ZodTypeAny, {
489
+ longitude: number;
490
+ latitude: number;
491
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
492
+ routable_points?: {
493
+ name: string;
494
+ longitude: number;
495
+ latitude: number;
496
+ note?: string | undefined;
497
+ }[] | undefined;
498
+ }, {
499
+ longitude: number;
500
+ latitude: number;
501
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
502
+ routable_points?: {
503
+ name: string;
504
+ longitude: number;
505
+ latitude: number;
506
+ note?: string | undefined;
507
+ }[] | undefined;
508
+ }>;
509
+ bbox: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
510
+ language: z.ZodOptional<z.ZodString>;
511
+ maki: z.ZodOptional<z.ZodString>;
512
+ poi_category: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
513
+ poi_category_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
514
+ brand: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
515
+ brand_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
516
+ external_ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
517
+ metadata: z.ZodOptional<z.ZodObject<{
518
+ primary_photo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
519
+ reading: z.ZodOptional<z.ZodObject<{
520
+ ja_kana: z.ZodOptional<z.ZodString>;
521
+ ja_latin: z.ZodOptional<z.ZodString>;
522
+ }, "strip", z.ZodTypeAny, {
523
+ ja_kana?: string | undefined;
524
+ ja_latin?: string | undefined;
525
+ }, {
526
+ ja_kana?: string | undefined;
527
+ ja_latin?: string | undefined;
528
+ }>>;
529
+ }, "strip", z.ZodTypeAny, {
530
+ primary_photo?: string[] | undefined;
531
+ reading?: {
532
+ ja_kana?: string | undefined;
533
+ ja_latin?: string | undefined;
534
+ } | undefined;
535
+ }, {
536
+ primary_photo?: string[] | undefined;
537
+ reading?: {
538
+ ja_kana?: string | undefined;
539
+ ja_latin?: string | undefined;
540
+ } | undefined;
541
+ }>>;
542
+ distance: z.ZodOptional<z.ZodNumber>;
543
+ eta: z.ZodOptional<z.ZodNumber>;
544
+ added_distance: z.ZodOptional<z.ZodNumber>;
545
+ added_time: z.ZodOptional<z.ZodNumber>;
546
+ }, "strip", z.ZodTypeAny, {
547
+ name: string;
548
+ mapbox_id: string;
549
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
550
+ context: {
551
+ country?: {
552
+ name: string;
553
+ country_code: string;
554
+ country_code_alpha_3: string;
555
+ id?: string | undefined;
556
+ } | undefined;
557
+ region?: {
558
+ name: string;
559
+ region_code: string;
560
+ region_code_full: string;
561
+ id?: string | undefined;
562
+ } | undefined;
563
+ postcode?: {
564
+ name: string;
565
+ id?: string | undefined;
566
+ } | undefined;
567
+ district?: {
568
+ name: string;
569
+ id?: string | undefined;
570
+ } | undefined;
571
+ place?: {
572
+ name: string;
573
+ id?: string | undefined;
574
+ } | undefined;
575
+ locality?: {
576
+ name: string;
577
+ id?: string | undefined;
578
+ } | undefined;
579
+ neighborhood?: {
580
+ name: string;
581
+ id?: string | undefined;
582
+ } | undefined;
583
+ address?: {
584
+ name: string;
585
+ id?: string | undefined;
586
+ address_number?: string | undefined;
587
+ street_name?: string | undefined;
588
+ } | undefined;
589
+ street?: {
590
+ name: string;
591
+ id?: string | undefined;
592
+ } | undefined;
593
+ };
594
+ coordinates: {
595
+ longitude: number;
596
+ latitude: number;
597
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
598
+ routable_points?: {
599
+ name: string;
600
+ longitude: number;
601
+ latitude: number;
602
+ note?: string | undefined;
603
+ }[] | undefined;
604
+ };
605
+ language?: string | undefined;
606
+ bbox?: [number, number, number, number] | undefined;
607
+ address?: string | undefined;
608
+ name_preferred?: string | undefined;
609
+ full_address?: string | undefined;
610
+ place_formatted?: string | undefined;
611
+ maki?: string | undefined;
612
+ poi_category?: string[] | undefined;
613
+ poi_category_ids?: string[] | undefined;
614
+ brand?: string[] | undefined;
615
+ brand_id?: string[] | undefined;
616
+ external_ids?: Record<string, string> | undefined;
617
+ metadata?: {
618
+ primary_photo?: string[] | undefined;
619
+ reading?: {
620
+ ja_kana?: string | undefined;
621
+ ja_latin?: string | undefined;
622
+ } | undefined;
623
+ } | undefined;
624
+ distance?: number | undefined;
625
+ eta?: number | undefined;
626
+ added_distance?: number | undefined;
627
+ added_time?: number | undefined;
628
+ }, {
629
+ name: string;
630
+ mapbox_id: string;
631
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
632
+ context: {
633
+ country?: {
634
+ name: string;
635
+ country_code: string;
636
+ country_code_alpha_3: string;
637
+ id?: string | undefined;
638
+ } | undefined;
639
+ region?: {
640
+ name: string;
641
+ region_code: string;
642
+ region_code_full: string;
643
+ id?: string | undefined;
644
+ } | undefined;
645
+ postcode?: {
646
+ name: string;
647
+ id?: string | undefined;
648
+ } | undefined;
649
+ district?: {
650
+ name: string;
651
+ id?: string | undefined;
652
+ } | undefined;
653
+ place?: {
654
+ name: string;
655
+ id?: string | undefined;
656
+ } | undefined;
657
+ locality?: {
658
+ name: string;
659
+ id?: string | undefined;
660
+ } | undefined;
661
+ neighborhood?: {
662
+ name: string;
663
+ id?: string | undefined;
664
+ } | undefined;
665
+ address?: {
666
+ name: string;
667
+ id?: string | undefined;
668
+ address_number?: string | undefined;
669
+ street_name?: string | undefined;
670
+ } | undefined;
671
+ street?: {
672
+ name: string;
673
+ id?: string | undefined;
674
+ } | undefined;
675
+ };
676
+ coordinates: {
677
+ longitude: number;
678
+ latitude: number;
679
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
680
+ routable_points?: {
681
+ name: string;
682
+ longitude: number;
683
+ latitude: number;
684
+ note?: string | undefined;
685
+ }[] | undefined;
686
+ };
687
+ language?: string | undefined;
688
+ bbox?: [number, number, number, number] | undefined;
689
+ address?: string | undefined;
690
+ name_preferred?: string | undefined;
691
+ full_address?: string | undefined;
692
+ place_formatted?: string | undefined;
693
+ maki?: string | undefined;
694
+ poi_category?: string[] | undefined;
695
+ poi_category_ids?: string[] | undefined;
696
+ brand?: string[] | undefined;
697
+ brand_id?: string[] | undefined;
698
+ external_ids?: Record<string, string> | undefined;
699
+ metadata?: {
700
+ primary_photo?: string[] | undefined;
701
+ reading?: {
702
+ ja_kana?: string | undefined;
703
+ ja_latin?: string | undefined;
704
+ } | undefined;
705
+ } | undefined;
706
+ distance?: number | undefined;
707
+ eta?: number | undefined;
708
+ added_distance?: number | undefined;
709
+ added_time?: number | undefined;
710
+ }>;
711
+ declare const FeatureSchema: z.ZodObject<{
712
+ type: z.ZodLiteral<"Feature">;
713
+ geometry: z.ZodObject<{
714
+ type: z.ZodLiteral<"Point">;
715
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
716
+ }, "strip", z.ZodTypeAny, {
717
+ type: "Point";
718
+ coordinates: [number, number];
719
+ }, {
720
+ type: "Point";
721
+ coordinates: [number, number];
722
+ }>;
723
+ properties: z.ZodObject<{
724
+ name: z.ZodString;
725
+ name_preferred: z.ZodOptional<z.ZodString>;
726
+ mapbox_id: z.ZodString;
727
+ feature_type: z.ZodEnum<["poi", "country", "region", "postcode", "district", "place", "locality", "neighborhood", "address"]>;
728
+ address: z.ZodOptional<z.ZodString>;
729
+ full_address: z.ZodOptional<z.ZodString>;
730
+ place_formatted: z.ZodOptional<z.ZodString>;
731
+ context: z.ZodObject<{
732
+ country: z.ZodOptional<z.ZodObject<{
733
+ id: z.ZodOptional<z.ZodString>;
734
+ name: z.ZodString;
735
+ country_code: z.ZodString;
736
+ country_code_alpha_3: z.ZodString;
737
+ }, "strip", z.ZodTypeAny, {
738
+ name: string;
739
+ country_code: string;
740
+ country_code_alpha_3: string;
741
+ id?: string | undefined;
742
+ }, {
743
+ name: string;
744
+ country_code: string;
745
+ country_code_alpha_3: string;
746
+ id?: string | undefined;
747
+ }>>;
748
+ region: z.ZodOptional<z.ZodObject<{
749
+ id: z.ZodOptional<z.ZodString>;
750
+ name: z.ZodString;
751
+ region_code: z.ZodString;
752
+ region_code_full: z.ZodString;
753
+ }, "strip", z.ZodTypeAny, {
754
+ name: string;
755
+ region_code: string;
756
+ region_code_full: string;
757
+ id?: string | undefined;
758
+ }, {
759
+ name: string;
760
+ region_code: string;
761
+ region_code_full: string;
762
+ id?: string | undefined;
763
+ }>>;
764
+ postcode: z.ZodOptional<z.ZodObject<{
765
+ id: z.ZodOptional<z.ZodString>;
766
+ name: z.ZodString;
767
+ }, "strip", z.ZodTypeAny, {
768
+ name: string;
769
+ id?: string | undefined;
770
+ }, {
771
+ name: string;
772
+ id?: string | undefined;
773
+ }>>;
774
+ district: z.ZodOptional<z.ZodObject<{
775
+ id: z.ZodOptional<z.ZodString>;
776
+ name: z.ZodString;
777
+ }, "strip", z.ZodTypeAny, {
778
+ name: string;
779
+ id?: string | undefined;
780
+ }, {
781
+ name: string;
782
+ id?: string | undefined;
783
+ }>>;
784
+ place: z.ZodOptional<z.ZodObject<{
785
+ id: z.ZodOptional<z.ZodString>;
786
+ name: z.ZodString;
787
+ }, "strip", z.ZodTypeAny, {
788
+ name: string;
789
+ id?: string | undefined;
790
+ }, {
791
+ name: string;
792
+ id?: string | undefined;
793
+ }>>;
794
+ locality: z.ZodOptional<z.ZodObject<{
795
+ id: z.ZodOptional<z.ZodString>;
796
+ name: z.ZodString;
797
+ }, "strip", z.ZodTypeAny, {
798
+ name: string;
799
+ id?: string | undefined;
800
+ }, {
801
+ name: string;
802
+ id?: string | undefined;
803
+ }>>;
804
+ neighborhood: z.ZodOptional<z.ZodObject<{
805
+ id: z.ZodOptional<z.ZodString>;
806
+ name: z.ZodString;
807
+ }, "strip", z.ZodTypeAny, {
808
+ name: string;
809
+ id?: string | undefined;
810
+ }, {
811
+ name: string;
812
+ id?: string | undefined;
813
+ }>>;
814
+ address: z.ZodOptional<z.ZodObject<{
815
+ id: z.ZodOptional<z.ZodString>;
816
+ name: z.ZodString;
817
+ address_number: z.ZodOptional<z.ZodString>;
818
+ street_name: z.ZodOptional<z.ZodString>;
819
+ }, "strip", z.ZodTypeAny, {
820
+ name: string;
821
+ id?: string | undefined;
822
+ address_number?: string | undefined;
823
+ street_name?: string | undefined;
824
+ }, {
825
+ name: string;
826
+ id?: string | undefined;
827
+ address_number?: string | undefined;
828
+ street_name?: string | undefined;
829
+ }>>;
830
+ street: z.ZodOptional<z.ZodObject<{
831
+ id: z.ZodOptional<z.ZodString>;
832
+ name: z.ZodString;
833
+ }, "strip", z.ZodTypeAny, {
834
+ name: string;
835
+ id?: string | undefined;
836
+ }, {
837
+ name: string;
838
+ id?: string | undefined;
839
+ }>>;
840
+ }, "strip", z.ZodTypeAny, {
841
+ country?: {
842
+ name: string;
843
+ country_code: string;
844
+ country_code_alpha_3: string;
845
+ id?: string | undefined;
846
+ } | undefined;
847
+ region?: {
848
+ name: string;
849
+ region_code: string;
850
+ region_code_full: string;
851
+ id?: string | undefined;
852
+ } | undefined;
853
+ postcode?: {
854
+ name: string;
855
+ id?: string | undefined;
856
+ } | undefined;
857
+ district?: {
858
+ name: string;
859
+ id?: string | undefined;
860
+ } | undefined;
861
+ place?: {
862
+ name: string;
863
+ id?: string | undefined;
864
+ } | undefined;
865
+ locality?: {
866
+ name: string;
867
+ id?: string | undefined;
868
+ } | undefined;
869
+ neighborhood?: {
870
+ name: string;
871
+ id?: string | undefined;
872
+ } | undefined;
873
+ address?: {
874
+ name: string;
875
+ id?: string | undefined;
876
+ address_number?: string | undefined;
877
+ street_name?: string | undefined;
878
+ } | undefined;
879
+ street?: {
880
+ name: string;
881
+ id?: string | undefined;
882
+ } | undefined;
883
+ }, {
884
+ country?: {
885
+ name: string;
886
+ country_code: string;
887
+ country_code_alpha_3: string;
888
+ id?: string | undefined;
889
+ } | undefined;
890
+ region?: {
891
+ name: string;
892
+ region_code: string;
893
+ region_code_full: string;
894
+ id?: string | undefined;
895
+ } | undefined;
896
+ postcode?: {
897
+ name: string;
898
+ id?: string | undefined;
899
+ } | undefined;
900
+ district?: {
901
+ name: string;
902
+ id?: string | undefined;
903
+ } | undefined;
904
+ place?: {
905
+ name: string;
906
+ id?: string | undefined;
907
+ } | undefined;
908
+ locality?: {
909
+ name: string;
910
+ id?: string | undefined;
911
+ } | undefined;
912
+ neighborhood?: {
913
+ name: string;
914
+ id?: string | undefined;
915
+ } | undefined;
916
+ address?: {
917
+ name: string;
918
+ id?: string | undefined;
919
+ address_number?: string | undefined;
920
+ street_name?: string | undefined;
921
+ } | undefined;
922
+ street?: {
923
+ name: string;
924
+ id?: string | undefined;
925
+ } | undefined;
926
+ }>;
927
+ coordinates: z.ZodObject<{
928
+ longitude: z.ZodNumber;
929
+ latitude: z.ZodNumber;
930
+ accuracy: z.ZodOptional<z.ZodEnum<["rooftop", "parcel", "point", "interpolated", "intersection", "approximate", "street"]>>;
931
+ routable_points: z.ZodOptional<z.ZodArray<z.ZodObject<{
932
+ name: z.ZodString;
933
+ latitude: z.ZodNumber;
934
+ longitude: z.ZodNumber;
935
+ note: z.ZodOptional<z.ZodString>;
936
+ }, "strip", z.ZodTypeAny, {
937
+ name: string;
938
+ longitude: number;
939
+ latitude: number;
940
+ note?: string | undefined;
941
+ }, {
942
+ name: string;
943
+ longitude: number;
944
+ latitude: number;
945
+ note?: string | undefined;
946
+ }>, "many">>;
947
+ }, "strip", z.ZodTypeAny, {
948
+ longitude: number;
949
+ latitude: number;
950
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
951
+ routable_points?: {
952
+ name: string;
953
+ longitude: number;
954
+ latitude: number;
955
+ note?: string | undefined;
956
+ }[] | undefined;
957
+ }, {
958
+ longitude: number;
959
+ latitude: number;
960
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
961
+ routable_points?: {
962
+ name: string;
963
+ longitude: number;
964
+ latitude: number;
965
+ note?: string | undefined;
966
+ }[] | undefined;
967
+ }>;
968
+ bbox: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
969
+ language: z.ZodOptional<z.ZodString>;
970
+ maki: z.ZodOptional<z.ZodString>;
971
+ poi_category: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
972
+ poi_category_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
973
+ brand: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
974
+ brand_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
975
+ external_ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
976
+ metadata: z.ZodOptional<z.ZodObject<{
977
+ primary_photo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
978
+ reading: z.ZodOptional<z.ZodObject<{
979
+ ja_kana: z.ZodOptional<z.ZodString>;
980
+ ja_latin: z.ZodOptional<z.ZodString>;
981
+ }, "strip", z.ZodTypeAny, {
982
+ ja_kana?: string | undefined;
983
+ ja_latin?: string | undefined;
984
+ }, {
985
+ ja_kana?: string | undefined;
986
+ ja_latin?: string | undefined;
987
+ }>>;
988
+ }, "strip", z.ZodTypeAny, {
989
+ primary_photo?: string[] | undefined;
990
+ reading?: {
991
+ ja_kana?: string | undefined;
992
+ ja_latin?: string | undefined;
993
+ } | undefined;
994
+ }, {
995
+ primary_photo?: string[] | undefined;
996
+ reading?: {
997
+ ja_kana?: string | undefined;
998
+ ja_latin?: string | undefined;
999
+ } | undefined;
1000
+ }>>;
1001
+ distance: z.ZodOptional<z.ZodNumber>;
1002
+ eta: z.ZodOptional<z.ZodNumber>;
1003
+ added_distance: z.ZodOptional<z.ZodNumber>;
1004
+ added_time: z.ZodOptional<z.ZodNumber>;
1005
+ }, "strip", z.ZodTypeAny, {
1006
+ name: string;
1007
+ mapbox_id: string;
1008
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1009
+ context: {
1010
+ country?: {
1011
+ name: string;
1012
+ country_code: string;
1013
+ country_code_alpha_3: string;
1014
+ id?: string | undefined;
1015
+ } | undefined;
1016
+ region?: {
1017
+ name: string;
1018
+ region_code: string;
1019
+ region_code_full: string;
1020
+ id?: string | undefined;
1021
+ } | undefined;
1022
+ postcode?: {
1023
+ name: string;
1024
+ id?: string | undefined;
1025
+ } | undefined;
1026
+ district?: {
1027
+ name: string;
1028
+ id?: string | undefined;
1029
+ } | undefined;
1030
+ place?: {
1031
+ name: string;
1032
+ id?: string | undefined;
1033
+ } | undefined;
1034
+ locality?: {
1035
+ name: string;
1036
+ id?: string | undefined;
1037
+ } | undefined;
1038
+ neighborhood?: {
1039
+ name: string;
1040
+ id?: string | undefined;
1041
+ } | undefined;
1042
+ address?: {
1043
+ name: string;
1044
+ id?: string | undefined;
1045
+ address_number?: string | undefined;
1046
+ street_name?: string | undefined;
1047
+ } | undefined;
1048
+ street?: {
1049
+ name: string;
1050
+ id?: string | undefined;
1051
+ } | undefined;
1052
+ };
1053
+ coordinates: {
1054
+ longitude: number;
1055
+ latitude: number;
1056
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1057
+ routable_points?: {
1058
+ name: string;
1059
+ longitude: number;
1060
+ latitude: number;
1061
+ note?: string | undefined;
1062
+ }[] | undefined;
1063
+ };
1064
+ language?: string | undefined;
1065
+ bbox?: [number, number, number, number] | undefined;
1066
+ address?: string | undefined;
1067
+ name_preferred?: string | undefined;
1068
+ full_address?: string | undefined;
1069
+ place_formatted?: string | undefined;
1070
+ maki?: string | undefined;
1071
+ poi_category?: string[] | undefined;
1072
+ poi_category_ids?: string[] | undefined;
1073
+ brand?: string[] | undefined;
1074
+ brand_id?: string[] | undefined;
1075
+ external_ids?: Record<string, string> | undefined;
1076
+ metadata?: {
1077
+ primary_photo?: string[] | undefined;
1078
+ reading?: {
1079
+ ja_kana?: string | undefined;
1080
+ ja_latin?: string | undefined;
1081
+ } | undefined;
1082
+ } | undefined;
1083
+ distance?: number | undefined;
1084
+ eta?: number | undefined;
1085
+ added_distance?: number | undefined;
1086
+ added_time?: number | undefined;
1087
+ }, {
1088
+ name: string;
1089
+ mapbox_id: string;
1090
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1091
+ context: {
1092
+ country?: {
1093
+ name: string;
1094
+ country_code: string;
1095
+ country_code_alpha_3: string;
1096
+ id?: string | undefined;
1097
+ } | undefined;
1098
+ region?: {
1099
+ name: string;
1100
+ region_code: string;
1101
+ region_code_full: string;
1102
+ id?: string | undefined;
1103
+ } | undefined;
1104
+ postcode?: {
1105
+ name: string;
1106
+ id?: string | undefined;
1107
+ } | undefined;
1108
+ district?: {
1109
+ name: string;
1110
+ id?: string | undefined;
1111
+ } | undefined;
1112
+ place?: {
1113
+ name: string;
1114
+ id?: string | undefined;
1115
+ } | undefined;
1116
+ locality?: {
1117
+ name: string;
1118
+ id?: string | undefined;
1119
+ } | undefined;
1120
+ neighborhood?: {
1121
+ name: string;
1122
+ id?: string | undefined;
1123
+ } | undefined;
1124
+ address?: {
1125
+ name: string;
1126
+ id?: string | undefined;
1127
+ address_number?: string | undefined;
1128
+ street_name?: string | undefined;
1129
+ } | undefined;
1130
+ street?: {
1131
+ name: string;
1132
+ id?: string | undefined;
1133
+ } | undefined;
1134
+ };
1135
+ coordinates: {
1136
+ longitude: number;
1137
+ latitude: number;
1138
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1139
+ routable_points?: {
1140
+ name: string;
1141
+ longitude: number;
1142
+ latitude: number;
1143
+ note?: string | undefined;
1144
+ }[] | undefined;
1145
+ };
1146
+ language?: string | undefined;
1147
+ bbox?: [number, number, number, number] | undefined;
1148
+ address?: string | undefined;
1149
+ name_preferred?: string | undefined;
1150
+ full_address?: string | undefined;
1151
+ place_formatted?: string | undefined;
1152
+ maki?: string | undefined;
1153
+ poi_category?: string[] | undefined;
1154
+ poi_category_ids?: string[] | undefined;
1155
+ brand?: string[] | undefined;
1156
+ brand_id?: string[] | undefined;
1157
+ external_ids?: Record<string, string> | undefined;
1158
+ metadata?: {
1159
+ primary_photo?: string[] | undefined;
1160
+ reading?: {
1161
+ ja_kana?: string | undefined;
1162
+ ja_latin?: string | undefined;
1163
+ } | undefined;
1164
+ } | undefined;
1165
+ distance?: number | undefined;
1166
+ eta?: number | undefined;
1167
+ added_distance?: number | undefined;
1168
+ added_time?: number | undefined;
1169
+ }>;
1170
+ }, "strip", z.ZodTypeAny, {
1171
+ type: "Feature";
1172
+ properties: {
1173
+ name: string;
1174
+ mapbox_id: string;
1175
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1176
+ context: {
1177
+ country?: {
1178
+ name: string;
1179
+ country_code: string;
1180
+ country_code_alpha_3: string;
1181
+ id?: string | undefined;
1182
+ } | undefined;
1183
+ region?: {
1184
+ name: string;
1185
+ region_code: string;
1186
+ region_code_full: string;
1187
+ id?: string | undefined;
1188
+ } | undefined;
1189
+ postcode?: {
1190
+ name: string;
1191
+ id?: string | undefined;
1192
+ } | undefined;
1193
+ district?: {
1194
+ name: string;
1195
+ id?: string | undefined;
1196
+ } | undefined;
1197
+ place?: {
1198
+ name: string;
1199
+ id?: string | undefined;
1200
+ } | undefined;
1201
+ locality?: {
1202
+ name: string;
1203
+ id?: string | undefined;
1204
+ } | undefined;
1205
+ neighborhood?: {
1206
+ name: string;
1207
+ id?: string | undefined;
1208
+ } | undefined;
1209
+ address?: {
1210
+ name: string;
1211
+ id?: string | undefined;
1212
+ address_number?: string | undefined;
1213
+ street_name?: string | undefined;
1214
+ } | undefined;
1215
+ street?: {
1216
+ name: string;
1217
+ id?: string | undefined;
1218
+ } | undefined;
1219
+ };
1220
+ coordinates: {
1221
+ longitude: number;
1222
+ latitude: number;
1223
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1224
+ routable_points?: {
1225
+ name: string;
1226
+ longitude: number;
1227
+ latitude: number;
1228
+ note?: string | undefined;
1229
+ }[] | undefined;
1230
+ };
1231
+ language?: string | undefined;
1232
+ bbox?: [number, number, number, number] | undefined;
1233
+ address?: string | undefined;
1234
+ name_preferred?: string | undefined;
1235
+ full_address?: string | undefined;
1236
+ place_formatted?: string | undefined;
1237
+ maki?: string | undefined;
1238
+ poi_category?: string[] | undefined;
1239
+ poi_category_ids?: string[] | undefined;
1240
+ brand?: string[] | undefined;
1241
+ brand_id?: string[] | undefined;
1242
+ external_ids?: Record<string, string> | undefined;
1243
+ metadata?: {
1244
+ primary_photo?: string[] | undefined;
1245
+ reading?: {
1246
+ ja_kana?: string | undefined;
1247
+ ja_latin?: string | undefined;
1248
+ } | undefined;
1249
+ } | undefined;
1250
+ distance?: number | undefined;
1251
+ eta?: number | undefined;
1252
+ added_distance?: number | undefined;
1253
+ added_time?: number | undefined;
1254
+ };
1255
+ geometry: {
1256
+ type: "Point";
1257
+ coordinates: [number, number];
1258
+ };
1259
+ }, {
1260
+ type: "Feature";
1261
+ properties: {
1262
+ name: string;
1263
+ mapbox_id: string;
1264
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1265
+ context: {
1266
+ country?: {
1267
+ name: string;
1268
+ country_code: string;
1269
+ country_code_alpha_3: string;
1270
+ id?: string | undefined;
1271
+ } | undefined;
1272
+ region?: {
1273
+ name: string;
1274
+ region_code: string;
1275
+ region_code_full: string;
1276
+ id?: string | undefined;
1277
+ } | undefined;
1278
+ postcode?: {
1279
+ name: string;
1280
+ id?: string | undefined;
1281
+ } | undefined;
1282
+ district?: {
1283
+ name: string;
1284
+ id?: string | undefined;
1285
+ } | undefined;
1286
+ place?: {
1287
+ name: string;
1288
+ id?: string | undefined;
1289
+ } | undefined;
1290
+ locality?: {
1291
+ name: string;
1292
+ id?: string | undefined;
1293
+ } | undefined;
1294
+ neighborhood?: {
1295
+ name: string;
1296
+ id?: string | undefined;
1297
+ } | undefined;
1298
+ address?: {
1299
+ name: string;
1300
+ id?: string | undefined;
1301
+ address_number?: string | undefined;
1302
+ street_name?: string | undefined;
1303
+ } | undefined;
1304
+ street?: {
1305
+ name: string;
1306
+ id?: string | undefined;
1307
+ } | undefined;
1308
+ };
1309
+ coordinates: {
1310
+ longitude: number;
1311
+ latitude: number;
1312
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1313
+ routable_points?: {
1314
+ name: string;
1315
+ longitude: number;
1316
+ latitude: number;
1317
+ note?: string | undefined;
1318
+ }[] | undefined;
1319
+ };
1320
+ language?: string | undefined;
1321
+ bbox?: [number, number, number, number] | undefined;
1322
+ address?: string | undefined;
1323
+ name_preferred?: string | undefined;
1324
+ full_address?: string | undefined;
1325
+ place_formatted?: string | undefined;
1326
+ maki?: string | undefined;
1327
+ poi_category?: string[] | undefined;
1328
+ poi_category_ids?: string[] | undefined;
1329
+ brand?: string[] | undefined;
1330
+ brand_id?: string[] | undefined;
1331
+ external_ids?: Record<string, string> | undefined;
1332
+ metadata?: {
1333
+ primary_photo?: string[] | undefined;
1334
+ reading?: {
1335
+ ja_kana?: string | undefined;
1336
+ ja_latin?: string | undefined;
1337
+ } | undefined;
1338
+ } | undefined;
1339
+ distance?: number | undefined;
1340
+ eta?: number | undefined;
1341
+ added_distance?: number | undefined;
1342
+ added_time?: number | undefined;
1343
+ };
1344
+ geometry: {
1345
+ type: "Point";
1346
+ coordinates: [number, number];
1347
+ };
1348
+ }>;
1349
+ export declare const CategorySearchResponseSchema: z.ZodObject<{
1350
+ type: z.ZodLiteral<"FeatureCollection">;
1351
+ features: z.ZodArray<z.ZodObject<{
1352
+ type: z.ZodLiteral<"Feature">;
1353
+ geometry: z.ZodObject<{
1354
+ type: z.ZodLiteral<"Point">;
1355
+ coordinates: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1356
+ }, "strip", z.ZodTypeAny, {
1357
+ type: "Point";
1358
+ coordinates: [number, number];
1359
+ }, {
1360
+ type: "Point";
1361
+ coordinates: [number, number];
1362
+ }>;
1363
+ properties: z.ZodObject<{
1364
+ name: z.ZodString;
1365
+ name_preferred: z.ZodOptional<z.ZodString>;
1366
+ mapbox_id: z.ZodString;
1367
+ feature_type: z.ZodEnum<["poi", "country", "region", "postcode", "district", "place", "locality", "neighborhood", "address"]>;
1368
+ address: z.ZodOptional<z.ZodString>;
1369
+ full_address: z.ZodOptional<z.ZodString>;
1370
+ place_formatted: z.ZodOptional<z.ZodString>;
1371
+ context: z.ZodObject<{
1372
+ country: z.ZodOptional<z.ZodObject<{
1373
+ id: z.ZodOptional<z.ZodString>;
1374
+ name: z.ZodString;
1375
+ country_code: z.ZodString;
1376
+ country_code_alpha_3: z.ZodString;
1377
+ }, "strip", z.ZodTypeAny, {
1378
+ name: string;
1379
+ country_code: string;
1380
+ country_code_alpha_3: string;
1381
+ id?: string | undefined;
1382
+ }, {
1383
+ name: string;
1384
+ country_code: string;
1385
+ country_code_alpha_3: string;
1386
+ id?: string | undefined;
1387
+ }>>;
1388
+ region: z.ZodOptional<z.ZodObject<{
1389
+ id: z.ZodOptional<z.ZodString>;
1390
+ name: z.ZodString;
1391
+ region_code: z.ZodString;
1392
+ region_code_full: z.ZodString;
1393
+ }, "strip", z.ZodTypeAny, {
1394
+ name: string;
1395
+ region_code: string;
1396
+ region_code_full: string;
1397
+ id?: string | undefined;
1398
+ }, {
1399
+ name: string;
1400
+ region_code: string;
1401
+ region_code_full: string;
1402
+ id?: string | undefined;
1403
+ }>>;
1404
+ postcode: z.ZodOptional<z.ZodObject<{
1405
+ id: z.ZodOptional<z.ZodString>;
1406
+ name: z.ZodString;
1407
+ }, "strip", z.ZodTypeAny, {
1408
+ name: string;
1409
+ id?: string | undefined;
1410
+ }, {
1411
+ name: string;
1412
+ id?: string | undefined;
1413
+ }>>;
1414
+ district: z.ZodOptional<z.ZodObject<{
1415
+ id: z.ZodOptional<z.ZodString>;
1416
+ name: z.ZodString;
1417
+ }, "strip", z.ZodTypeAny, {
1418
+ name: string;
1419
+ id?: string | undefined;
1420
+ }, {
1421
+ name: string;
1422
+ id?: string | undefined;
1423
+ }>>;
1424
+ place: z.ZodOptional<z.ZodObject<{
1425
+ id: z.ZodOptional<z.ZodString>;
1426
+ name: z.ZodString;
1427
+ }, "strip", z.ZodTypeAny, {
1428
+ name: string;
1429
+ id?: string | undefined;
1430
+ }, {
1431
+ name: string;
1432
+ id?: string | undefined;
1433
+ }>>;
1434
+ locality: z.ZodOptional<z.ZodObject<{
1435
+ id: z.ZodOptional<z.ZodString>;
1436
+ name: z.ZodString;
1437
+ }, "strip", z.ZodTypeAny, {
1438
+ name: string;
1439
+ id?: string | undefined;
1440
+ }, {
1441
+ name: string;
1442
+ id?: string | undefined;
1443
+ }>>;
1444
+ neighborhood: z.ZodOptional<z.ZodObject<{
1445
+ id: z.ZodOptional<z.ZodString>;
1446
+ name: z.ZodString;
1447
+ }, "strip", z.ZodTypeAny, {
1448
+ name: string;
1449
+ id?: string | undefined;
1450
+ }, {
1451
+ name: string;
1452
+ id?: string | undefined;
1453
+ }>>;
1454
+ address: z.ZodOptional<z.ZodObject<{
1455
+ id: z.ZodOptional<z.ZodString>;
1456
+ name: z.ZodString;
1457
+ address_number: z.ZodOptional<z.ZodString>;
1458
+ street_name: z.ZodOptional<z.ZodString>;
1459
+ }, "strip", z.ZodTypeAny, {
1460
+ name: string;
1461
+ id?: string | undefined;
1462
+ address_number?: string | undefined;
1463
+ street_name?: string | undefined;
1464
+ }, {
1465
+ name: string;
1466
+ id?: string | undefined;
1467
+ address_number?: string | undefined;
1468
+ street_name?: string | undefined;
1469
+ }>>;
1470
+ street: z.ZodOptional<z.ZodObject<{
1471
+ id: z.ZodOptional<z.ZodString>;
1472
+ name: z.ZodString;
1473
+ }, "strip", z.ZodTypeAny, {
1474
+ name: string;
1475
+ id?: string | undefined;
1476
+ }, {
1477
+ name: string;
1478
+ id?: string | undefined;
1479
+ }>>;
1480
+ }, "strip", z.ZodTypeAny, {
1481
+ country?: {
1482
+ name: string;
1483
+ country_code: string;
1484
+ country_code_alpha_3: string;
1485
+ id?: string | undefined;
1486
+ } | undefined;
1487
+ region?: {
1488
+ name: string;
1489
+ region_code: string;
1490
+ region_code_full: string;
1491
+ id?: string | undefined;
1492
+ } | undefined;
1493
+ postcode?: {
1494
+ name: string;
1495
+ id?: string | undefined;
1496
+ } | undefined;
1497
+ district?: {
1498
+ name: string;
1499
+ id?: string | undefined;
1500
+ } | undefined;
1501
+ place?: {
1502
+ name: string;
1503
+ id?: string | undefined;
1504
+ } | undefined;
1505
+ locality?: {
1506
+ name: string;
1507
+ id?: string | undefined;
1508
+ } | undefined;
1509
+ neighborhood?: {
1510
+ name: string;
1511
+ id?: string | undefined;
1512
+ } | undefined;
1513
+ address?: {
1514
+ name: string;
1515
+ id?: string | undefined;
1516
+ address_number?: string | undefined;
1517
+ street_name?: string | undefined;
1518
+ } | undefined;
1519
+ street?: {
1520
+ name: string;
1521
+ id?: string | undefined;
1522
+ } | undefined;
1523
+ }, {
1524
+ country?: {
1525
+ name: string;
1526
+ country_code: string;
1527
+ country_code_alpha_3: string;
1528
+ id?: string | undefined;
1529
+ } | undefined;
1530
+ region?: {
1531
+ name: string;
1532
+ region_code: string;
1533
+ region_code_full: string;
1534
+ id?: string | undefined;
1535
+ } | undefined;
1536
+ postcode?: {
1537
+ name: string;
1538
+ id?: string | undefined;
1539
+ } | undefined;
1540
+ district?: {
1541
+ name: string;
1542
+ id?: string | undefined;
1543
+ } | undefined;
1544
+ place?: {
1545
+ name: string;
1546
+ id?: string | undefined;
1547
+ } | undefined;
1548
+ locality?: {
1549
+ name: string;
1550
+ id?: string | undefined;
1551
+ } | undefined;
1552
+ neighborhood?: {
1553
+ name: string;
1554
+ id?: string | undefined;
1555
+ } | undefined;
1556
+ address?: {
1557
+ name: string;
1558
+ id?: string | undefined;
1559
+ address_number?: string | undefined;
1560
+ street_name?: string | undefined;
1561
+ } | undefined;
1562
+ street?: {
1563
+ name: string;
1564
+ id?: string | undefined;
1565
+ } | undefined;
1566
+ }>;
1567
+ coordinates: z.ZodObject<{
1568
+ longitude: z.ZodNumber;
1569
+ latitude: z.ZodNumber;
1570
+ accuracy: z.ZodOptional<z.ZodEnum<["rooftop", "parcel", "point", "interpolated", "intersection", "approximate", "street"]>>;
1571
+ routable_points: z.ZodOptional<z.ZodArray<z.ZodObject<{
1572
+ name: z.ZodString;
1573
+ latitude: z.ZodNumber;
1574
+ longitude: z.ZodNumber;
1575
+ note: z.ZodOptional<z.ZodString>;
1576
+ }, "strip", z.ZodTypeAny, {
1577
+ name: string;
1578
+ longitude: number;
1579
+ latitude: number;
1580
+ note?: string | undefined;
1581
+ }, {
1582
+ name: string;
1583
+ longitude: number;
1584
+ latitude: number;
1585
+ note?: string | undefined;
1586
+ }>, "many">>;
1587
+ }, "strip", z.ZodTypeAny, {
1588
+ longitude: number;
1589
+ latitude: number;
1590
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1591
+ routable_points?: {
1592
+ name: string;
1593
+ longitude: number;
1594
+ latitude: number;
1595
+ note?: string | undefined;
1596
+ }[] | undefined;
1597
+ }, {
1598
+ longitude: number;
1599
+ latitude: number;
1600
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1601
+ routable_points?: {
1602
+ name: string;
1603
+ longitude: number;
1604
+ latitude: number;
1605
+ note?: string | undefined;
1606
+ }[] | undefined;
1607
+ }>;
1608
+ bbox: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
1609
+ language: z.ZodOptional<z.ZodString>;
1610
+ maki: z.ZodOptional<z.ZodString>;
1611
+ poi_category: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1612
+ poi_category_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1613
+ brand: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1614
+ brand_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1615
+ external_ids: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1616
+ metadata: z.ZodOptional<z.ZodObject<{
1617
+ primary_photo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1618
+ reading: z.ZodOptional<z.ZodObject<{
1619
+ ja_kana: z.ZodOptional<z.ZodString>;
1620
+ ja_latin: z.ZodOptional<z.ZodString>;
1621
+ }, "strip", z.ZodTypeAny, {
1622
+ ja_kana?: string | undefined;
1623
+ ja_latin?: string | undefined;
1624
+ }, {
1625
+ ja_kana?: string | undefined;
1626
+ ja_latin?: string | undefined;
1627
+ }>>;
1628
+ }, "strip", z.ZodTypeAny, {
1629
+ primary_photo?: string[] | undefined;
1630
+ reading?: {
1631
+ ja_kana?: string | undefined;
1632
+ ja_latin?: string | undefined;
1633
+ } | undefined;
1634
+ }, {
1635
+ primary_photo?: string[] | undefined;
1636
+ reading?: {
1637
+ ja_kana?: string | undefined;
1638
+ ja_latin?: string | undefined;
1639
+ } | undefined;
1640
+ }>>;
1641
+ distance: z.ZodOptional<z.ZodNumber>;
1642
+ eta: z.ZodOptional<z.ZodNumber>;
1643
+ added_distance: z.ZodOptional<z.ZodNumber>;
1644
+ added_time: z.ZodOptional<z.ZodNumber>;
1645
+ }, "strip", z.ZodTypeAny, {
1646
+ name: string;
1647
+ mapbox_id: string;
1648
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1649
+ context: {
1650
+ country?: {
1651
+ name: string;
1652
+ country_code: string;
1653
+ country_code_alpha_3: string;
1654
+ id?: string | undefined;
1655
+ } | undefined;
1656
+ region?: {
1657
+ name: string;
1658
+ region_code: string;
1659
+ region_code_full: string;
1660
+ id?: string | undefined;
1661
+ } | undefined;
1662
+ postcode?: {
1663
+ name: string;
1664
+ id?: string | undefined;
1665
+ } | undefined;
1666
+ district?: {
1667
+ name: string;
1668
+ id?: string | undefined;
1669
+ } | undefined;
1670
+ place?: {
1671
+ name: string;
1672
+ id?: string | undefined;
1673
+ } | undefined;
1674
+ locality?: {
1675
+ name: string;
1676
+ id?: string | undefined;
1677
+ } | undefined;
1678
+ neighborhood?: {
1679
+ name: string;
1680
+ id?: string | undefined;
1681
+ } | undefined;
1682
+ address?: {
1683
+ name: string;
1684
+ id?: string | undefined;
1685
+ address_number?: string | undefined;
1686
+ street_name?: string | undefined;
1687
+ } | undefined;
1688
+ street?: {
1689
+ name: string;
1690
+ id?: string | undefined;
1691
+ } | undefined;
1692
+ };
1693
+ coordinates: {
1694
+ longitude: number;
1695
+ latitude: number;
1696
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1697
+ routable_points?: {
1698
+ name: string;
1699
+ longitude: number;
1700
+ latitude: number;
1701
+ note?: string | undefined;
1702
+ }[] | undefined;
1703
+ };
1704
+ language?: string | undefined;
1705
+ bbox?: [number, number, number, number] | undefined;
1706
+ address?: string | undefined;
1707
+ name_preferred?: string | undefined;
1708
+ full_address?: string | undefined;
1709
+ place_formatted?: string | undefined;
1710
+ maki?: string | undefined;
1711
+ poi_category?: string[] | undefined;
1712
+ poi_category_ids?: string[] | undefined;
1713
+ brand?: string[] | undefined;
1714
+ brand_id?: string[] | undefined;
1715
+ external_ids?: Record<string, string> | undefined;
1716
+ metadata?: {
1717
+ primary_photo?: string[] | undefined;
1718
+ reading?: {
1719
+ ja_kana?: string | undefined;
1720
+ ja_latin?: string | undefined;
1721
+ } | undefined;
1722
+ } | undefined;
1723
+ distance?: number | undefined;
1724
+ eta?: number | undefined;
1725
+ added_distance?: number | undefined;
1726
+ added_time?: number | undefined;
1727
+ }, {
1728
+ name: string;
1729
+ mapbox_id: string;
1730
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1731
+ context: {
1732
+ country?: {
1733
+ name: string;
1734
+ country_code: string;
1735
+ country_code_alpha_3: string;
1736
+ id?: string | undefined;
1737
+ } | undefined;
1738
+ region?: {
1739
+ name: string;
1740
+ region_code: string;
1741
+ region_code_full: string;
1742
+ id?: string | undefined;
1743
+ } | undefined;
1744
+ postcode?: {
1745
+ name: string;
1746
+ id?: string | undefined;
1747
+ } | undefined;
1748
+ district?: {
1749
+ name: string;
1750
+ id?: string | undefined;
1751
+ } | undefined;
1752
+ place?: {
1753
+ name: string;
1754
+ id?: string | undefined;
1755
+ } | undefined;
1756
+ locality?: {
1757
+ name: string;
1758
+ id?: string | undefined;
1759
+ } | undefined;
1760
+ neighborhood?: {
1761
+ name: string;
1762
+ id?: string | undefined;
1763
+ } | undefined;
1764
+ address?: {
1765
+ name: string;
1766
+ id?: string | undefined;
1767
+ address_number?: string | undefined;
1768
+ street_name?: string | undefined;
1769
+ } | undefined;
1770
+ street?: {
1771
+ name: string;
1772
+ id?: string | undefined;
1773
+ } | undefined;
1774
+ };
1775
+ coordinates: {
1776
+ longitude: number;
1777
+ latitude: number;
1778
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1779
+ routable_points?: {
1780
+ name: string;
1781
+ longitude: number;
1782
+ latitude: number;
1783
+ note?: string | undefined;
1784
+ }[] | undefined;
1785
+ };
1786
+ language?: string | undefined;
1787
+ bbox?: [number, number, number, number] | undefined;
1788
+ address?: string | undefined;
1789
+ name_preferred?: string | undefined;
1790
+ full_address?: string | undefined;
1791
+ place_formatted?: string | undefined;
1792
+ maki?: string | undefined;
1793
+ poi_category?: string[] | undefined;
1794
+ poi_category_ids?: string[] | undefined;
1795
+ brand?: string[] | undefined;
1796
+ brand_id?: string[] | undefined;
1797
+ external_ids?: Record<string, string> | undefined;
1798
+ metadata?: {
1799
+ primary_photo?: string[] | undefined;
1800
+ reading?: {
1801
+ ja_kana?: string | undefined;
1802
+ ja_latin?: string | undefined;
1803
+ } | undefined;
1804
+ } | undefined;
1805
+ distance?: number | undefined;
1806
+ eta?: number | undefined;
1807
+ added_distance?: number | undefined;
1808
+ added_time?: number | undefined;
1809
+ }>;
1810
+ }, "strip", z.ZodTypeAny, {
1811
+ type: "Feature";
1812
+ properties: {
1813
+ name: string;
1814
+ mapbox_id: string;
1815
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1816
+ context: {
1817
+ country?: {
1818
+ name: string;
1819
+ country_code: string;
1820
+ country_code_alpha_3: string;
1821
+ id?: string | undefined;
1822
+ } | undefined;
1823
+ region?: {
1824
+ name: string;
1825
+ region_code: string;
1826
+ region_code_full: string;
1827
+ id?: string | undefined;
1828
+ } | undefined;
1829
+ postcode?: {
1830
+ name: string;
1831
+ id?: string | undefined;
1832
+ } | undefined;
1833
+ district?: {
1834
+ name: string;
1835
+ id?: string | undefined;
1836
+ } | undefined;
1837
+ place?: {
1838
+ name: string;
1839
+ id?: string | undefined;
1840
+ } | undefined;
1841
+ locality?: {
1842
+ name: string;
1843
+ id?: string | undefined;
1844
+ } | undefined;
1845
+ neighborhood?: {
1846
+ name: string;
1847
+ id?: string | undefined;
1848
+ } | undefined;
1849
+ address?: {
1850
+ name: string;
1851
+ id?: string | undefined;
1852
+ address_number?: string | undefined;
1853
+ street_name?: string | undefined;
1854
+ } | undefined;
1855
+ street?: {
1856
+ name: string;
1857
+ id?: string | undefined;
1858
+ } | undefined;
1859
+ };
1860
+ coordinates: {
1861
+ longitude: number;
1862
+ latitude: number;
1863
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1864
+ routable_points?: {
1865
+ name: string;
1866
+ longitude: number;
1867
+ latitude: number;
1868
+ note?: string | undefined;
1869
+ }[] | undefined;
1870
+ };
1871
+ language?: string | undefined;
1872
+ bbox?: [number, number, number, number] | undefined;
1873
+ address?: string | undefined;
1874
+ name_preferred?: string | undefined;
1875
+ full_address?: string | undefined;
1876
+ place_formatted?: string | undefined;
1877
+ maki?: string | undefined;
1878
+ poi_category?: string[] | undefined;
1879
+ poi_category_ids?: string[] | undefined;
1880
+ brand?: string[] | undefined;
1881
+ brand_id?: string[] | undefined;
1882
+ external_ids?: Record<string, string> | undefined;
1883
+ metadata?: {
1884
+ primary_photo?: string[] | undefined;
1885
+ reading?: {
1886
+ ja_kana?: string | undefined;
1887
+ ja_latin?: string | undefined;
1888
+ } | undefined;
1889
+ } | undefined;
1890
+ distance?: number | undefined;
1891
+ eta?: number | undefined;
1892
+ added_distance?: number | undefined;
1893
+ added_time?: number | undefined;
1894
+ };
1895
+ geometry: {
1896
+ type: "Point";
1897
+ coordinates: [number, number];
1898
+ };
1899
+ }, {
1900
+ type: "Feature";
1901
+ properties: {
1902
+ name: string;
1903
+ mapbox_id: string;
1904
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1905
+ context: {
1906
+ country?: {
1907
+ name: string;
1908
+ country_code: string;
1909
+ country_code_alpha_3: string;
1910
+ id?: string | undefined;
1911
+ } | undefined;
1912
+ region?: {
1913
+ name: string;
1914
+ region_code: string;
1915
+ region_code_full: string;
1916
+ id?: string | undefined;
1917
+ } | undefined;
1918
+ postcode?: {
1919
+ name: string;
1920
+ id?: string | undefined;
1921
+ } | undefined;
1922
+ district?: {
1923
+ name: string;
1924
+ id?: string | undefined;
1925
+ } | undefined;
1926
+ place?: {
1927
+ name: string;
1928
+ id?: string | undefined;
1929
+ } | undefined;
1930
+ locality?: {
1931
+ name: string;
1932
+ id?: string | undefined;
1933
+ } | undefined;
1934
+ neighborhood?: {
1935
+ name: string;
1936
+ id?: string | undefined;
1937
+ } | undefined;
1938
+ address?: {
1939
+ name: string;
1940
+ id?: string | undefined;
1941
+ address_number?: string | undefined;
1942
+ street_name?: string | undefined;
1943
+ } | undefined;
1944
+ street?: {
1945
+ name: string;
1946
+ id?: string | undefined;
1947
+ } | undefined;
1948
+ };
1949
+ coordinates: {
1950
+ longitude: number;
1951
+ latitude: number;
1952
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
1953
+ routable_points?: {
1954
+ name: string;
1955
+ longitude: number;
1956
+ latitude: number;
1957
+ note?: string | undefined;
1958
+ }[] | undefined;
1959
+ };
1960
+ language?: string | undefined;
1961
+ bbox?: [number, number, number, number] | undefined;
1962
+ address?: string | undefined;
1963
+ name_preferred?: string | undefined;
1964
+ full_address?: string | undefined;
1965
+ place_formatted?: string | undefined;
1966
+ maki?: string | undefined;
1967
+ poi_category?: string[] | undefined;
1968
+ poi_category_ids?: string[] | undefined;
1969
+ brand?: string[] | undefined;
1970
+ brand_id?: string[] | undefined;
1971
+ external_ids?: Record<string, string> | undefined;
1972
+ metadata?: {
1973
+ primary_photo?: string[] | undefined;
1974
+ reading?: {
1975
+ ja_kana?: string | undefined;
1976
+ ja_latin?: string | undefined;
1977
+ } | undefined;
1978
+ } | undefined;
1979
+ distance?: number | undefined;
1980
+ eta?: number | undefined;
1981
+ added_distance?: number | undefined;
1982
+ added_time?: number | undefined;
1983
+ };
1984
+ geometry: {
1985
+ type: "Point";
1986
+ coordinates: [number, number];
1987
+ };
1988
+ }>, "many">;
1989
+ attribution: z.ZodString;
1990
+ }, "strip", z.ZodTypeAny, {
1991
+ type: "FeatureCollection";
1992
+ features: {
1993
+ type: "Feature";
1994
+ properties: {
1995
+ name: string;
1996
+ mapbox_id: string;
1997
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
1998
+ context: {
1999
+ country?: {
2000
+ name: string;
2001
+ country_code: string;
2002
+ country_code_alpha_3: string;
2003
+ id?: string | undefined;
2004
+ } | undefined;
2005
+ region?: {
2006
+ name: string;
2007
+ region_code: string;
2008
+ region_code_full: string;
2009
+ id?: string | undefined;
2010
+ } | undefined;
2011
+ postcode?: {
2012
+ name: string;
2013
+ id?: string | undefined;
2014
+ } | undefined;
2015
+ district?: {
2016
+ name: string;
2017
+ id?: string | undefined;
2018
+ } | undefined;
2019
+ place?: {
2020
+ name: string;
2021
+ id?: string | undefined;
2022
+ } | undefined;
2023
+ locality?: {
2024
+ name: string;
2025
+ id?: string | undefined;
2026
+ } | undefined;
2027
+ neighborhood?: {
2028
+ name: string;
2029
+ id?: string | undefined;
2030
+ } | undefined;
2031
+ address?: {
2032
+ name: string;
2033
+ id?: string | undefined;
2034
+ address_number?: string | undefined;
2035
+ street_name?: string | undefined;
2036
+ } | undefined;
2037
+ street?: {
2038
+ name: string;
2039
+ id?: string | undefined;
2040
+ } | undefined;
2041
+ };
2042
+ coordinates: {
2043
+ longitude: number;
2044
+ latitude: number;
2045
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
2046
+ routable_points?: {
2047
+ name: string;
2048
+ longitude: number;
2049
+ latitude: number;
2050
+ note?: string | undefined;
2051
+ }[] | undefined;
2052
+ };
2053
+ language?: string | undefined;
2054
+ bbox?: [number, number, number, number] | undefined;
2055
+ address?: string | undefined;
2056
+ name_preferred?: string | undefined;
2057
+ full_address?: string | undefined;
2058
+ place_formatted?: string | undefined;
2059
+ maki?: string | undefined;
2060
+ poi_category?: string[] | undefined;
2061
+ poi_category_ids?: string[] | undefined;
2062
+ brand?: string[] | undefined;
2063
+ brand_id?: string[] | undefined;
2064
+ external_ids?: Record<string, string> | undefined;
2065
+ metadata?: {
2066
+ primary_photo?: string[] | undefined;
2067
+ reading?: {
2068
+ ja_kana?: string | undefined;
2069
+ ja_latin?: string | undefined;
2070
+ } | undefined;
2071
+ } | undefined;
2072
+ distance?: number | undefined;
2073
+ eta?: number | undefined;
2074
+ added_distance?: number | undefined;
2075
+ added_time?: number | undefined;
2076
+ };
2077
+ geometry: {
2078
+ type: "Point";
2079
+ coordinates: [number, number];
2080
+ };
2081
+ }[];
2082
+ attribution: string;
2083
+ }, {
2084
+ type: "FeatureCollection";
2085
+ features: {
2086
+ type: "Feature";
2087
+ properties: {
2088
+ name: string;
2089
+ mapbox_id: string;
2090
+ feature_type: "country" | "region" | "postcode" | "district" | "place" | "locality" | "neighborhood" | "address" | "poi";
2091
+ context: {
2092
+ country?: {
2093
+ name: string;
2094
+ country_code: string;
2095
+ country_code_alpha_3: string;
2096
+ id?: string | undefined;
2097
+ } | undefined;
2098
+ region?: {
2099
+ name: string;
2100
+ region_code: string;
2101
+ region_code_full: string;
2102
+ id?: string | undefined;
2103
+ } | undefined;
2104
+ postcode?: {
2105
+ name: string;
2106
+ id?: string | undefined;
2107
+ } | undefined;
2108
+ district?: {
2109
+ name: string;
2110
+ id?: string | undefined;
2111
+ } | undefined;
2112
+ place?: {
2113
+ name: string;
2114
+ id?: string | undefined;
2115
+ } | undefined;
2116
+ locality?: {
2117
+ name: string;
2118
+ id?: string | undefined;
2119
+ } | undefined;
2120
+ neighborhood?: {
2121
+ name: string;
2122
+ id?: string | undefined;
2123
+ } | undefined;
2124
+ address?: {
2125
+ name: string;
2126
+ id?: string | undefined;
2127
+ address_number?: string | undefined;
2128
+ street_name?: string | undefined;
2129
+ } | undefined;
2130
+ street?: {
2131
+ name: string;
2132
+ id?: string | undefined;
2133
+ } | undefined;
2134
+ };
2135
+ coordinates: {
2136
+ longitude: number;
2137
+ latitude: number;
2138
+ accuracy?: "street" | "rooftop" | "parcel" | "point" | "interpolated" | "intersection" | "approximate" | undefined;
2139
+ routable_points?: {
2140
+ name: string;
2141
+ longitude: number;
2142
+ latitude: number;
2143
+ note?: string | undefined;
2144
+ }[] | undefined;
2145
+ };
2146
+ language?: string | undefined;
2147
+ bbox?: [number, number, number, number] | undefined;
2148
+ address?: string | undefined;
2149
+ name_preferred?: string | undefined;
2150
+ full_address?: string | undefined;
2151
+ place_formatted?: string | undefined;
2152
+ maki?: string | undefined;
2153
+ poi_category?: string[] | undefined;
2154
+ poi_category_ids?: string[] | undefined;
2155
+ brand?: string[] | undefined;
2156
+ brand_id?: string[] | undefined;
2157
+ external_ids?: Record<string, string> | undefined;
2158
+ metadata?: {
2159
+ primary_photo?: string[] | undefined;
2160
+ reading?: {
2161
+ ja_kana?: string | undefined;
2162
+ ja_latin?: string | undefined;
2163
+ } | undefined;
2164
+ } | undefined;
2165
+ distance?: number | undefined;
2166
+ eta?: number | undefined;
2167
+ added_distance?: number | undefined;
2168
+ added_time?: number | undefined;
2169
+ };
2170
+ geometry: {
2171
+ type: "Point";
2172
+ coordinates: [number, number];
2173
+ };
2174
+ }[];
2175
+ attribution: string;
2176
+ }>;
2177
+ export type CategorySearchResponse = z.infer<typeof CategorySearchResponseSchema>;
2178
+ export type CategorySearchFeature = z.infer<typeof FeatureSchema>;
2179
+ export type CategorySearchFeatureProperties = z.infer<typeof FeaturePropertiesSchema>;
2180
+ export type CategorySearchContext = z.infer<typeof ContextSchema>;
2181
+ export type CategorySearchCoordinates = z.infer<typeof CoordinatesSchema>;
2182
+ export type CategorySearchMetadata = z.infer<typeof MetadataSchema>;
2183
+ export {};
2184
+ //# sourceMappingURL=CategorySearchTool.output.schema.d.ts.map