rdapify 0.3.0 → 0.3.2

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 (500) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.ar.md +572 -0
  3. package/README.md +74 -77
  4. package/dist/{application → cjs/application}/client/RDAPClient.js +197 -6
  5. package/dist/{application → cjs/application}/client/index.js +0 -1
  6. package/dist/{application → cjs/application}/deduplication/QueryDeduplicator.js +0 -1
  7. package/dist/{application → cjs/application}/hooks/MiddlewareHooks.js +0 -1
  8. package/dist/{application → cjs/application}/services/BatchProcessor.js +0 -1
  9. package/dist/{application → cjs/application}/services/QueryOrchestrator.js +0 -1
  10. package/dist/{application → cjs/application}/services/QueryPriority.js +0 -1
  11. package/dist/{application → cjs/application}/services/index.js +0 -1
  12. package/dist/{cli → cjs/cli}/index.js +0 -1
  13. package/dist/cjs/core/ports/bootstrap.port.js +2 -0
  14. package/dist/cjs/core/ports/cache.port.js +2 -0
  15. package/dist/cjs/core/ports/fetcher.port.js +2 -0
  16. package/dist/{core → cjs/core}/ports/index.js +0 -1
  17. package/dist/cjs/core/ports/normalizer.port.js +2 -0
  18. package/dist/cjs/core/ports/pii-redactor.port.js +2 -0
  19. package/dist/{index.js → cjs/index.js} +8 -4
  20. package/dist/{infrastructure → cjs/infrastructure}/cache/CacheManager.js +4 -1
  21. package/dist/{infrastructure → cjs/infrastructure}/cache/InMemoryCache.js +0 -1
  22. package/dist/{infrastructure → cjs/infrastructure}/cache/PersistentCache.js +0 -1
  23. package/dist/{infrastructure → cjs/infrastructure}/cache/RedisCache.js +0 -1
  24. package/dist/cjs/infrastructure/cache/StaleWhileRevalidateCache.js +47 -0
  25. package/dist/{infrastructure → cjs/infrastructure}/cache/index.js +0 -1
  26. package/dist/{infrastructure → cjs/infrastructure}/http/AuthenticationManager.js +0 -1
  27. package/dist/{infrastructure → cjs/infrastructure}/http/BootstrapDiscovery.js +0 -1
  28. package/dist/{infrastructure → cjs/infrastructure}/http/BrowserFetcher.js +0 -1
  29. package/dist/{infrastructure → cjs/infrastructure}/http/BunFetcher.js +0 -1
  30. package/dist/{infrastructure → cjs/infrastructure}/http/CircuitBreaker.js +0 -1
  31. package/dist/{infrastructure → cjs/infrastructure}/http/CloudflareWorkersFetcher.js +0 -1
  32. package/dist/{infrastructure → cjs/infrastructure}/http/CompressionManager.js +0 -1
  33. package/dist/{infrastructure → cjs/infrastructure}/http/ConnectionPool.js +0 -1
  34. package/dist/{infrastructure → cjs/infrastructure}/http/DenoFetcher.js +0 -1
  35. package/dist/cjs/infrastructure/http/DistributedRateLimiter.js +26 -0
  36. package/dist/{infrastructure → cjs/infrastructure}/http/Fetcher.js +5 -1
  37. package/dist/{infrastructure → cjs/infrastructure}/http/Normalizer.js +23 -1
  38. package/dist/{infrastructure → cjs/infrastructure}/http/ProxyManager.js +0 -1
  39. package/dist/{infrastructure → cjs/infrastructure}/http/RateLimiter.js +6 -1
  40. package/dist/{infrastructure → cjs/infrastructure}/http/RetryStrategy.js +0 -1
  41. package/dist/{infrastructure → cjs/infrastructure}/http/index.js +0 -1
  42. package/dist/{infrastructure → cjs/infrastructure}/logging/AuditLogger.js +0 -1
  43. package/dist/{infrastructure → cjs/infrastructure}/logging/Logger.js +0 -1
  44. package/dist/{infrastructure → cjs/infrastructure}/monitoring/GrafanaDashboard.js +0 -1
  45. package/dist/{infrastructure → cjs/infrastructure}/monitoring/MetricsCollector.js +0 -1
  46. package/dist/{infrastructure → cjs/infrastructure}/monitoring/PrometheusExporter.js +0 -1
  47. package/dist/{infrastructure → cjs/infrastructure}/monitoring/TelemetryExporter.js +15 -2
  48. package/dist/{infrastructure → cjs/infrastructure}/native/NativeBackend.js +0 -1
  49. package/dist/{infrastructure → cjs/infrastructure}/security/PIIRedactor.js +0 -1
  50. package/dist/{infrastructure → cjs/infrastructure}/security/SSRFProtection.js +23 -1
  51. package/dist/{infrastructure → cjs/infrastructure}/security/index.js +0 -1
  52. package/dist/cjs/infrastructure/telemetry/UsageTelemetry.js +89 -0
  53. package/dist/{infrastructure → cjs/infrastructure}/validation/ResponseValidator.js +0 -1
  54. package/dist/{integrations → cjs/integrations}/express.js +0 -1
  55. package/dist/{integrations → cjs/integrations}/graphql.js +0 -1
  56. package/dist/{integrations → cjs/integrations}/nestjs.js +0 -1
  57. package/dist/{shared → cjs/shared}/constants/http.constants.js +0 -1
  58. package/dist/{shared → cjs/shared}/constants/index.js +0 -1
  59. package/dist/{shared → cjs/shared}/constants/rdap.constants.js +0 -1
  60. package/dist/{shared → cjs/shared}/errors/base.error.js +7 -2
  61. package/dist/{shared → cjs/shared}/errors/index.js +0 -1
  62. package/dist/{shared → cjs/shared}/types/entities.js +0 -1
  63. package/dist/{shared → cjs/shared}/types/enums.js +0 -1
  64. package/dist/{shared → cjs/shared}/types/errors.js +0 -1
  65. package/dist/{shared → cjs/shared}/types/generics.js +0 -1
  66. package/dist/{shared → cjs/shared}/types/index.js +0 -1
  67. package/dist/{shared → cjs/shared}/types/options.js +5 -1
  68. package/dist/cjs/shared/types/responses.js +2 -0
  69. package/dist/{shared → cjs/shared}/utils/deprecation.js +0 -1
  70. package/dist/{shared → cjs/shared}/utils/enhanced-validators.js +0 -1
  71. package/dist/{shared → cjs/shared}/utils/helpers/async.js +0 -1
  72. package/dist/{shared → cjs/shared}/utils/helpers/cache.js +0 -1
  73. package/dist/{shared → cjs/shared}/utils/helpers/format.js +0 -1
  74. package/dist/{shared → cjs/shared}/utils/helpers/http.js +0 -1
  75. package/dist/{shared → cjs/shared}/utils/helpers/index.js +0 -1
  76. package/dist/{shared → cjs/shared}/utils/helpers/object.js +0 -1
  77. package/dist/{shared → cjs/shared}/utils/helpers/runtime.js +0 -1
  78. package/dist/{shared → cjs/shared}/utils/helpers/string.js +0 -1
  79. package/dist/{shared → cjs/shared}/utils/validators/asn.js +0 -1
  80. package/dist/{shared → cjs/shared}/utils/validators/config-validation.js +0 -1
  81. package/dist/{shared → cjs/shared}/utils/validators/domain.js +0 -1
  82. package/dist/{shared → cjs/shared}/utils/validators/entity.js +0 -1
  83. package/dist/{shared → cjs/shared}/utils/validators/index.js +0 -1
  84. package/dist/{shared → cjs/shared}/utils/validators/ip.js +0 -1
  85. package/dist/{shared → cjs/shared}/utils/validators/nameserver.js +0 -1
  86. package/dist/{shared → cjs/shared}/utils/validators/network.js +0 -1
  87. package/dist/esm/application/client/RDAPClient.js +439 -0
  88. package/dist/esm/application/client/index.js +1 -0
  89. package/dist/esm/application/deduplication/QueryDeduplicator.js +41 -0
  90. package/dist/esm/application/hooks/MiddlewareHooks.js +79 -0
  91. package/dist/esm/application/services/BatchProcessor.js +145 -0
  92. package/dist/esm/application/services/QueryOrchestrator.js +615 -0
  93. package/dist/esm/application/services/QueryPriority.js +109 -0
  94. package/dist/esm/application/services/index.js +2 -0
  95. package/dist/esm/cli/index.js +297 -0
  96. package/dist/esm/core/ports/bootstrap.port.js +1 -0
  97. package/dist/esm/core/ports/cache.port.js +1 -0
  98. package/dist/esm/core/ports/fetcher.port.js +1 -0
  99. package/dist/esm/core/ports/index.js +5 -0
  100. package/dist/esm/core/ports/normalizer.port.js +1 -0
  101. package/dist/esm/core/ports/pii-redactor.port.js +1 -0
  102. package/dist/esm/index.js +40 -0
  103. package/dist/esm/infrastructure/cache/CacheManager.js +123 -0
  104. package/dist/esm/infrastructure/cache/InMemoryCache.js +91 -0
  105. package/dist/esm/infrastructure/cache/PersistentCache.js +188 -0
  106. package/dist/esm/infrastructure/cache/RedisCache.js +106 -0
  107. package/dist/esm/infrastructure/cache/StaleWhileRevalidateCache.js +43 -0
  108. package/dist/esm/infrastructure/cache/index.js +3 -0
  109. package/dist/esm/infrastructure/http/AuthenticationManager.js +94 -0
  110. package/dist/esm/infrastructure/http/BootstrapDiscovery.js +189 -0
  111. package/dist/esm/infrastructure/http/BrowserFetcher.js +42 -0
  112. package/dist/esm/infrastructure/http/BunFetcher.js +46 -0
  113. package/dist/esm/infrastructure/http/CircuitBreaker.js +98 -0
  114. package/dist/esm/infrastructure/http/CloudflareWorkersFetcher.js +39 -0
  115. package/dist/esm/infrastructure/http/CompressionManager.js +80 -0
  116. package/dist/esm/infrastructure/http/ConnectionPool.js +101 -0
  117. package/dist/esm/infrastructure/http/DenoFetcher.js +38 -0
  118. package/dist/esm/infrastructure/http/DistributedRateLimiter.js +22 -0
  119. package/dist/esm/infrastructure/http/Fetcher.js +127 -0
  120. package/dist/esm/infrastructure/http/Normalizer.js +233 -0
  121. package/dist/esm/infrastructure/http/ProxyManager.js +82 -0
  122. package/dist/esm/infrastructure/http/RateLimiter.js +102 -0
  123. package/dist/esm/infrastructure/http/RetryStrategy.js +131 -0
  124. package/dist/esm/infrastructure/http/index.js +3 -0
  125. package/dist/esm/infrastructure/logging/AuditLogger.js +187 -0
  126. package/dist/esm/infrastructure/logging/Logger.js +145 -0
  127. package/dist/esm/infrastructure/monitoring/GrafanaDashboard.js +115 -0
  128. package/dist/esm/infrastructure/monitoring/MetricsCollector.js +284 -0
  129. package/dist/esm/infrastructure/monitoring/PrometheusExporter.js +72 -0
  130. package/dist/esm/infrastructure/monitoring/TelemetryExporter.js +126 -0
  131. package/dist/esm/infrastructure/native/NativeBackend.js +86 -0
  132. package/dist/esm/infrastructure/security/PIIRedactor.js +85 -0
  133. package/dist/esm/infrastructure/security/SSRFProtection.js +162 -0
  134. package/dist/esm/infrastructure/security/index.js +2 -0
  135. package/dist/esm/infrastructure/telemetry/UsageTelemetry.js +84 -0
  136. package/dist/esm/infrastructure/validation/ResponseValidator.js +194 -0
  137. package/dist/esm/integrations/express.js +43 -0
  138. package/dist/esm/integrations/graphql.js +80 -0
  139. package/dist/esm/integrations/nestjs.js +23 -0
  140. package/dist/esm/shared/constants/http.constants.js +25 -0
  141. package/dist/esm/shared/constants/index.js +2 -0
  142. package/dist/esm/shared/constants/rdap.constants.js +17 -0
  143. package/dist/esm/shared/errors/base.error.js +140 -0
  144. package/dist/esm/shared/errors/index.js +1 -0
  145. package/dist/esm/shared/types/entities.js +1 -0
  146. package/dist/esm/shared/types/enums.js +1 -0
  147. package/dist/esm/shared/types/errors.js +82 -0
  148. package/dist/esm/shared/types/generics.js +1 -0
  149. package/dist/esm/shared/types/index.js +1 -0
  150. package/dist/esm/shared/types/options.js +66 -0
  151. package/dist/esm/shared/types/responses.js +1 -0
  152. package/dist/esm/shared/utils/deprecation.js +20 -0
  153. package/dist/esm/shared/utils/enhanced-validators.js +148 -0
  154. package/dist/esm/shared/utils/helpers/async.js +40 -0
  155. package/dist/esm/shared/utils/helpers/cache.js +3 -0
  156. package/dist/esm/shared/utils/helpers/format.js +17 -0
  157. package/dist/esm/shared/utils/helpers/http.js +13 -0
  158. package/dist/esm/shared/utils/helpers/index.js +7 -0
  159. package/dist/esm/shared/utils/helpers/object.js +19 -0
  160. package/dist/esm/shared/utils/helpers/runtime.js +34 -0
  161. package/dist/esm/shared/utils/helpers/string.js +23 -0
  162. package/dist/esm/shared/utils/validators/asn.js +25 -0
  163. package/dist/esm/shared/utils/validators/config-validation.js +93 -0
  164. package/dist/esm/shared/utils/validators/domain.js +29 -0
  165. package/dist/esm/shared/utils/validators/entity.js +22 -0
  166. package/dist/esm/shared/utils/validators/index.js +7 -0
  167. package/dist/esm/shared/utils/validators/ip.js +48 -0
  168. package/dist/esm/shared/utils/validators/nameserver.js +44 -0
  169. package/dist/esm/shared/utils/validators/network.js +42 -0
  170. package/dist/{application → types/application}/client/RDAPClient.d.ts +10 -1
  171. package/dist/types/application/client/RDAPClient.d.ts.map +1 -0
  172. package/dist/types/application/client/index.d.ts.map +1 -0
  173. package/dist/types/application/deduplication/QueryDeduplicator.d.ts.map +1 -0
  174. package/dist/types/application/hooks/MiddlewareHooks.d.ts.map +1 -0
  175. package/dist/types/application/services/BatchProcessor.d.ts.map +1 -0
  176. package/dist/types/application/services/QueryOrchestrator.d.ts.map +1 -0
  177. package/dist/types/application/services/QueryPriority.d.ts.map +1 -0
  178. package/dist/types/application/services/index.d.ts.map +1 -0
  179. package/dist/{cli → types/cli}/index.d.ts.map +1 -1
  180. package/dist/types/core/ports/bootstrap.port.d.ts.map +1 -0
  181. package/dist/types/core/ports/cache.port.d.ts.map +1 -0
  182. package/dist/types/core/ports/fetcher.port.d.ts.map +1 -0
  183. package/dist/types/core/ports/index.d.ts.map +1 -0
  184. package/dist/types/core/ports/normalizer.port.d.ts.map +1 -0
  185. package/dist/types/core/ports/pii-redactor.port.d.ts.map +1 -0
  186. package/dist/{index.d.ts → types/index.d.ts} +6 -3
  187. package/dist/types/index.d.ts.map +1 -0
  188. package/dist/types/infrastructure/cache/CacheManager.d.ts.map +1 -0
  189. package/dist/types/infrastructure/cache/InMemoryCache.d.ts.map +1 -0
  190. package/dist/types/infrastructure/cache/PersistentCache.d.ts.map +1 -0
  191. package/dist/types/infrastructure/cache/RedisCache.d.ts.map +1 -0
  192. package/dist/types/infrastructure/cache/StaleWhileRevalidateCache.d.ts +16 -0
  193. package/dist/types/infrastructure/cache/StaleWhileRevalidateCache.d.ts.map +1 -0
  194. package/dist/types/infrastructure/cache/index.d.ts.map +1 -0
  195. package/dist/types/infrastructure/http/AuthenticationManager.d.ts.map +1 -0
  196. package/dist/types/infrastructure/http/BootstrapDiscovery.d.ts.map +1 -0
  197. package/dist/types/infrastructure/http/BrowserFetcher.d.ts.map +1 -0
  198. package/dist/types/infrastructure/http/BunFetcher.d.ts.map +1 -0
  199. package/dist/types/infrastructure/http/CircuitBreaker.d.ts.map +1 -0
  200. package/dist/types/infrastructure/http/CloudflareWorkersFetcher.d.ts.map +1 -0
  201. package/dist/types/infrastructure/http/CompressionManager.d.ts.map +1 -0
  202. package/dist/types/infrastructure/http/ConnectionPool.d.ts.map +1 -0
  203. package/dist/types/infrastructure/http/DenoFetcher.d.ts.map +1 -0
  204. package/dist/types/infrastructure/http/DistributedRateLimiter.d.ts +12 -0
  205. package/dist/types/infrastructure/http/DistributedRateLimiter.d.ts.map +1 -0
  206. package/dist/{infrastructure → types/infrastructure}/http/Fetcher.d.ts +2 -0
  207. package/dist/types/infrastructure/http/Fetcher.d.ts.map +1 -0
  208. package/dist/types/infrastructure/http/Normalizer.d.ts.map +1 -0
  209. package/dist/types/infrastructure/http/ProxyManager.d.ts.map +1 -0
  210. package/dist/{infrastructure → types/infrastructure}/http/RateLimiter.d.ts +5 -0
  211. package/dist/types/infrastructure/http/RateLimiter.d.ts.map +1 -0
  212. package/dist/types/infrastructure/http/RetryStrategy.d.ts.map +1 -0
  213. package/dist/types/infrastructure/http/index.d.ts.map +1 -0
  214. package/dist/types/infrastructure/logging/AuditLogger.d.ts.map +1 -0
  215. package/dist/types/infrastructure/logging/Logger.d.ts.map +1 -0
  216. package/dist/{infrastructure → types/infrastructure}/monitoring/GrafanaDashboard.d.ts.map +1 -1
  217. package/dist/types/infrastructure/monitoring/MetricsCollector.d.ts.map +1 -0
  218. package/dist/types/infrastructure/monitoring/PrometheusExporter.d.ts.map +1 -0
  219. package/dist/types/infrastructure/monitoring/TelemetryExporter.d.ts.map +1 -0
  220. package/dist/types/infrastructure/native/NativeBackend.d.ts.map +1 -0
  221. package/dist/types/infrastructure/security/PIIRedactor.d.ts.map +1 -0
  222. package/dist/{infrastructure → types/infrastructure}/security/SSRFProtection.d.ts +1 -0
  223. package/dist/types/infrastructure/security/SSRFProtection.d.ts.map +1 -0
  224. package/dist/types/infrastructure/security/index.d.ts.map +1 -0
  225. package/dist/types/infrastructure/telemetry/UsageTelemetry.d.ts +13 -0
  226. package/dist/types/infrastructure/telemetry/UsageTelemetry.d.ts.map +1 -0
  227. package/dist/types/infrastructure/validation/ResponseValidator.d.ts.map +1 -0
  228. package/dist/types/integrations/express.d.ts.map +1 -0
  229. package/dist/types/integrations/graphql.d.ts.map +1 -0
  230. package/dist/types/integrations/nestjs.d.ts.map +1 -0
  231. package/dist/types/shared/constants/http.constants.d.ts.map +1 -0
  232. package/dist/types/shared/constants/index.d.ts.map +1 -0
  233. package/dist/types/shared/constants/rdap.constants.d.ts.map +1 -0
  234. package/dist/{shared → types/shared}/errors/base.error.d.ts +3 -0
  235. package/dist/types/shared/errors/base.error.d.ts.map +1 -0
  236. package/dist/types/shared/errors/index.d.ts.map +1 -0
  237. package/dist/types/shared/types/entities.d.ts.map +1 -0
  238. package/dist/{shared → types/shared}/types/enums.d.ts +1 -1
  239. package/dist/types/shared/types/enums.d.ts.map +1 -0
  240. package/dist/types/shared/types/errors.d.ts.map +1 -0
  241. package/dist/types/shared/types/generics.d.ts.map +1 -0
  242. package/dist/{shared → types/shared}/types/index.d.ts +1 -1
  243. package/dist/types/shared/types/index.d.ts.map +1 -0
  244. package/dist/{shared → types/shared}/types/options.d.ts +9 -0
  245. package/dist/types/shared/types/options.d.ts.map +1 -0
  246. package/dist/{shared → types/shared}/types/responses.d.ts +20 -0
  247. package/dist/types/shared/types/responses.d.ts.map +1 -0
  248. package/dist/types/shared/utils/deprecation.d.ts.map +1 -0
  249. package/dist/types/shared/utils/enhanced-validators.d.ts.map +1 -0
  250. package/dist/types/shared/utils/helpers/async.d.ts.map +1 -0
  251. package/dist/types/shared/utils/helpers/cache.d.ts.map +1 -0
  252. package/dist/types/shared/utils/helpers/format.d.ts.map +1 -0
  253. package/dist/types/shared/utils/helpers/http.d.ts.map +1 -0
  254. package/dist/types/shared/utils/helpers/index.d.ts.map +1 -0
  255. package/dist/types/shared/utils/helpers/object.d.ts.map +1 -0
  256. package/dist/types/shared/utils/helpers/runtime.d.ts.map +1 -0
  257. package/dist/types/shared/utils/helpers/string.d.ts.map +1 -0
  258. package/dist/types/shared/utils/validators/asn.d.ts.map +1 -0
  259. package/dist/types/shared/utils/validators/config-validation.d.ts.map +1 -0
  260. package/dist/types/shared/utils/validators/domain.d.ts.map +1 -0
  261. package/dist/types/shared/utils/validators/entity.d.ts.map +1 -0
  262. package/dist/types/shared/utils/validators/index.d.ts.map +1 -0
  263. package/dist/types/shared/utils/validators/ip.d.ts.map +1 -0
  264. package/dist/types/shared/utils/validators/nameserver.d.ts.map +1 -0
  265. package/dist/types/shared/utils/validators/network.d.ts.map +1 -0
  266. package/package.json +30 -26
  267. package/dist/application/client/RDAPClient.d.ts.map +0 -1
  268. package/dist/application/client/RDAPClient.js.map +0 -1
  269. package/dist/application/client/index.d.ts.map +0 -1
  270. package/dist/application/client/index.js.map +0 -1
  271. package/dist/application/deduplication/QueryDeduplicator.d.ts.map +0 -1
  272. package/dist/application/deduplication/QueryDeduplicator.js.map +0 -1
  273. package/dist/application/hooks/MiddlewareHooks.d.ts.map +0 -1
  274. package/dist/application/hooks/MiddlewareHooks.js.map +0 -1
  275. package/dist/application/services/BatchProcessor.d.ts.map +0 -1
  276. package/dist/application/services/BatchProcessor.js.map +0 -1
  277. package/dist/application/services/QueryOrchestrator.d.ts.map +0 -1
  278. package/dist/application/services/QueryOrchestrator.js.map +0 -1
  279. package/dist/application/services/QueryPriority.d.ts.map +0 -1
  280. package/dist/application/services/QueryPriority.js.map +0 -1
  281. package/dist/application/services/index.d.ts.map +0 -1
  282. package/dist/application/services/index.js.map +0 -1
  283. package/dist/cli/index.js.map +0 -1
  284. package/dist/core/ports/bootstrap.port.d.ts.map +0 -1
  285. package/dist/core/ports/bootstrap.port.js +0 -3
  286. package/dist/core/ports/bootstrap.port.js.map +0 -1
  287. package/dist/core/ports/cache.port.d.ts.map +0 -1
  288. package/dist/core/ports/cache.port.js +0 -3
  289. package/dist/core/ports/cache.port.js.map +0 -1
  290. package/dist/core/ports/fetcher.port.d.ts.map +0 -1
  291. package/dist/core/ports/fetcher.port.js +0 -3
  292. package/dist/core/ports/fetcher.port.js.map +0 -1
  293. package/dist/core/ports/index.d.ts.map +0 -1
  294. package/dist/core/ports/index.js.map +0 -1
  295. package/dist/core/ports/normalizer.port.d.ts.map +0 -1
  296. package/dist/core/ports/normalizer.port.js +0 -3
  297. package/dist/core/ports/normalizer.port.js.map +0 -1
  298. package/dist/core/ports/pii-redactor.port.d.ts.map +0 -1
  299. package/dist/core/ports/pii-redactor.port.js +0 -3
  300. package/dist/core/ports/pii-redactor.port.js.map +0 -1
  301. package/dist/index.d.ts.map +0 -1
  302. package/dist/index.js.map +0 -1
  303. package/dist/infrastructure/cache/CacheManager.d.ts.map +0 -1
  304. package/dist/infrastructure/cache/CacheManager.js.map +0 -1
  305. package/dist/infrastructure/cache/InMemoryCache.d.ts.map +0 -1
  306. package/dist/infrastructure/cache/InMemoryCache.js.map +0 -1
  307. package/dist/infrastructure/cache/PersistentCache.d.ts.map +0 -1
  308. package/dist/infrastructure/cache/PersistentCache.js.map +0 -1
  309. package/dist/infrastructure/cache/RedisCache.d.ts.map +0 -1
  310. package/dist/infrastructure/cache/RedisCache.js.map +0 -1
  311. package/dist/infrastructure/cache/index.d.ts.map +0 -1
  312. package/dist/infrastructure/cache/index.js.map +0 -1
  313. package/dist/infrastructure/http/AuthenticationManager.d.ts.map +0 -1
  314. package/dist/infrastructure/http/AuthenticationManager.js.map +0 -1
  315. package/dist/infrastructure/http/BootstrapDiscovery.d.ts.map +0 -1
  316. package/dist/infrastructure/http/BootstrapDiscovery.js.map +0 -1
  317. package/dist/infrastructure/http/BrowserFetcher.d.ts.map +0 -1
  318. package/dist/infrastructure/http/BrowserFetcher.js.map +0 -1
  319. package/dist/infrastructure/http/BunFetcher.d.ts.map +0 -1
  320. package/dist/infrastructure/http/BunFetcher.js.map +0 -1
  321. package/dist/infrastructure/http/CircuitBreaker.d.ts.map +0 -1
  322. package/dist/infrastructure/http/CircuitBreaker.js.map +0 -1
  323. package/dist/infrastructure/http/CloudflareWorkersFetcher.d.ts.map +0 -1
  324. package/dist/infrastructure/http/CloudflareWorkersFetcher.js.map +0 -1
  325. package/dist/infrastructure/http/CompressionManager.d.ts.map +0 -1
  326. package/dist/infrastructure/http/CompressionManager.js.map +0 -1
  327. package/dist/infrastructure/http/ConnectionPool.d.ts.map +0 -1
  328. package/dist/infrastructure/http/ConnectionPool.js.map +0 -1
  329. package/dist/infrastructure/http/DenoFetcher.d.ts.map +0 -1
  330. package/dist/infrastructure/http/DenoFetcher.js.map +0 -1
  331. package/dist/infrastructure/http/Fetcher.d.ts.map +0 -1
  332. package/dist/infrastructure/http/Fetcher.js.map +0 -1
  333. package/dist/infrastructure/http/Normalizer.d.ts.map +0 -1
  334. package/dist/infrastructure/http/Normalizer.js.map +0 -1
  335. package/dist/infrastructure/http/ProxyManager.d.ts.map +0 -1
  336. package/dist/infrastructure/http/ProxyManager.js.map +0 -1
  337. package/dist/infrastructure/http/RateLimiter.d.ts.map +0 -1
  338. package/dist/infrastructure/http/RateLimiter.js.map +0 -1
  339. package/dist/infrastructure/http/RetryStrategy.d.ts.map +0 -1
  340. package/dist/infrastructure/http/RetryStrategy.js.map +0 -1
  341. package/dist/infrastructure/http/index.d.ts.map +0 -1
  342. package/dist/infrastructure/http/index.js.map +0 -1
  343. package/dist/infrastructure/logging/AuditLogger.d.ts.map +0 -1
  344. package/dist/infrastructure/logging/AuditLogger.js.map +0 -1
  345. package/dist/infrastructure/logging/Logger.d.ts.map +0 -1
  346. package/dist/infrastructure/logging/Logger.js.map +0 -1
  347. package/dist/infrastructure/monitoring/GrafanaDashboard.js.map +0 -1
  348. package/dist/infrastructure/monitoring/MetricsCollector.d.ts.map +0 -1
  349. package/dist/infrastructure/monitoring/MetricsCollector.js.map +0 -1
  350. package/dist/infrastructure/monitoring/PrometheusExporter.d.ts.map +0 -1
  351. package/dist/infrastructure/monitoring/PrometheusExporter.js.map +0 -1
  352. package/dist/infrastructure/monitoring/TelemetryExporter.d.ts.map +0 -1
  353. package/dist/infrastructure/monitoring/TelemetryExporter.js.map +0 -1
  354. package/dist/infrastructure/native/NativeBackend.d.ts.map +0 -1
  355. package/dist/infrastructure/native/NativeBackend.js.map +0 -1
  356. package/dist/infrastructure/security/PIIRedactor.d.ts.map +0 -1
  357. package/dist/infrastructure/security/PIIRedactor.js.map +0 -1
  358. package/dist/infrastructure/security/SSRFProtection.d.ts.map +0 -1
  359. package/dist/infrastructure/security/SSRFProtection.js.map +0 -1
  360. package/dist/infrastructure/security/index.d.ts.map +0 -1
  361. package/dist/infrastructure/security/index.js.map +0 -1
  362. package/dist/infrastructure/validation/ResponseValidator.d.ts.map +0 -1
  363. package/dist/infrastructure/validation/ResponseValidator.js.map +0 -1
  364. package/dist/integrations/express.d.ts.map +0 -1
  365. package/dist/integrations/express.js.map +0 -1
  366. package/dist/integrations/graphql.d.ts.map +0 -1
  367. package/dist/integrations/graphql.js.map +0 -1
  368. package/dist/integrations/nestjs.d.ts.map +0 -1
  369. package/dist/integrations/nestjs.js.map +0 -1
  370. package/dist/shared/constants/http.constants.d.ts.map +0 -1
  371. package/dist/shared/constants/http.constants.js.map +0 -1
  372. package/dist/shared/constants/index.d.ts.map +0 -1
  373. package/dist/shared/constants/index.js.map +0 -1
  374. package/dist/shared/constants/rdap.constants.d.ts.map +0 -1
  375. package/dist/shared/constants/rdap.constants.js.map +0 -1
  376. package/dist/shared/errors/base.error.d.ts.map +0 -1
  377. package/dist/shared/errors/base.error.js.map +0 -1
  378. package/dist/shared/errors/index.d.ts.map +0 -1
  379. package/dist/shared/errors/index.js.map +0 -1
  380. package/dist/shared/types/entities.d.ts.map +0 -1
  381. package/dist/shared/types/entities.js.map +0 -1
  382. package/dist/shared/types/enums.d.ts.map +0 -1
  383. package/dist/shared/types/enums.js.map +0 -1
  384. package/dist/shared/types/errors.d.ts.map +0 -1
  385. package/dist/shared/types/errors.js.map +0 -1
  386. package/dist/shared/types/generics.d.ts.map +0 -1
  387. package/dist/shared/types/generics.js.map +0 -1
  388. package/dist/shared/types/index.d.ts.map +0 -1
  389. package/dist/shared/types/index.js.map +0 -1
  390. package/dist/shared/types/options.d.ts.map +0 -1
  391. package/dist/shared/types/options.js.map +0 -1
  392. package/dist/shared/types/responses.d.ts.map +0 -1
  393. package/dist/shared/types/responses.js +0 -3
  394. package/dist/shared/types/responses.js.map +0 -1
  395. package/dist/shared/utils/deprecation.d.ts.map +0 -1
  396. package/dist/shared/utils/deprecation.js.map +0 -1
  397. package/dist/shared/utils/enhanced-validators.d.ts.map +0 -1
  398. package/dist/shared/utils/enhanced-validators.js.map +0 -1
  399. package/dist/shared/utils/helpers/async.d.ts.map +0 -1
  400. package/dist/shared/utils/helpers/async.js.map +0 -1
  401. package/dist/shared/utils/helpers/cache.d.ts.map +0 -1
  402. package/dist/shared/utils/helpers/cache.js.map +0 -1
  403. package/dist/shared/utils/helpers/format.d.ts.map +0 -1
  404. package/dist/shared/utils/helpers/format.js.map +0 -1
  405. package/dist/shared/utils/helpers/http.d.ts.map +0 -1
  406. package/dist/shared/utils/helpers/http.js.map +0 -1
  407. package/dist/shared/utils/helpers/index.d.ts.map +0 -1
  408. package/dist/shared/utils/helpers/index.js.map +0 -1
  409. package/dist/shared/utils/helpers/object.d.ts.map +0 -1
  410. package/dist/shared/utils/helpers/object.js.map +0 -1
  411. package/dist/shared/utils/helpers/runtime.d.ts.map +0 -1
  412. package/dist/shared/utils/helpers/runtime.js.map +0 -1
  413. package/dist/shared/utils/helpers/string.d.ts.map +0 -1
  414. package/dist/shared/utils/helpers/string.js.map +0 -1
  415. package/dist/shared/utils/validators/asn.d.ts.map +0 -1
  416. package/dist/shared/utils/validators/asn.js.map +0 -1
  417. package/dist/shared/utils/validators/config-validation.d.ts.map +0 -1
  418. package/dist/shared/utils/validators/config-validation.js.map +0 -1
  419. package/dist/shared/utils/validators/domain.d.ts.map +0 -1
  420. package/dist/shared/utils/validators/domain.js.map +0 -1
  421. package/dist/shared/utils/validators/entity.d.ts.map +0 -1
  422. package/dist/shared/utils/validators/entity.js.map +0 -1
  423. package/dist/shared/utils/validators/index.d.ts.map +0 -1
  424. package/dist/shared/utils/validators/index.js.map +0 -1
  425. package/dist/shared/utils/validators/ip.d.ts.map +0 -1
  426. package/dist/shared/utils/validators/ip.js.map +0 -1
  427. package/dist/shared/utils/validators/nameserver.d.ts.map +0 -1
  428. package/dist/shared/utils/validators/nameserver.js.map +0 -1
  429. package/dist/shared/utils/validators/network.d.ts.map +0 -1
  430. package/dist/shared/utils/validators/network.js.map +0 -1
  431. /package/dist/{application → types/application}/client/index.d.ts +0 -0
  432. /package/dist/{application → types/application}/deduplication/QueryDeduplicator.d.ts +0 -0
  433. /package/dist/{application → types/application}/hooks/MiddlewareHooks.d.ts +0 -0
  434. /package/dist/{application → types/application}/services/BatchProcessor.d.ts +0 -0
  435. /package/dist/{application → types/application}/services/QueryOrchestrator.d.ts +0 -0
  436. /package/dist/{application → types/application}/services/QueryPriority.d.ts +0 -0
  437. /package/dist/{application → types/application}/services/index.d.ts +0 -0
  438. /package/dist/{cli → types/cli}/index.d.ts +0 -0
  439. /package/dist/{core → types/core}/ports/bootstrap.port.d.ts +0 -0
  440. /package/dist/{core → types/core}/ports/cache.port.d.ts +0 -0
  441. /package/dist/{core → types/core}/ports/fetcher.port.d.ts +0 -0
  442. /package/dist/{core → types/core}/ports/index.d.ts +0 -0
  443. /package/dist/{core → types/core}/ports/normalizer.port.d.ts +0 -0
  444. /package/dist/{core → types/core}/ports/pii-redactor.port.d.ts +0 -0
  445. /package/dist/{infrastructure → types/infrastructure}/cache/CacheManager.d.ts +0 -0
  446. /package/dist/{infrastructure → types/infrastructure}/cache/InMemoryCache.d.ts +0 -0
  447. /package/dist/{infrastructure → types/infrastructure}/cache/PersistentCache.d.ts +0 -0
  448. /package/dist/{infrastructure → types/infrastructure}/cache/RedisCache.d.ts +0 -0
  449. /package/dist/{infrastructure → types/infrastructure}/cache/index.d.ts +0 -0
  450. /package/dist/{infrastructure → types/infrastructure}/http/AuthenticationManager.d.ts +0 -0
  451. /package/dist/{infrastructure → types/infrastructure}/http/BootstrapDiscovery.d.ts +0 -0
  452. /package/dist/{infrastructure → types/infrastructure}/http/BrowserFetcher.d.ts +0 -0
  453. /package/dist/{infrastructure → types/infrastructure}/http/BunFetcher.d.ts +0 -0
  454. /package/dist/{infrastructure → types/infrastructure}/http/CircuitBreaker.d.ts +0 -0
  455. /package/dist/{infrastructure → types/infrastructure}/http/CloudflareWorkersFetcher.d.ts +0 -0
  456. /package/dist/{infrastructure → types/infrastructure}/http/CompressionManager.d.ts +0 -0
  457. /package/dist/{infrastructure → types/infrastructure}/http/ConnectionPool.d.ts +0 -0
  458. /package/dist/{infrastructure → types/infrastructure}/http/DenoFetcher.d.ts +0 -0
  459. /package/dist/{infrastructure → types/infrastructure}/http/Normalizer.d.ts +0 -0
  460. /package/dist/{infrastructure → types/infrastructure}/http/ProxyManager.d.ts +0 -0
  461. /package/dist/{infrastructure → types/infrastructure}/http/RetryStrategy.d.ts +0 -0
  462. /package/dist/{infrastructure → types/infrastructure}/http/index.d.ts +0 -0
  463. /package/dist/{infrastructure → types/infrastructure}/logging/AuditLogger.d.ts +0 -0
  464. /package/dist/{infrastructure → types/infrastructure}/logging/Logger.d.ts +0 -0
  465. /package/dist/{infrastructure → types/infrastructure}/monitoring/GrafanaDashboard.d.ts +0 -0
  466. /package/dist/{infrastructure → types/infrastructure}/monitoring/MetricsCollector.d.ts +0 -0
  467. /package/dist/{infrastructure → types/infrastructure}/monitoring/PrometheusExporter.d.ts +0 -0
  468. /package/dist/{infrastructure → types/infrastructure}/monitoring/TelemetryExporter.d.ts +0 -0
  469. /package/dist/{infrastructure → types/infrastructure}/native/NativeBackend.d.ts +0 -0
  470. /package/dist/{infrastructure → types/infrastructure}/security/PIIRedactor.d.ts +0 -0
  471. /package/dist/{infrastructure → types/infrastructure}/security/index.d.ts +0 -0
  472. /package/dist/{infrastructure → types/infrastructure}/validation/ResponseValidator.d.ts +0 -0
  473. /package/dist/{integrations → types/integrations}/express.d.ts +0 -0
  474. /package/dist/{integrations → types/integrations}/graphql.d.ts +0 -0
  475. /package/dist/{integrations → types/integrations}/nestjs.d.ts +0 -0
  476. /package/dist/{shared → types/shared}/constants/http.constants.d.ts +0 -0
  477. /package/dist/{shared → types/shared}/constants/index.d.ts +0 -0
  478. /package/dist/{shared → types/shared}/constants/rdap.constants.d.ts +0 -0
  479. /package/dist/{shared → types/shared}/errors/index.d.ts +0 -0
  480. /package/dist/{shared → types/shared}/types/entities.d.ts +0 -0
  481. /package/dist/{shared → types/shared}/types/errors.d.ts +0 -0
  482. /package/dist/{shared → types/shared}/types/generics.d.ts +0 -0
  483. /package/dist/{shared → types/shared}/utils/deprecation.d.ts +0 -0
  484. /package/dist/{shared → types/shared}/utils/enhanced-validators.d.ts +0 -0
  485. /package/dist/{shared → types/shared}/utils/helpers/async.d.ts +0 -0
  486. /package/dist/{shared → types/shared}/utils/helpers/cache.d.ts +0 -0
  487. /package/dist/{shared → types/shared}/utils/helpers/format.d.ts +0 -0
  488. /package/dist/{shared → types/shared}/utils/helpers/http.d.ts +0 -0
  489. /package/dist/{shared → types/shared}/utils/helpers/index.d.ts +0 -0
  490. /package/dist/{shared → types/shared}/utils/helpers/object.d.ts +0 -0
  491. /package/dist/{shared → types/shared}/utils/helpers/runtime.d.ts +0 -0
  492. /package/dist/{shared → types/shared}/utils/helpers/string.d.ts +0 -0
  493. /package/dist/{shared → types/shared}/utils/validators/asn.d.ts +0 -0
  494. /package/dist/{shared → types/shared}/utils/validators/config-validation.d.ts +0 -0
  495. /package/dist/{shared → types/shared}/utils/validators/domain.d.ts +0 -0
  496. /package/dist/{shared → types/shared}/utils/validators/entity.d.ts +0 -0
  497. /package/dist/{shared → types/shared}/utils/validators/index.d.ts +0 -0
  498. /package/dist/{shared → types/shared}/utils/validators/ip.d.ts +0 -0
  499. /package/dist/{shared → types/shared}/utils/validators/nameserver.d.ts +0 -0
  500. /package/dist/{shared → types/shared}/utils/validators/network.d.ts +0 -0
@@ -0,0 +1,93 @@
1
+ import { ValidationError } from '../../errors';
2
+ export function validateClientOptions(options) {
3
+ if (options.timeout !== undefined) {
4
+ if (typeof options.timeout === 'number') {
5
+ if (options.timeout < 100 || options.timeout > 60000) {
6
+ throw new ValidationError('Timeout must be between 100ms and 60s', {
7
+ field: 'timeout',
8
+ value: options.timeout,
9
+ });
10
+ }
11
+ }
12
+ else if (typeof options.timeout === 'object') {
13
+ const { connect, request, dns } = options.timeout;
14
+ if (connect !== undefined && (connect < 100 || connect > 60000)) {
15
+ throw new ValidationError('Connect timeout must be between 100ms and 60s', {
16
+ field: 'timeout.connect',
17
+ value: connect,
18
+ });
19
+ }
20
+ if (request !== undefined && (request < 100 || request > 60000)) {
21
+ throw new ValidationError('Request timeout must be between 100ms and 60s', {
22
+ field: 'timeout.request',
23
+ value: request,
24
+ });
25
+ }
26
+ if (dns !== undefined && (dns < 100 || dns > 60000)) {
27
+ throw new ValidationError('DNS timeout must be between 100ms and 60s', {
28
+ field: 'timeout.dns',
29
+ value: dns,
30
+ });
31
+ }
32
+ }
33
+ }
34
+ if (options.maxRedirects !== undefined) {
35
+ if (options.maxRedirects < 0 || options.maxRedirects > 100) {
36
+ throw new ValidationError('maxRedirects must be between 0 and 100', {
37
+ field: 'maxRedirects',
38
+ value: options.maxRedirects,
39
+ });
40
+ }
41
+ }
42
+ if (options.cache !== undefined && typeof options.cache === 'object') {
43
+ const { ttl, maxSize } = options.cache;
44
+ if (ttl !== undefined && (ttl < 1 || ttl > 86400)) {
45
+ throw new ValidationError('Cache TTL must be between 1 and 86400 seconds', {
46
+ field: 'cache.ttl',
47
+ value: ttl,
48
+ });
49
+ }
50
+ if (maxSize !== undefined && (maxSize < 1 || maxSize > 100000)) {
51
+ throw new ValidationError('Cache maxSize must be between 1 and 100000', {
52
+ field: 'cache.maxSize',
53
+ value: maxSize,
54
+ });
55
+ }
56
+ }
57
+ if (options.retry !== undefined && typeof options.retry === 'object') {
58
+ const { maxAttempts, initialDelay, maxDelay } = options.retry;
59
+ if (maxAttempts !== undefined && (maxAttempts < 1 || maxAttempts > 10)) {
60
+ throw new ValidationError('maxAttempts must be between 1 and 10', {
61
+ field: 'retry.maxAttempts',
62
+ value: maxAttempts,
63
+ });
64
+ }
65
+ if (initialDelay !== undefined && (initialDelay < 100 || initialDelay > 10000)) {
66
+ throw new ValidationError('initialDelay must be between 100ms and 10s', {
67
+ field: 'retry.initialDelay',
68
+ value: initialDelay,
69
+ });
70
+ }
71
+ if (maxDelay !== undefined && (maxDelay < 1000 || maxDelay > 60000)) {
72
+ throw new ValidationError('maxDelay must be between 1s and 60s', {
73
+ field: 'retry.maxDelay',
74
+ value: maxDelay,
75
+ });
76
+ }
77
+ }
78
+ if (options.rateLimit !== undefined && typeof options.rateLimit === 'object') {
79
+ const { maxRequests, windowMs } = options.rateLimit;
80
+ if (maxRequests !== undefined && (maxRequests < 1 || maxRequests > 10000)) {
81
+ throw new ValidationError('maxRequests must be between 1 and 10000', {
82
+ field: 'rateLimit.maxRequests',
83
+ value: maxRequests,
84
+ });
85
+ }
86
+ if (windowMs !== undefined && (windowMs < 1000 || windowMs > 3600000)) {
87
+ throw new ValidationError('windowMs must be between 1s and 1 hour', {
88
+ field: 'rateLimit.windowMs',
89
+ value: windowMs,
90
+ });
91
+ }
92
+ }
93
+ }
@@ -0,0 +1,29 @@
1
+ import { ValidationError } from '../../types/errors';
2
+ export function validateDomain(domain) {
3
+ if (!domain || typeof domain !== 'string') {
4
+ throw new ValidationError('Domain must be a non-empty string');
5
+ }
6
+ const trimmed = domain.trim().toLowerCase();
7
+ if (trimmed.length === 0) {
8
+ throw new ValidationError('Domain cannot be empty');
9
+ }
10
+ if (trimmed.length > 253) {
11
+ throw new ValidationError('Domain name too long (max 253 characters)');
12
+ }
13
+ const domainRegex = /^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)*[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/i;
14
+ if (!domainRegex.test(trimmed)) {
15
+ throw new ValidationError(`Invalid domain format: ${domain}`);
16
+ }
17
+ if (/[^a-z0-9.-]/i.test(trimmed)) {
18
+ throw new ValidationError(`Domain contains invalid characters: ${domain}`);
19
+ }
20
+ if (/\.\./.test(trimmed)) {
21
+ throw new ValidationError(`Domain contains consecutive dots: ${domain}`);
22
+ }
23
+ if (/^[.-]|[.-]$/.test(trimmed)) {
24
+ throw new ValidationError(`Domain cannot start or end with dot or hyphen: ${domain}`);
25
+ }
26
+ }
27
+ export function normalizeDomain(domain) {
28
+ return domain.trim().toLowerCase().replace(/\.$/, '');
29
+ }
@@ -0,0 +1,22 @@
1
+ import { ValidationError } from '../../types/errors';
2
+ export function validateEntityHandle(handle) {
3
+ if (!handle || typeof handle !== 'string') {
4
+ throw new ValidationError('Entity handle must be a non-empty string', { handle });
5
+ }
6
+ const trimmed = handle.trim();
7
+ if (trimmed.length === 0) {
8
+ throw new ValidationError('Entity handle cannot be empty', { handle });
9
+ }
10
+ if (trimmed.length > 255) {
11
+ throw new ValidationError('Entity handle exceeds maximum length of 255 characters', {
12
+ handle,
13
+ length: trimmed.length,
14
+ });
15
+ }
16
+ if (!/^[a-zA-Z0-9][\w\-.]*$/.test(trimmed)) {
17
+ throw new ValidationError('Entity handle contains invalid characters. Must start with alphanumeric and contain only letters, digits, hyphens, underscores, or dots.', { handle });
18
+ }
19
+ }
20
+ export function normalizeEntityHandle(handle) {
21
+ return handle.trim();
22
+ }
@@ -0,0 +1,7 @@
1
+ export { validateDomain, normalizeDomain } from './domain';
2
+ export { validateIP, validateIPv4, validateIPv6, normalizeIP } from './ip';
3
+ export { validateASN, normalizeASN } from './asn';
4
+ export { validateNameserver, normalizeNameserver } from './nameserver';
5
+ export { validateEntityHandle, normalizeEntityHandle } from './entity';
6
+ export { isPrivateIP, isLocalhost, isLinkLocal } from './network';
7
+ export { validateClientOptions } from './config-validation';
@@ -0,0 +1,48 @@
1
+ import { ValidationError } from '../../types/errors';
2
+ export function validateIPv4(ip) {
3
+ if (!ip || typeof ip !== 'string') {
4
+ throw new ValidationError('IP address must be a non-empty string');
5
+ }
6
+ const trimmed = ip.trim();
7
+ const parts = trimmed.split('.');
8
+ if (parts.length !== 4) {
9
+ throw new ValidationError(`Invalid IPv4 format: ${ip}`);
10
+ }
11
+ for (const part of parts) {
12
+ const num = parseInt(part, 10);
13
+ if (isNaN(num) || num < 0 || num > 255) {
14
+ throw new ValidationError(`Invalid IPv4 octet: ${part} in ${ip}`);
15
+ }
16
+ if (part.length > 1 && part[0] === '0') {
17
+ throw new ValidationError(`IPv4 octet cannot have leading zeros: ${part} in ${ip}`);
18
+ }
19
+ }
20
+ }
21
+ export function validateIPv6(ip) {
22
+ if (!ip || typeof ip !== 'string') {
23
+ throw new ValidationError('IP address must be a non-empty string');
24
+ }
25
+ const trimmed = ip.trim().toLowerCase();
26
+ const ipv6Regex = /^(([0-9a-f]{1,4}:){7}[0-9a-f]{1,4}|([0-9a-f]{1,4}:){1,7}:|([0-9a-f]{1,4}:){1,6}:[0-9a-f]{1,4}|([0-9a-f]{1,4}:){1,5}(:[0-9a-f]{1,4}){1,2}|([0-9a-f]{1,4}:){1,4}(:[0-9a-f]{1,4}){1,3}|([0-9a-f]{1,4}:){1,3}(:[0-9a-f]{1,4}){1,4}|([0-9a-f]{1,4}:){1,2}(:[0-9a-f]{1,4}){1,5}|[0-9a-f]{1,4}:((:[0-9a-f]{1,4}){1,6})|:((:[0-9a-f]{1,4}){1,7}|:)|fe80:(:[0-9a-f]{0,4}){0,4}%[0-9a-z]+|::(ffff(:0{1,4})?:)?((25[0-5]|(2[0-4]|1?[0-9])?[0-9])\.){3}(25[0-5]|(2[0-4]|1?[0-9])?[0-9])|([0-9a-f]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1?[0-9])?[0-9])\.){3}(25[0-5]|(2[0-4]|1?[0-9])?[0-9]))$/;
27
+ if (!ipv6Regex.test(trimmed)) {
28
+ throw new ValidationError(`Invalid IPv6 format: ${ip}`);
29
+ }
30
+ }
31
+ export function validateIP(ip) {
32
+ if (!ip || typeof ip !== 'string') {
33
+ throw new ValidationError('IP address must be a non-empty string');
34
+ }
35
+ const trimmed = ip.trim();
36
+ if (trimmed.includes('.')) {
37
+ validateIPv4(trimmed);
38
+ return 'v4';
39
+ }
40
+ if (trimmed.includes(':')) {
41
+ validateIPv6(trimmed);
42
+ return 'v6';
43
+ }
44
+ throw new ValidationError(`Invalid IP address format: ${ip}`);
45
+ }
46
+ export function normalizeIP(ip) {
47
+ return ip.trim().toLowerCase();
48
+ }
@@ -0,0 +1,44 @@
1
+ import { ValidationError } from '../../types/errors';
2
+ export function validateNameserver(nameserver) {
3
+ if (!nameserver || typeof nameserver !== 'string') {
4
+ throw new ValidationError('Nameserver must be a non-empty string', { nameserver });
5
+ }
6
+ const trimmed = nameserver.trim();
7
+ if (trimmed.length === 0) {
8
+ throw new ValidationError('Nameserver cannot be empty', { nameserver });
9
+ }
10
+ if (trimmed.length > 253) {
11
+ throw new ValidationError('Nameserver hostname exceeds maximum length of 253 characters', {
12
+ nameserver,
13
+ length: trimmed.length,
14
+ });
15
+ }
16
+ if (!trimmed.includes('.')) {
17
+ throw new ValidationError('Nameserver must be a fully-qualified hostname (e.g., ns1.example.com)', { nameserver });
18
+ }
19
+ const labels = trimmed.split('.');
20
+ for (const label of labels) {
21
+ if (label.length === 0) {
22
+ throw new ValidationError('Nameserver hostname contains empty label (double dot or leading/trailing dot)', {
23
+ nameserver,
24
+ });
25
+ }
26
+ if (label.length > 63) {
27
+ throw new ValidationError(`Nameserver label "${label}" exceeds maximum length of 63 characters`, {
28
+ nameserver,
29
+ label,
30
+ });
31
+ }
32
+ if (!/^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])?$/.test(label) && !/^[a-zA-Z0-9]$/.test(label)) {
33
+ if (!/^[a-zA-Z0-9][a-zA-Z0-9-]*$/.test(label)) {
34
+ throw new ValidationError(`Nameserver label "${label}" contains invalid characters`, {
35
+ nameserver,
36
+ label,
37
+ });
38
+ }
39
+ }
40
+ }
41
+ }
42
+ export function normalizeNameserver(nameserver) {
43
+ return nameserver.trim().toLowerCase();
44
+ }
@@ -0,0 +1,42 @@
1
+ export function isPrivateIP(ip) {
2
+ const trimmed = ip.trim();
3
+ if (trimmed.includes('.')) {
4
+ const parts = trimmed.split('.').map((p) => parseInt(p, 10));
5
+ if (parts[0] === 10)
6
+ return true;
7
+ const part1 = parts[1];
8
+ if (parts[0] === 172 && part1 !== undefined && part1 >= 16 && part1 <= 31)
9
+ return true;
10
+ if (parts[0] === 192 && parts[1] === 168)
11
+ return true;
12
+ return false;
13
+ }
14
+ if (trimmed.includes(':')) {
15
+ const lower = trimmed.toLowerCase();
16
+ if (lower.startsWith('fc') || lower.startsWith('fd'))
17
+ return true;
18
+ if (lower.startsWith('fe80:'))
19
+ return true;
20
+ return false;
21
+ }
22
+ return false;
23
+ }
24
+ export function isLocalhost(ip) {
25
+ const trimmed = ip.trim().toLowerCase();
26
+ if (trimmed === '127.0.0.1' || trimmed.startsWith('127.'))
27
+ return true;
28
+ if (trimmed === '::1' || trimmed === '0:0:0:0:0:0:0:1')
29
+ return true;
30
+ return false;
31
+ }
32
+ export function isLinkLocal(ip) {
33
+ const trimmed = ip.trim();
34
+ if (trimmed.includes('.')) {
35
+ const parts = trimmed.split('.').map((p) => parseInt(p, 10));
36
+ if (parts[0] === 169 && parts[1] === 254)
37
+ return true;
38
+ }
39
+ if (trimmed.toLowerCase().startsWith('fe80:'))
40
+ return true;
41
+ return false;
42
+ }
@@ -1,6 +1,6 @@
1
1
  import { RateLimiter } from '../../infrastructure/http/RateLimiter';
2
2
  import { Logger } from '../../infrastructure/logging/Logger';
3
- import type { DomainResponse, IPResponse, ASNResponse, NameserverResponse, EntityResponse, AvailabilityResult } from '../../shared/types';
3
+ import type { DomainResponse, IPResponse, ASNResponse, NameserverResponse, EntityResponse, AvailabilityResult, ExplainResult, SearchResult } from '../../shared/types';
4
4
  import type { RDAPClientOptions } from '../../shared/types/options';
5
5
  import { BatchProcessor } from '../services/BatchProcessor';
6
6
  import type { BatchQueryRequest, StreamBatchOptions } from '../services/BatchProcessor';
@@ -34,8 +34,17 @@ export declare class RDAPClient {
34
34
  entity(handle: string, serverUrl: string): Promise<EntityResponse>;
35
35
  checkAvailability(domain: string): Promise<AvailabilityResult>;
36
36
  checkAvailabilityBatch(domains: string[]): Promise<Map<string, AvailabilityResult>>;
37
+ searchDomains(pattern: string, serverUrl?: string): Promise<SearchResult<DomainResponse>>;
38
+ searchEntities(pattern: string, serverUrl?: string): Promise<SearchResult<EntityResponse>>;
39
+ explain(query: string): Promise<ExplainResult>;
40
+ private pingTelemetry;
37
41
  private fetchWithRetry;
38
42
  private normalizeOptions;
43
+ validate(): Promise<{
44
+ valid: boolean;
45
+ errors: string[];
46
+ warnings: string[];
47
+ }>;
39
48
  clearCache(): Promise<void>;
40
49
  getStats(): Promise<{
41
50
  cache: {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RDAPClient.d.ts","sourceRoot":"","sources":["../../../../src/application/client/RDAPClient.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/application/client/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryDeduplicator.d.ts","sourceRoot":"","sources":["../../../../src/application/deduplication/QueryDeduplicator.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,mBAAmB;IAElC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAQD,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAgC;IACzD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;gBAEtB,OAAO,CAAC,EAAE,mBAAmB;IAiBzC,WAAW,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;IAwB7D,gBAAgB,IAAI,MAAM;IAK1B,eAAe,IAAI,MAAM,EAAE;IAK3B,KAAK,IAAI,IAAI;IAIb,QAAQ,IAAI;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE;CAOrE"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MiddlewareHooks.d.ts","sourceRoot":"","sources":["../../../../src/application/hooks/MiddlewareHooks.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAKjE,MAAM,WAAW,YAAY;IAC3B,SAAS,EAAE,QAAQ,GAAG,IAAI,GAAG,KAAK,GAAG,YAAY,GAAG,QAAQ,CAAC;IAC7D,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IAKjB,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;CACpB;AAKD,MAAM,WAAW,kBAAmB,SAAQ,YAAY;IACtD,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;CACpB;AAKD,MAAM,WAAW,MAAM,CAAC,CAAC,GAAG,IAAI;IAC9B,CAAC,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;CACpC;AAKD,MAAM,WAAW,iBAAiB;IAEhC,WAAW,CAAC,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC;IAEnC,UAAU,CAAC,EAAE,MAAM,CAAC,kBAAkB,CAAC,CAAC;IAExC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,CAAC,CAAC;IAErC,UAAU,CAAC,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC;IAElC,WAAW,CAAC,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC;IAEnC,OAAO,CAAC,EAAE,MAAM,CAAC,YAAY,GAAG;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACrE;AAkBD,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAoB;IACjC,OAAO,CAAC,eAAe,CAAuB;gBAElC,KAAK,CAAC,EAAE,iBAAiB;YAMvB,OAAO;IAqBf,cAAc,CAAC,GAAG,EAAE,YAAY,GAAG,OAAO,CAAC,OAAO,CAAC;IAsBnD,aAAa,CAAC,GAAG,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;IAOrD,UAAU,CAAC,GAAG,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;IAOlD,aAAa,CAAC,GAAG,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAO/C,cAAc,CAAC,GAAG,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAOhD,UAAU,CACd,GAAG,EAAE,YAAY,GAAG;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GACrD,OAAO,CAAC,IAAI,CAAC;IAkBhB,GAAG,CAAC,KAAK,EAAE,OAAO,CAAC,iBAAiB,CAAC,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI;IAU/D,KAAK,IAAI,IAAI;IAMb,kBAAkB,IAAI,MAAM,EAAE;CAK/B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BatchProcessor.d.ts","sourceRoot":"","sources":["../../../../src/application/services/BatchProcessor.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,KAAK,EAAE,gBAAgB,EAAe,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAKnG,MAAM,WAAW,iBAAiB,CAAC,CAAC,SAAS,gBAAgB,GAAG,gBAAgB;IAC9E,IAAI,EAAE,CAAC,CAAC;IACR,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAKD,MAAM,WAAW,YAAY;IAE3B,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAKD,MAAM,WAAW,kBAAkB;IAEjC,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAUD,qBAAa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAa;gBAExB,MAAM,EAAE,UAAU;IAOxB,YAAY,CAAC,CAAC,SAAS,gBAAgB,EAC3C,QAAQ,EAAE,iBAAiB,CAAC,CAAC,CAAC,EAAE,EAChC,OAAO,GAAE,YAAiB,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;IAyF3B,uBAAuB,CAAC,CAAC,SAAS,gBAAgB,EACtD,QAAQ,EAAE,iBAAiB,CAAC,CAAC,CAAC,EAAE,EAChC,SAAS,EAAE,MAAM,EACjB,OAAO,GAAE,IAAI,CAAC,YAAY,EAAE,SAAS,CAAM,GAC1C,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;YAanB,UAAU;IA4CjB,WAAW,CAAC,CAAC,SAAS,gBAAgB,EAC3C,QAAQ,EAAE,iBAAiB,CAAC,CAAC,CAAC,EAAE,EAChC,OAAO,GAAE,kBAAuB,GAC/B,cAAc,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC;IA0CrD,mBAAmB,CAAC,CAAC,SAAS,gBAAgB,EAC5C,OAAO,EAAE,gBAAgB,CAAC,CAAC,CAAC,EAAE,GAC7B;QACD,KAAK,EAAE,MAAM,CAAC;QACd,UAAU,EAAE,MAAM,CAAC;QACnB,MAAM,EAAE,MAAM,CAAC;QACf,eAAe,EAAE,MAAM,CAAC;QACxB,aAAa,EAAE,MAAM,CAAC;QACtB,WAAW,EAAE,MAAM,CAAC;KACrB;CAeF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryOrchestrator.d.ts","sourceRoot":"","sources":["../../../../src/application/services/QueryOrchestrator.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAChF,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kDAAkD,CAAC;AACzF,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAC;AAClE,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,WAAW,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AActH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAM5E,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,YAAY,CAAC;IACpB,SAAS,EAAE,kBAAkB,CAAC;IAC9B,OAAO,EAAE,YAAY,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;IACvB,WAAW,EAAE,WAAW,CAAC;IACzB,UAAU,EAAE,OAAO,CAAC;IAEpB,cAAc,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;IAC9C,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,YAAY,CAAC,EAAE,iBAAiB,CAAC;IACjC,YAAY,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE;QACZ,KAAK,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;QACrE,IAAI,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;QACpE,IAAI,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;QACpE,KAAK,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;KACtE,CAAC;CACH;AAMD,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA0B;gBAErC,MAAM,EAAE,uBAAuB;IAOrC,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;IAoMpD,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;IAuMxC,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAqMpD,eAAe,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAwIhE,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;CAgI9E"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryPriority.d.ts","sourceRoot":"","sources":["../../../../src/application/services/QueryPriority.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,CAAC;AAEjD,MAAM,WAAW,iBAAiB,CAAC,CAAC;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,EAAE,CAAC,CAAC;IACR,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAC9B,MAAM,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;CAChC;AAKD,qBAAa,kBAAkB,CAAC,CAAC,GAAG,GAAG;IACrC,OAAO,CAAC,iBAAiB,CAA8B;IACvD,OAAO,CAAC,mBAAmB,CAA8B;IACzD,OAAO,CAAC,gBAAgB,CAA8B;IACtD,OAAO,CAAC,UAAU,CAAkB;IACpC,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,WAAW,CAAa;IAChC,OAAO,CAAC,SAAS,CAA4B;gBAEjC,WAAW,EAAE,MAAM,YAAI,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,GAAG,CAAC;IAQnE,OAAO,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,GAAE,QAAmB,GAAG,OAAO,CAAC,GAAG,CAAC;YAiCrD,YAAY;IA8B1B,OAAO,CAAC,OAAO;IAsBf,OAAO,CAAC,QAAQ;IAWhB,QAAQ,IAAI;QACV,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,GAAG,EAAE,MAAM,CAAC;QACZ,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,EAAE,MAAM,CAAC;KACrB;IAiBD,KAAK,IAAI,IAAI;IAoBb,IAAI,IAAI,MAAM;IAWd,OAAO,IAAI,OAAO;CAGnB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/application/services/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,iBAAiB,EAAE,KAAK,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,KAAK,iBAAiB,EAAE,KAAK,YAAY,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cli/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bootstrap.port.d.ts","sourceRoot":"","sources":["../../../../src/core/ports/bootstrap.port.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,cAAc;IAC7B,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAChD,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAC1C,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAC1C,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAC1C,UAAU,IAAI,IAAI,CAAC;CACpB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cache.port.d.ts","sourceRoot":"","sources":["../../../../src/core/ports/cache.port.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKvD,MAAM,WAAW,UAAU;IACzB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC;IAC/C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnE,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACvB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACnC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;CACzB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fetcher.port.d.ts","sourceRoot":"","sources":["../../../../src/core/ports/fetcher.port.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAK1D,MAAM,WAAW,YAAY;IAC3B,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;CAC9C"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/core/ports/index.ts"],"names":[],"mappings":"AAKA,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"normalizer.port.d.ts","sourceRoot":"","sources":["../../../../src/core/ports/normalizer.port.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKxE,MAAM,WAAW,eAAe;IAC9B,SAAS,CACP,GAAG,EAAE,eAAe,EACpB,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,OAAO,EACf,UAAU,EAAE,OAAO,GAClB,YAAY,CAAC;CACjB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pii-redactor.port.d.ts","sourceRoot":"","sources":["../../../../src/core/ports/pii-redactor.port.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKvD,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,CAAC,SAAS,YAAY,EAAE,QAAQ,EAAE,CAAC,GAAG,CAAC,CAAC;IAC/C,SAAS,IAAI,OAAO,CAAC;CACtB"}
@@ -1,13 +1,16 @@
1
1
  export { RDAPClient } from './application/client';
2
- export type { DomainResponse, IPResponse, ASNResponse, NameserverResponse, EntityResponse, RDAPResponse, RDAPEvent, RDAPEntity, RDAPLink, RDAPRemark, RDAPNameserver, RawRDAPResponse, AvailabilityResult, QueryType, ObjectClass, RDAPStatus, EventType, RoleType, CacheStrategy, BackoffStrategy, LogLevel, } from './shared/types';
2
+ export type { DomainResponse, IPResponse, ASNResponse, NameserverResponse, EntityResponse, RDAPResponse, RDAPEvent, RDAPEntity, RDAPLink, RDAPRemark, RDAPNameserver, RawRDAPResponse, AvailabilityResult, SearchResult, ExplainResult, QueryType, ObjectClass, RDAPStatus, EventType, RoleType, CacheStrategy, BackoffStrategy, LogLevel, } from './shared/types';
3
3
  export type { QueryTypeLiteral, QueryResult, QueryResultMap, BatchQueryResult, TypedQueryOptions, } from './shared/types/generics';
4
4
  export type { RDAPClientOptions, RetryOptions, CacheOptions, SSRFProtectionOptions, PrivacyOptions, TimeoutOptions, LoggingOptions, RateLimitOptions, BootstrapOptions, TelemetryOptions, } from './shared/types/options';
5
- export { RDAPifyError, SSRFProtectionError, NetworkError, TimeoutError, RDAPServerError, NoServerFoundError, ValidationError, ParseError, CacheError, RateLimitError, isRDAPifyError, isSSRFProtectionError, isNetworkError, isTimeoutError, isRateLimitError, } from './shared/errors';
5
+ export { RDAPifyError, SSRFProtectionError, NetworkError, TimeoutError, RDAPServerError, NoServerFoundError, ValidationError, ParseError, CacheError, RateLimitError, SearchNotSupportedError, isRDAPifyError, isSSRFProtectionError, isNetworkError, isTimeoutError, isRateLimitError, } from './shared/errors';
6
6
  export { validateDomain, validateIP, validateIPv4, validateIPv6, validateASN, validateNameserver, validateEntityHandle, isPrivateIP, isLocalhost, isLinkLocal, normalizeDomain, normalizeIP, normalizeASN, normalizeNameserver, normalizeEntityHandle, } from './shared/utils/validators';
7
7
  export type { ICachePort } from './core/ports';
8
- export declare const VERSION = "0.3.0";
8
+ export { UsageTelemetry } from './infrastructure/telemetry/UsageTelemetry';
9
+ export declare const VERSION = "0.3.2";
9
10
  export { BatchProcessor } from './application/services/BatchProcessor';
10
11
  export { RateLimiter } from './infrastructure/http/RateLimiter';
12
+ export { DistributedRateLimiter } from './infrastructure/http/DistributedRateLimiter';
13
+ export type { RedisRateLimitClient } from './infrastructure/http/DistributedRateLimiter';
11
14
  export { ConnectionPool } from './infrastructure/http/ConnectionPool';
12
15
  export { MetricsCollector } from './infrastructure/monitoring/MetricsCollector';
13
16
  export { Logger } from './infrastructure/logging/Logger';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CacheManager.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/cache/CacheManager.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAS/D,MAAM,WAAW,MAAM;IACrB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC;IAC/C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnE,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACvB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACnC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;CACzB;AAKD,qBAAa,YAAa,YAAW,MAAM;IACzC,OAAO,CAAC,KAAK,CAAS;IACtB,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAS;IAC7B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;gBAEtB,OAAO,GAAE,YAAiB;IA8ChC,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC;IAe9C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAclE,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAalC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAatB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAclC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC;IAcvB,QAAQ,IAAI,OAAO,CAAC;QACxB,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,OAAO,CAAC;QACjB,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CAOH"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InMemoryCache.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/cache/InMemoryCache.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAa7C,qBAAa,aAAc,YAAW,MAAM;IAC1C,OAAO,CAAC,KAAK,CAA0B;IACvC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,WAAW,CAAW;gBAElB,OAAO,GAAE,MAAa;IAS5B,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC;IAsB9C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG,GAAE,MAAa,GAAG,OAAO,CAAC,IAAI,CAAC;IAmBxE,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAQlC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAQtB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAmBlC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC;IAS7B,OAAO,CAAC,iBAAiB;IAUzB,OAAO,CAAC,qBAAqB;YAUf,QAAQ;YAeR,cAAc;IAkBtB,QAAQ,IAAI,OAAO,CAAC;QACxB,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;CAQH"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PersistentCache.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/cache/PersistentCache.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,sBAAsB;IACrC,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAaD,qBAAa,eAAe;IAC1B,OAAO,CAAC,KAAK,CAAsC;IACnD,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAoB;IAC5C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAS;IAC7B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAU;IACnC,OAAO,CAAC,SAAS,CAAC,CAAiB;IACnC,OAAO,CAAC,KAAK,CAAkB;gBAEnB,OAAO,GAAE,sBAA2B;IA0B1C,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,GAAG,IAAI,CAAC;IAyBrC,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA6BzD,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAWrC,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAoBlC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAYtB,QAAQ,IAAI,OAAO,CAAC;QACxB,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;IA8BF,OAAO,CAAC,QAAQ;IAoBhB,OAAO,CAAC,oBAAoB;IAa5B,OAAO,CAAC,IAAI;YA8BE,IAAI;IAqBZ,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;IAqBhC,OAAO,IAAI,IAAI;CAYhB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RedisCache.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/cache/RedisCache.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAmB7C,MAAM,WAAW,eAAe;IAE9B,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAEzC,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,EAAE,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE1F,GAAG,CAAC,GAAG,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAExC,MAAM,CAAC,GAAG,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAE3C,IAAI,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAKzC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC;CAChI;AAKD,MAAM,WAAW,iBAAiB;IAMhC,SAAS,CAAC,EAAE,MAAM,CAAC;IAOnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAgBD,qBAAa,UAAW,YAAW,MAAM;IACvC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;IACzC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;gBAE1B,MAAM,EAAE,eAAe,EAAE,OAAO,GAAE,iBAAsB;IAepE,OAAO,CAAC,QAAQ;IAYhB,OAAO,CAAC,MAAM,CAAC,SAAS;IASxB,OAAO,CAAC,UAAU;YAYJ,OAAO;IAyBf,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC;IAsB9C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAclE,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAYlC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAWtB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAalC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC;IAiBvB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,YAAY,GAAG,IAAI,CAAC,EAAE,CAAC;IAiCzD,OAAO,CACX,OAAO,EAAE,KAAK,CAAC;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,YAAY,CAAC;QAAC,GAAG,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,GACjE,OAAO,CAAC,IAAI,CAAC;IAWV,QAAQ,IAAI,OAAO,CAAC;QACxB,SAAS,EAAE,MAAM,CAAC;QAClB,IAAI,EAAE,MAAM,CAAC;QACb,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;CAOH"}
@@ -0,0 +1,16 @@
1
+ import type { RDAPResponse } from '../../shared/types';
2
+ import type { ICache } from './CacheManager';
3
+ export declare class StaleWhileRevalidateCache implements ICache {
4
+ private readonly entries;
5
+ private readonly maxSize;
6
+ private readonly revalidateCallback?;
7
+ constructor(maxSize?: number, revalidateCallback?: (key: string, freshValue: RDAPResponse) => void);
8
+ get(key: string): Promise<RDAPResponse | null>;
9
+ set(key: string, value: RDAPResponse, ttl?: number): Promise<void>;
10
+ delete(key: string): Promise<void>;
11
+ clear(): Promise<void>;
12
+ has(key: string): Promise<boolean>;
13
+ size(): Promise<number>;
14
+ private evictOldest;
15
+ }
16
+ //# sourceMappingURL=StaleWhileRevalidateCache.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StaleWhileRevalidateCache.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/cache/StaleWhileRevalidateCache.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAY7C,qBAAa,yBAA0B,YAAW,MAAM;IACtD,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAwB;IAChD,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAC,CAAkD;gBAGpF,OAAO,GAAE,MAAa,EACtB,kBAAkB,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,YAAY,KAAK,IAAI;IAWhE,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC;IAe9C,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG,GAAE,MAAa,GAAG,OAAO,CAAC,IAAI,CAAC;IAOxE,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAIlC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAItB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAIlC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC;IAI7B,OAAO,CAAC,WAAW;CAMpB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/cache/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,KAAK,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,KAAK,iBAAiB,EAAE,MAAM,cAAc,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AuthenticationManager.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/AuthenticationManager.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEhE,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,QAAQ,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,aAAa,CAAC;CACxB;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAKD,qBAAa,qBAAqB;IAChC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAW;IAChC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAS;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;IACtC,OAAO,CAAC,MAAM,CAAC,CAAgB;gBAEnB,OAAO,EAAE,qBAAqB;IAe1C,OAAO,CAAC,QAAQ;IA+BhB,UAAU,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAqCpC,cAAc,IAAI,OAAO;IAWzB,iBAAiB,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAW/C,OAAO,IAAI,QAAQ;IAOnB,OAAO,IAAI;QACT,IAAI,EAAE,QAAQ,CAAC;QACf,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,YAAY,CAAC,EAAE,OAAO,CAAC;KACxB;CAmBF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BootstrapDiscovery.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/BootstrapDiscovery.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAGnE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAkCrD,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAe;IACvC,OAAO,CAAC,KAAK,CAAgC;IAC7C,OAAO,CAAC,WAAW,CAAsB;IACzC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAsB;IACvD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAU;IACnC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAW;gBAE5B,OAAO,GAAE,MAAqC,EAAE,OAAO,CAAC,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,gBAAgB;IA+BxG,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IA8B/C,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAqBzC,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAwBzC,kBAAkB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAsCvD,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;YA6BjC,gBAAgB;IAyD9B,OAAO,CAAC,aAAa;IAwBrB,UAAU,IAAI,IAAI;IAQlB,aAAa,IAAI;QACf,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,EAAE,CAAC;KACjB;CAMF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BrowserFetcher.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/BrowserFetcher.ts"],"names":[],"mappings":"AAmCA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAG1D,MAAM,WAAW,qBAAqB;IASpC,QAAQ,EAAE,MAAM,CAAC;IAMjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAKjB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAqBD,qBAAa,cAAe,YAAW,YAAY;IACjD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAyB;gBAErC,OAAO,EAAE,qBAAqB;IAYpC,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IA6ClD,WAAW,IAAI,MAAM;CAGtB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BunFetcher.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/BunFetcher.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAEjE,MAAM,WAAW,iBAAiB;IAEhC,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEjC,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AASD,qBAAa,UAAW,YAAW,YAAY;IAC7C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAyB;IACjD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAiB;gBAErC,OAAO,GAAE,iBAAsB;IAUrC,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAgDlD,MAAM,CAAC,YAAY,IAAI,OAAO,KAAK;CAOpC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CircuitBreaker.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/CircuitBreaker.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,YAAY,GAAG,QAAQ,GAAG,MAAM,GAAG,WAAW,CAAC;AAE3D,MAAM,WAAW,qBAAqB;IAKpC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAM1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAM1B,eAAe,CAAC,EAAE,MAAM,CAAC;IAMzB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,gBAAiB,SAAQ,KAAK;aACb,KAAK,EAAE,YAAY;gBAAnB,KAAK,GAAE,YAAqB;CAIzD;AAKD,qBAAa,cAAc;IACzB,OAAO,CAAC,KAAK,CAA0B;IACvC,OAAO,CAAC,YAAY,CAAK;IACzB,OAAO,CAAC,YAAY,CAAK;IACzB,OAAO,CAAC,YAAY,CAAC,CAAS;IAC9B,OAAO,CAAC,YAAY,CAAgB;IAEpC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAS;IAC1C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAS;IAC1C,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAS;IACzC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;gBAEpB,OAAO,GAAE,qBAA0B;IAS/C,QAAQ,IAAI,YAAY;IAYlB,OAAO,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;IAoBlD,aAAa,IAAI,IAAI;IAOrB,aAAa,IAAI,IAAI;IAOrB,KAAK,IAAI,IAAI;IAUb,OAAO,CAAC,yBAAyB;IAYjC,OAAO,CAAC,SAAS;IAkBjB,OAAO,CAAC,SAAS;IAuBjB,OAAO,CAAC,gBAAgB;CAIzB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudflareWorkersFetcher.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/CloudflareWorkersFetcher.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAEjE,MAAM,WAAW,+BAA+B;IAE9C,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAQjC,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAYD,qBAAa,wBAAyB,YAAW,YAAY;IAC3D,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAyB;IACjD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAiB;gBAErC,OAAO,GAAE,+BAAoC;IAWnD,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;CA0CnD"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CompressionManager.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/CompressionManager.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;AAExD,MAAM,WAAW,kBAAkB;IACjC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,eAAe,EAAE,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAKD,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;IAClC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAuB;IAC7C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;gBAEvB,OAAO,GAAE,kBAAuB;IAS5C,uBAAuB,IAAI,MAAM,GAAG,SAAS;IAwBvC,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAgClE,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAOrC,iBAAiB,IAAI,eAAe,EAAE;IAOtC,WAAW,CAAC,IAAI,EAAE,eAAe,GAAG,OAAO;IAO3C,OAAO,IAAI;QACT,OAAO,EAAE,OAAO,CAAC;QACjB,KAAK,EAAE,eAAe,EAAE,CAAC;QACzB,SAAS,EAAE,MAAM,CAAC;KACnB;IAWD,aAAa,CAAC,YAAY,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,MAAM;IAQnE,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG;QACtD,YAAY,EAAE,MAAM,CAAC;QACrB,cAAc,EAAE,MAAM,CAAC;QACvB,UAAU,EAAE,MAAM,CAAC;QACnB,eAAe,EAAE,MAAM,CAAC;KACzB;CAWF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConnectionPool.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/ConnectionPool.ts"],"names":[],"mappings":"AAYA,MAAM,WAAW,qBAAqB;IACpC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAKD,qBAAa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAS;IACxC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAU;IACpC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,WAAW,CAAkC;IACrD,OAAO,CAAC,eAAe,CAAC,CAAiB;gBAE7B,OAAO,GAAE,qBAA0B;IAezC,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAgC9D,OAAO,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI;YAcrB,iBAAiB;IA0B/B,OAAO,CAAC,OAAO;IAwBf,QAAQ,IAAI;QACV,gBAAgB,EAAE,MAAM,CAAC;QACzB,iBAAiB,EAAE,MAAM,CAAC;QAC1B,eAAe,EAAE,MAAM,CAAC;QACxB,KAAK,EAAE,MAAM,CAAC;KACf;IAsBD,OAAO,IAAI,IAAI;CAOhB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DenoFetcher.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/DenoFetcher.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAEjE,MAAM,WAAW,kBAAkB;IAEjC,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEjC,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAUD,qBAAa,WAAY,YAAW,YAAY;IAC9C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAyB;IACjD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAiB;gBAErC,OAAO,GAAE,kBAAuB;IAUtC,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;CAwCnD"}
@@ -0,0 +1,12 @@
1
+ import { RateLimiter } from './RateLimiter';
2
+ import type { RateLimitOptions } from '../../shared/types/options';
3
+ export interface RedisRateLimitClient {
4
+ incr(key: string): Promise<number>;
5
+ pexpire(key: string, ms: number): Promise<void>;
6
+ }
7
+ export declare class DistributedRateLimiter extends RateLimiter {
8
+ private readonly redis;
9
+ constructor(redis: RedisRateLimitClient, options?: RateLimitOptions);
10
+ checkLimit(key?: string): Promise<void>;
11
+ }
12
+ //# sourceMappingURL=DistributedRateLimiter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DistributedRateLimiter.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/DistributedRateLimiter.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAMnE,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IACnC,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACjD;AAUD,qBAAa,sBAAuB,SAAQ,WAAW;IACrD,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAuB;gBAEjC,KAAK,EAAE,oBAAoB,EAAE,OAAO,GAAE,gBAAqB;IAYxD,UAAU,CAAC,GAAG,GAAE,MAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;CAqBlE"}
@@ -10,6 +10,7 @@ export interface FetcherOptions {
10
10
  ssrfProtection?: SSRFProtection;
11
11
  logRedirect?: (fromUrl: string, toUrl: string) => void;
12
12
  http2?: boolean;
13
+ signal?: AbortSignal;
13
14
  }
14
15
  export declare class Fetcher {
15
16
  private readonly timeout;
@@ -20,6 +21,7 @@ export declare class Fetcher {
20
21
  private readonly ssrfProtection?;
21
22
  private readonly logRedirect?;
22
23
  readonly http2: boolean;
24
+ private readonly signal?;
23
25
  constructor(options?: FetcherOptions);
24
26
  fetch(url: string): Promise<RawRDAPResponse>;
25
27
  private makeRequest;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Fetcher.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/Fetcher.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAGjE,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAM5D,MAAM,WAAW,cAAc;IAC7B,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAEvD,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAKD,qBAAa,OAAO;IAClB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAA2B;IACnD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAyB;IACjD,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAU;IAC1C,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;IACtC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAiB;IACjD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAA2C;IACxE,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC;IACxB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAc;gBAE1B,OAAO,GAAE,cAAmB;IAoBlC,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;YAyBpC,WAAW;IA2HzB,SAAS,IAAI;QACX,OAAO,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;QAClC,SAAS,EAAE,MAAM,CAAC;QAClB,eAAe,EAAE,OAAO,CAAC;QACzB,YAAY,EAAE,MAAM,CAAC;KACtB;CAQF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Normalizer.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/Normalizer.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,eAAe,EAMf,YAAY,EAGb,MAAM,oBAAoB,CAAC;AAkC5B,qBAAa,UAAU;IAIrB,SAAS,CACP,GAAG,EAAE,eAAe,EACpB,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,EACd,MAAM,GAAE,OAAe,EACvB,UAAU,GAAE,OAAe,GAC1B,YAAY;IA+Bf,OAAO,CAAC,eAAe;IAsCvB,OAAO,CAAC,WAAW;IAwCnB,OAAO,CAAC,YAAY;IAuCpB,OAAO,CAAC,mBAAmB;IA2C3B,OAAO,CAAC,eAAe;IAoCvB,OAAO,CAAC,kBAAkB;IAmB1B,OAAO,CAAC,gBAAgB;IA+CxB,OAAO,CAAC,eAAe;CAWxB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProxyManager.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/ProxyManager.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEnE,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE;QACL,QAAQ,EAAE,MAAM,CAAC;QACjB,QAAQ,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACvB;AAKD,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAgB;IACzC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAS;IAC9B,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAS;IAC9B,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAGpB;IACF,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAc;gBAE7B,OAAO,EAAE,YAAY;IAcjC,OAAO,CAAC,QAAQ;IAiBhB,WAAW,IAAI,MAAM;IAerB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IA6BlC,cAAc,IAAI;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB;IAkBD,OAAO,IAAI;QACT,QAAQ,EAAE,aAAa,CAAC;QACxB,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,OAAO,CAAC;QACjB,OAAO,EAAE,MAAM,CAAC;QAChB,WAAW,EAAE,MAAM,CAAC;KACrB;IAcD,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAOhC,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAOnC,aAAa,IAAI,MAAM,EAAE;CAG1B"}
@@ -17,6 +17,11 @@ export declare class RateLimiter {
17
17
  resetAll(): void;
18
18
  private cleanup;
19
19
  destroy(): void;
20
+ isEnabled(): boolean;
21
+ getConfig(): {
22
+ maxRequests: number;
23
+ windowMs: number;
24
+ };
20
25
  getStats(): {
21
26
  enabled: boolean;
22
27
  maxRequests: number;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RateLimiter.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/RateLimiter.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAUnE,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;IAClC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAA+B;IACxD,OAAO,CAAC,eAAe,CAAC,CAAiB;gBAE7B,OAAO,GAAE,gBAAqB;IAiBpC,UAAU,CAAC,GAAG,GAAE,MAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;IAwCvD,QAAQ,CAAC,GAAG,GAAE,MAAiB,GAAG;QAChC,OAAO,EAAE,MAAM,CAAC;QAChB,KAAK,EAAE,MAAM,CAAC;QACd,SAAS,EAAE,MAAM,CAAC;QAClB,OAAO,EAAE,MAAM,CAAC;KACjB;IA2BD,KAAK,CAAC,GAAG,GAAE,MAAiB,GAAG,IAAI;IAOnC,QAAQ,IAAI,IAAI;IAOhB,OAAO,CAAC,OAAO;IAef,OAAO,IAAI,IAAI;IAWf,SAAS,IAAI,OAAO;IAOpB,SAAS,IAAI;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE;IAOtD,QAAQ,IAAI;QACV,OAAO,EAAE,OAAO,CAAC;QACjB,WAAW,EAAE,MAAM,CAAC;QACpB,QAAQ,EAAE,MAAM,CAAC;QACjB,UAAU,EAAE,MAAM,CAAC;QACnB,aAAa,EAAE,MAAM,CAAC;KACvB;CAiBF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RetryStrategy.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/RetryStrategy.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,iBAAiB,GAAG,aAAa,GAAG,oBAAoB,GAAG,QAAQ,GAAG,OAAO,CAAC;AAE1F,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,EAAE,iBAAiB,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;IAChC,cAAc,CAAC,EAAE,qBAAqB,CAAC;CACxC;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,KAAK,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,KAAK,YAAY,GAAG,QAAQ,GAAG,MAAM,GAAG,WAAW,CAAC;AAKpD,qBAAa,aAAa;IACxB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;IACtC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAU;IACjC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAc;IAC9C,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAc;IAGnD,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAU;IAChD,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAS;IACjD,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAS;IAC/C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAS;IAC1C,OAAO,CAAC,YAAY,CAA0B;IAC9C,OAAO,CAAC,YAAY,CAAa;IACjC,OAAO,CAAC,eAAe,CAAa;IACpC,OAAO,CAAC,gBAAgB,CAAa;gBAEzB,OAAO,GAAE,oBAAyB;IAoC9C,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO;IAyC3C,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM;IAoCjC,aAAa,IAAI,IAAI;IAiBrB,aAAa,IAAI,IAAI;IAsBrB,OAAO,CAAC,kBAAkB;IAe1B,eAAe,IAAI,YAAY;IAW/B,QAAQ,IAAI;QACV,YAAY,EAAE,YAAY,CAAC;QAC3B,YAAY,EAAE,MAAM,CAAC;QACrB,OAAO,EAAE,OAAO,CAAC;KAClB;IAWD,KAAK,IAAI,IAAI;CAMd"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/infrastructure/http/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC"}