attio-mcp 0.1.0

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 (644) hide show
  1. package/CHANGELOG.md +62 -0
  2. package/LICENSE +236 -0
  3. package/README.md +105 -0
  4. package/dist/api/attio-client.d.ts +25 -0
  5. package/dist/api/attio-client.d.ts.map +1 -0
  6. package/dist/api/attio-client.js +64 -0
  7. package/dist/api/attio-client.js.map +1 -0
  8. package/dist/api/attribute-types.d.ts +119 -0
  9. package/dist/api/attribute-types.d.ts.map +1 -0
  10. package/dist/api/attribute-types.js +320 -0
  11. package/dist/api/attribute-types.js.map +1 -0
  12. package/dist/api/client.d.ts +3 -0
  13. package/dist/api/client.d.ts.map +1 -0
  14. package/dist/api/client.js +61 -0
  15. package/dist/api/client.js.map +1 -0
  16. package/dist/api/operations/batch.d.ts +55 -0
  17. package/dist/api/operations/batch.d.ts.map +1 -0
  18. package/dist/api/operations/batch.js +176 -0
  19. package/dist/api/operations/batch.js.map +1 -0
  20. package/dist/api/operations/crud.d.ts +61 -0
  21. package/dist/api/operations/crud.d.ts.map +1 -0
  22. package/dist/api/operations/crud.js +192 -0
  23. package/dist/api/operations/crud.js.map +1 -0
  24. package/dist/api/operations/index.d.ts +14 -0
  25. package/dist/api/operations/index.d.ts.map +1 -0
  26. package/dist/api/operations/index.js +18 -0
  27. package/dist/api/operations/index.js.map +1 -0
  28. package/dist/api/operations/lists.d.ts +66 -0
  29. package/dist/api/operations/lists.d.ts.map +1 -0
  30. package/dist/api/operations/lists.js +300 -0
  31. package/dist/api/operations/lists.js.map +1 -0
  32. package/dist/api/operations/notes.d.ts +29 -0
  33. package/dist/api/operations/notes.d.ts.map +1 -0
  34. package/dist/api/operations/notes.js +63 -0
  35. package/dist/api/operations/notes.js.map +1 -0
  36. package/dist/api/operations/retry.d.ts +48 -0
  37. package/dist/api/operations/retry.d.ts.map +1 -0
  38. package/dist/api/operations/retry.js +98 -0
  39. package/dist/api/operations/retry.js.map +1 -0
  40. package/dist/api/operations/search.d.ts +37 -0
  41. package/dist/api/operations/search.d.ts.map +1 -0
  42. package/dist/api/operations/search.js +186 -0
  43. package/dist/api/operations/search.js.map +1 -0
  44. package/dist/api/operations/tasks.d.ts +20 -0
  45. package/dist/api/operations/tasks.d.ts.map +1 -0
  46. package/dist/api/operations/tasks.js +87 -0
  47. package/dist/api/operations/tasks.js.map +1 -0
  48. package/dist/api/operations/types.d.ts +61 -0
  49. package/dist/api/operations/types.d.ts.map +1 -0
  50. package/dist/api/operations/types.js +10 -0
  51. package/dist/api/operations/types.js.map +1 -0
  52. package/dist/cli/commands/attributes.d.ts +34 -0
  53. package/dist/cli/commands/attributes.d.ts.map +1 -0
  54. package/dist/cli/commands/attributes.js +171 -0
  55. package/dist/cli/commands/attributes.js.map +1 -0
  56. package/dist/cli/discover.d.ts +3 -0
  57. package/dist/cli/discover.d.ts.map +1 -0
  58. package/dist/cli/discover.js +72 -0
  59. package/dist/cli/discover.js.map +1 -0
  60. package/dist/errors/api-errors.d.ts +191 -0
  61. package/dist/errors/api-errors.d.ts.map +1 -0
  62. package/dist/errors/api-errors.js +305 -0
  63. package/dist/errors/api-errors.js.map +1 -0
  64. package/dist/errors/company-errors.d.ts +40 -0
  65. package/dist/errors/company-errors.d.ts.map +1 -0
  66. package/dist/errors/company-errors.js +62 -0
  67. package/dist/errors/company-errors.js.map +1 -0
  68. package/dist/errors/value-match-error.d.ts +15 -0
  69. package/dist/errors/value-match-error.d.ts.map +1 -0
  70. package/dist/errors/value-match-error.js +40 -0
  71. package/dist/errors/value-match-error.js.map +1 -0
  72. package/dist/handlers/error-interceptor.d.ts +6 -0
  73. package/dist/handlers/error-interceptor.d.ts.map +1 -0
  74. package/dist/handlers/error-interceptor.js +17 -0
  75. package/dist/handlers/error-interceptor.js.map +1 -0
  76. package/dist/handlers/rate-limited-handler.d.ts +17 -0
  77. package/dist/handlers/rate-limited-handler.d.ts.map +1 -0
  78. package/dist/handlers/rate-limited-handler.js +126 -0
  79. package/dist/handlers/rate-limited-handler.js.map +1 -0
  80. package/dist/handlers/resources.d.ts +11 -0
  81. package/dist/handlers/resources.d.ts.map +1 -0
  82. package/dist/handlers/resources.js +109 -0
  83. package/dist/handlers/resources.js.map +1 -0
  84. package/dist/handlers/tool-configs/companies/attributes.d.ts +85 -0
  85. package/dist/handlers/tool-configs/companies/attributes.d.ts.map +1 -0
  86. package/dist/handlers/tool-configs/companies/attributes.js +203 -0
  87. package/dist/handlers/tool-configs/companies/attributes.js.map +1 -0
  88. package/dist/handlers/tool-configs/companies/batch.d.ts +145 -0
  89. package/dist/handlers/tool-configs/companies/batch.d.ts.map +1 -0
  90. package/dist/handlers/tool-configs/companies/batch.js +249 -0
  91. package/dist/handlers/tool-configs/companies/batch.js.map +1 -0
  92. package/dist/handlers/tool-configs/companies/crud.d.ts +103 -0
  93. package/dist/handlers/tool-configs/companies/crud.d.ts.map +1 -0
  94. package/dist/handlers/tool-configs/companies/crud.js +157 -0
  95. package/dist/handlers/tool-configs/companies/crud.js.map +1 -0
  96. package/dist/handlers/tool-configs/companies/definitions.d.ts +5 -0
  97. package/dist/handlers/tool-configs/companies/definitions.d.ts.map +1 -0
  98. package/dist/handlers/tool-configs/companies/definitions.js +9 -0
  99. package/dist/handlers/tool-configs/companies/definitions.js.map +1 -0
  100. package/dist/handlers/tool-configs/companies/formatters.d.ts +42 -0
  101. package/dist/handlers/tool-configs/companies/formatters.d.ts.map +1 -0
  102. package/dist/handlers/tool-configs/companies/formatters.js +324 -0
  103. package/dist/handlers/tool-configs/companies/formatters.js.map +1 -0
  104. package/dist/handlers/tool-configs/companies/index.d.ts +642 -0
  105. package/dist/handlers/tool-configs/companies/index.d.ts.map +1 -0
  106. package/dist/handlers/tool-configs/companies/index.js +86 -0
  107. package/dist/handlers/tool-configs/companies/index.js.map +1 -0
  108. package/dist/handlers/tool-configs/companies/notes.d.ts +61 -0
  109. package/dist/handlers/tool-configs/companies/notes.d.ts.map +1 -0
  110. package/dist/handlers/tool-configs/companies/notes.js +109 -0
  111. package/dist/handlers/tool-configs/companies/notes.js.map +1 -0
  112. package/dist/handlers/tool-configs/companies/relationships.d.ts +137 -0
  113. package/dist/handlers/tool-configs/companies/relationships.d.ts.map +1 -0
  114. package/dist/handlers/tool-configs/companies/relationships.js +163 -0
  115. package/dist/handlers/tool-configs/companies/relationships.js.map +1 -0
  116. package/dist/handlers/tool-configs/companies/search.d.ts +101 -0
  117. package/dist/handlers/tool-configs/companies/search.d.ts.map +1 -0
  118. package/dist/handlers/tool-configs/companies/search.js +163 -0
  119. package/dist/handlers/tool-configs/companies/search.js.map +1 -0
  120. package/dist/handlers/tool-configs/companies/types.d.ts +6 -0
  121. package/dist/handlers/tool-configs/companies/types.d.ts.map +1 -0
  122. package/dist/handlers/tool-configs/companies/types.js +2 -0
  123. package/dist/handlers/tool-configs/companies/types.js.map +1 -0
  124. package/dist/handlers/tool-configs/index.d.ts +12 -0
  125. package/dist/handlers/tool-configs/index.d.ts.map +1 -0
  126. package/dist/handlers/tool-configs/index.js +12 -0
  127. package/dist/handlers/tool-configs/index.js.map +1 -0
  128. package/dist/handlers/tool-configs/lists.d.ts +459 -0
  129. package/dist/handlers/tool-configs/lists.d.ts.map +1 -0
  130. package/dist/handlers/tool-configs/lists.js +597 -0
  131. package/dist/handlers/tool-configs/lists.js.map +1 -0
  132. package/dist/handlers/tool-configs/paginated-people.d.ts +197 -0
  133. package/dist/handlers/tool-configs/paginated-people.d.ts.map +1 -0
  134. package/dist/handlers/tool-configs/paginated-people.js +256 -0
  135. package/dist/handlers/tool-configs/paginated-people.js.map +1 -0
  136. package/dist/handlers/tool-configs/people/activity-search.d.ts +98 -0
  137. package/dist/handlers/tool-configs/people/activity-search.d.ts.map +1 -0
  138. package/dist/handlers/tool-configs/people/activity-search.js +113 -0
  139. package/dist/handlers/tool-configs/people/activity-search.js.map +1 -0
  140. package/dist/handlers/tool-configs/people/advanced-search.d.ts +62 -0
  141. package/dist/handlers/tool-configs/people/advanced-search.d.ts.map +1 -0
  142. package/dist/handlers/tool-configs/people/advanced-search.js +74 -0
  143. package/dist/handlers/tool-configs/people/advanced-search.js.map +1 -0
  144. package/dist/handlers/tool-configs/people/crud.d.ts +63 -0
  145. package/dist/handlers/tool-configs/people/crud.d.ts.map +1 -0
  146. package/dist/handlers/tool-configs/people/crud.js +71 -0
  147. package/dist/handlers/tool-configs/people/crud.js.map +1 -0
  148. package/dist/handlers/tool-configs/people/date-search.d.ts +42 -0
  149. package/dist/handlers/tool-configs/people/date-search.d.ts.map +1 -0
  150. package/dist/handlers/tool-configs/people/date-search.js +93 -0
  151. package/dist/handlers/tool-configs/people/date-search.js.map +1 -0
  152. package/dist/handlers/tool-configs/people/formatters.d.ts +19 -0
  153. package/dist/handlers/tool-configs/people/formatters.d.ts.map +1 -0
  154. package/dist/handlers/tool-configs/people/formatters.js +98 -0
  155. package/dist/handlers/tool-configs/people/formatters.js.map +1 -0
  156. package/dist/handlers/tool-configs/people/index.d.ts +407 -0
  157. package/dist/handlers/tool-configs/people/index.d.ts.map +1 -0
  158. package/dist/handlers/tool-configs/people/index.js +30 -0
  159. package/dist/handlers/tool-configs/people/index.js.map +1 -0
  160. package/dist/handlers/tool-configs/people/notes.d.ts +38 -0
  161. package/dist/handlers/tool-configs/people/notes.d.ts.map +1 -0
  162. package/dist/handlers/tool-configs/people/notes.js +57 -0
  163. package/dist/handlers/tool-configs/people/notes.js.map +1 -0
  164. package/dist/handlers/tool-configs/people/relationships.d.ts +112 -0
  165. package/dist/handlers/tool-configs/people/relationships.d.ts.map +1 -0
  166. package/dist/handlers/tool-configs/people/relationships.js +173 -0
  167. package/dist/handlers/tool-configs/people/relationships.js.map +1 -0
  168. package/dist/handlers/tool-configs/people/search.d.ts +53 -0
  169. package/dist/handlers/tool-configs/people/search.d.ts.map +1 -0
  170. package/dist/handlers/tool-configs/people/search.js +61 -0
  171. package/dist/handlers/tool-configs/people/search.js.map +1 -0
  172. package/dist/handlers/tool-configs/people-fix-complete.d.ts +6 -0
  173. package/dist/handlers/tool-configs/people-fix-complete.d.ts.map +1 -0
  174. package/dist/handlers/tool-configs/people-fix-complete.js +76 -0
  175. package/dist/handlers/tool-configs/people-fix-complete.js.map +1 -0
  176. package/dist/handlers/tool-configs/people-fixed.d.ts +12 -0
  177. package/dist/handlers/tool-configs/people-fixed.d.ts.map +1 -0
  178. package/dist/handlers/tool-configs/people-fixed.js +58 -0
  179. package/dist/handlers/tool-configs/people-fixed.js.map +1 -0
  180. package/dist/handlers/tool-configs/people-types.d.ts +32 -0
  181. package/dist/handlers/tool-configs/people-types.d.ts.map +1 -0
  182. package/dist/handlers/tool-configs/people-types.js +5 -0
  183. package/dist/handlers/tool-configs/people-types.js.map +1 -0
  184. package/dist/handlers/tool-configs/people.d.ts +599 -0
  185. package/dist/handlers/tool-configs/people.d.ts.map +1 -0
  186. package/dist/handlers/tool-configs/people.js +817 -0
  187. package/dist/handlers/tool-configs/people.js.map +1 -0
  188. package/dist/handlers/tool-configs/prompts.d.ts +69 -0
  189. package/dist/handlers/tool-configs/prompts.d.ts.map +1 -0
  190. package/dist/handlers/tool-configs/prompts.js +90 -0
  191. package/dist/handlers/tool-configs/prompts.js.map +1 -0
  192. package/dist/handlers/tool-configs/rate-limited-people.d.ts +203 -0
  193. package/dist/handlers/tool-configs/rate-limited-people.d.ts.map +1 -0
  194. package/dist/handlers/tool-configs/rate-limited-people.js +44 -0
  195. package/dist/handlers/tool-configs/rate-limited-people.js.map +1 -0
  196. package/dist/handlers/tool-configs/records/index.d.ts +282 -0
  197. package/dist/handlers/tool-configs/records/index.d.ts.map +1 -0
  198. package/dist/handlers/tool-configs/records/index.js +277 -0
  199. package/dist/handlers/tool-configs/records/index.js.map +1 -0
  200. package/dist/handlers/tool-configs/records.d.ts +282 -0
  201. package/dist/handlers/tool-configs/records.d.ts.map +1 -0
  202. package/dist/handlers/tool-configs/records.js +277 -0
  203. package/dist/handlers/tool-configs/records.js.map +1 -0
  204. package/dist/handlers/tool-configs/resource-specific-tools.d.ts +15 -0
  205. package/dist/handlers/tool-configs/resource-specific-tools.d.ts.map +1 -0
  206. package/dist/handlers/tool-configs/resource-specific-tools.js +33 -0
  207. package/dist/handlers/tool-configs/resource-specific-tools.js.map +1 -0
  208. package/dist/handlers/tool-configs/tasks.d.ts +127 -0
  209. package/dist/handlers/tool-configs/tasks.d.ts.map +1 -0
  210. package/dist/handlers/tool-configs/tasks.js +95 -0
  211. package/dist/handlers/tool-configs/tasks.js.map +1 -0
  212. package/dist/handlers/tool-types.d.ts +47 -0
  213. package/dist/handlers/tool-types.d.ts.map +1 -0
  214. package/dist/handlers/tool-types.js +2 -0
  215. package/dist/handlers/tool-types.js.map +1 -0
  216. package/dist/handlers/tools/config-verifier.d.ts +27 -0
  217. package/dist/handlers/tools/config-verifier.d.ts.map +1 -0
  218. package/dist/handlers/tools/config-verifier.js +108 -0
  219. package/dist/handlers/tools/config-verifier.js.map +1 -0
  220. package/dist/handlers/tools/dispatcher/core.d.ts +12 -0
  221. package/dist/handlers/tools/dispatcher/core.d.ts.map +1 -0
  222. package/dist/handlers/tools/dispatcher/core.js +276 -0
  223. package/dist/handlers/tools/dispatcher/core.js.map +1 -0
  224. package/dist/handlers/tools/dispatcher/formatting.d.ts +17 -0
  225. package/dist/handlers/tools/dispatcher/formatting.d.ts.map +1 -0
  226. package/dist/handlers/tools/dispatcher/formatting.js +25 -0
  227. package/dist/handlers/tools/dispatcher/formatting.js.map +1 -0
  228. package/dist/handlers/tools/dispatcher/logging.d.ts +63 -0
  229. package/dist/handlers/tools/dispatcher/logging.d.ts.map +1 -0
  230. package/dist/handlers/tools/dispatcher/logging.js +108 -0
  231. package/dist/handlers/tools/dispatcher/logging.js.map +1 -0
  232. package/dist/handlers/tools/dispatcher/operations/batch.d.ts +29 -0
  233. package/dist/handlers/tools/dispatcher/operations/batch.d.ts.map +1 -0
  234. package/dist/handlers/tools/dispatcher/operations/batch.js +137 -0
  235. package/dist/handlers/tools/dispatcher/operations/batch.js.map +1 -0
  236. package/dist/handlers/tools/dispatcher/operations/crud.d.ts +25 -0
  237. package/dist/handlers/tools/dispatcher/operations/crud.d.ts.map +1 -0
  238. package/dist/handlers/tools/dispatcher/operations/crud.js +110 -0
  239. package/dist/handlers/tools/dispatcher/operations/crud.js.map +1 -0
  240. package/dist/handlers/tools/dispatcher/operations/details.d.ts +13 -0
  241. package/dist/handlers/tools/dispatcher/operations/details.d.ts.map +1 -0
  242. package/dist/handlers/tools/dispatcher/operations/details.js +52 -0
  243. package/dist/handlers/tools/dispatcher/operations/details.js.map +1 -0
  244. package/dist/handlers/tools/dispatcher/operations/info.d.ts +25 -0
  245. package/dist/handlers/tools/dispatcher/operations/info.d.ts.map +1 -0
  246. package/dist/handlers/tools/dispatcher/operations/info.js +82 -0
  247. package/dist/handlers/tools/dispatcher/operations/info.js.map +1 -0
  248. package/dist/handlers/tools/dispatcher/operations/lists.d.ts +62 -0
  249. package/dist/handlers/tools/dispatcher/operations/lists.d.ts.map +1 -0
  250. package/dist/handlers/tools/dispatcher/operations/lists.js +283 -0
  251. package/dist/handlers/tools/dispatcher/operations/lists.js.map +1 -0
  252. package/dist/handlers/tools/dispatcher/operations/notes.d.ts +17 -0
  253. package/dist/handlers/tools/dispatcher/operations/notes.d.ts.map +1 -0
  254. package/dist/handlers/tools/dispatcher/operations/notes.js +102 -0
  255. package/dist/handlers/tools/dispatcher/operations/notes.js.map +1 -0
  256. package/dist/handlers/tools/dispatcher/operations/search.d.ts +43 -0
  257. package/dist/handlers/tools/dispatcher/operations/search.d.ts.map +1 -0
  258. package/dist/handlers/tools/dispatcher/operations/search.js +190 -0
  259. package/dist/handlers/tools/dispatcher/operations/search.js.map +1 -0
  260. package/dist/handlers/tools/dispatcher/validation.d.ts +27 -0
  261. package/dist/handlers/tools/dispatcher/validation.d.ts.map +1 -0
  262. package/dist/handlers/tools/dispatcher/validation.js +47 -0
  263. package/dist/handlers/tools/dispatcher/validation.js.map +1 -0
  264. package/dist/handlers/tools/dispatcher.d.ts +11 -0
  265. package/dist/handlers/tools/dispatcher.d.ts.map +1 -0
  266. package/dist/handlers/tools/dispatcher.js +15 -0
  267. package/dist/handlers/tools/dispatcher.js.map +1 -0
  268. package/dist/handlers/tools/error-types.d.ts +33 -0
  269. package/dist/handlers/tools/error-types.d.ts.map +1 -0
  270. package/dist/handlers/tools/error-types.js +21 -0
  271. package/dist/handlers/tools/error-types.js.map +1 -0
  272. package/dist/handlers/tools/formatters.d.ts +43 -0
  273. package/dist/handlers/tools/formatters.d.ts.map +1 -0
  274. package/dist/handlers/tools/formatters.js +170 -0
  275. package/dist/handlers/tools/formatters.js.map +1 -0
  276. package/dist/handlers/tools/index.d.ts +15 -0
  277. package/dist/handlers/tools/index.d.ts.map +1 -0
  278. package/dist/handlers/tools/index.js +34 -0
  279. package/dist/handlers/tools/index.js.map +1 -0
  280. package/dist/handlers/tools/registry.d.ts +1874 -0
  281. package/dist/handlers/tools/registry.d.ts.map +1 -0
  282. package/dist/handlers/tools/registry.js +103 -0
  283. package/dist/handlers/tools/registry.js.map +1 -0
  284. package/dist/health/http-server.d.ts +24 -0
  285. package/dist/health/http-server.d.ts.map +1 -0
  286. package/dist/health/http-server.js +106 -0
  287. package/dist/health/http-server.js.map +1 -0
  288. package/dist/index.d.ts +3 -0
  289. package/dist/index.d.ts.map +1 -0
  290. package/dist/index.js +238 -0
  291. package/dist/index.js.map +1 -0
  292. package/dist/objects/base-operations.d.ts +41 -0
  293. package/dist/objects/base-operations.d.ts.map +1 -0
  294. package/dist/objects/base-operations.js +116 -0
  295. package/dist/objects/base-operations.js.map +1 -0
  296. package/dist/objects/batch-companies.d.ts +112 -0
  297. package/dist/objects/batch-companies.d.ts.map +1 -0
  298. package/dist/objects/batch-companies.js +347 -0
  299. package/dist/objects/batch-companies.js.map +1 -0
  300. package/dist/objects/companies/attributes.d.ts +83 -0
  301. package/dist/objects/companies/attributes.d.ts.map +1 -0
  302. package/dist/objects/companies/attributes.js +426 -0
  303. package/dist/objects/companies/attributes.js.map +1 -0
  304. package/dist/objects/companies/basic.d.ts +117 -0
  305. package/dist/objects/companies/basic.d.ts.map +1 -0
  306. package/dist/objects/companies/basic.js +367 -0
  307. package/dist/objects/companies/basic.js.map +1 -0
  308. package/dist/objects/companies/batch.d.ts +6 -0
  309. package/dist/objects/companies/batch.d.ts.map +1 -0
  310. package/dist/objects/companies/batch.js +6 -0
  311. package/dist/objects/companies/batch.js.map +1 -0
  312. package/dist/objects/companies/index.d.ts +13 -0
  313. package/dist/objects/companies/index.d.ts.map +1 -0
  314. package/dist/objects/companies/index.js +17 -0
  315. package/dist/objects/companies/index.js.map +1 -0
  316. package/dist/objects/companies/notes.d.ts +26 -0
  317. package/dist/objects/companies/notes.d.ts.map +1 -0
  318. package/dist/objects/companies/notes.js +199 -0
  319. package/dist/objects/companies/notes.js.map +1 -0
  320. package/dist/objects/companies/relationships.d.ts +41 -0
  321. package/dist/objects/companies/relationships.d.ts.map +1 -0
  322. package/dist/objects/companies/relationships.js +142 -0
  323. package/dist/objects/companies/relationships.js.map +1 -0
  324. package/dist/objects/companies/search.d.ts +158 -0
  325. package/dist/objects/companies/search.d.ts.map +1 -0
  326. package/dist/objects/companies/search.js +463 -0
  327. package/dist/objects/companies/search.js.map +1 -0
  328. package/dist/objects/companies/types.d.ts +27 -0
  329. package/dist/objects/companies/types.d.ts.map +1 -0
  330. package/dist/objects/companies/types.js +3 -0
  331. package/dist/objects/companies/types.js.map +1 -0
  332. package/dist/objects/lists.d.ts +148 -0
  333. package/dist/objects/lists.d.ts.map +1 -0
  334. package/dist/objects/lists.js +586 -0
  335. package/dist/objects/lists.js.map +1 -0
  336. package/dist/objects/paginated-people.d.ts +50 -0
  337. package/dist/objects/paginated-people.d.ts.map +1 -0
  338. package/dist/objects/paginated-people.js +171 -0
  339. package/dist/objects/paginated-people.js.map +1 -0
  340. package/dist/objects/people/basic.d.ts +90 -0
  341. package/dist/objects/people/basic.d.ts.map +1 -0
  342. package/dist/objects/people/basic.js +157 -0
  343. package/dist/objects/people/basic.js.map +1 -0
  344. package/dist/objects/people/batch.d.ts +24 -0
  345. package/dist/objects/people/batch.d.ts.map +1 -0
  346. package/dist/objects/people/batch.js +145 -0
  347. package/dist/objects/people/batch.js.map +1 -0
  348. package/dist/objects/people/index.d.ts +11 -0
  349. package/dist/objects/people/index.d.ts.map +1 -0
  350. package/dist/objects/people/index.js +17 -0
  351. package/dist/objects/people/index.js.map +1 -0
  352. package/dist/objects/people/notes.d.ts +20 -0
  353. package/dist/objects/people/notes.d.ts.map +1 -0
  354. package/dist/objects/people/notes.js +60 -0
  355. package/dist/objects/people/notes.js.map +1 -0
  356. package/dist/objects/people/relationships.d.ts +23 -0
  357. package/dist/objects/people/relationships.d.ts.map +1 -0
  358. package/dist/objects/people/relationships.js +116 -0
  359. package/dist/objects/people/relationships.js.map +1 -0
  360. package/dist/objects/people/search.d.ts +83 -0
  361. package/dist/objects/people/search.d.ts.map +1 -0
  362. package/dist/objects/people/search.js +286 -0
  363. package/dist/objects/people/search.js.map +1 -0
  364. package/dist/objects/people/types.d.ts +37 -0
  365. package/dist/objects/people/types.d.ts.map +1 -0
  366. package/dist/objects/people/types.js +71 -0
  367. package/dist/objects/people/types.js.map +1 -0
  368. package/dist/objects/people-write.d.ts +71 -0
  369. package/dist/objects/people-write.d.ts.map +1 -0
  370. package/dist/objects/people-write.js +261 -0
  371. package/dist/objects/people-write.js.map +1 -0
  372. package/dist/objects/records/formatters.d.ts +20 -0
  373. package/dist/objects/records/formatters.d.ts.map +1 -0
  374. package/dist/objects/records/formatters.js +47 -0
  375. package/dist/objects/records/formatters.js.map +1 -0
  376. package/dist/objects/records/index.d.ts +74 -0
  377. package/dist/objects/records/index.d.ts.map +1 -0
  378. package/dist/objects/records/index.js +374 -0
  379. package/dist/objects/records/index.js.map +1 -0
  380. package/dist/objects/records.d.ts +88 -0
  381. package/dist/objects/records.d.ts.map +1 -0
  382. package/dist/objects/records.js +432 -0
  383. package/dist/objects/records.js.map +1 -0
  384. package/dist/objects/tasks.d.ts +19 -0
  385. package/dist/objects/tasks.d.ts.map +1 -0
  386. package/dist/objects/tasks.js +23 -0
  387. package/dist/objects/tasks.js.map +1 -0
  388. package/dist/prompts/error-handler.d.ts +28 -0
  389. package/dist/prompts/error-handler.d.ts.map +1 -0
  390. package/dist/prompts/error-handler.js +47 -0
  391. package/dist/prompts/error-handler.js.map +1 -0
  392. package/dist/prompts/handlers.d.ts +49 -0
  393. package/dist/prompts/handlers.d.ts.map +1 -0
  394. package/dist/prompts/handlers.js +353 -0
  395. package/dist/prompts/handlers.js.map +1 -0
  396. package/dist/prompts/index.d.ts +11 -0
  397. package/dist/prompts/index.d.ts.map +1 -0
  398. package/dist/prompts/index.js +15 -0
  399. package/dist/prompts/index.js.map +1 -0
  400. package/dist/prompts/templates/companies.d.ts +10 -0
  401. package/dist/prompts/templates/companies.d.ts.map +1 -0
  402. package/dist/prompts/templates/companies.js +128 -0
  403. package/dist/prompts/templates/companies.js.map +1 -0
  404. package/dist/prompts/templates/index.d.ts +42 -0
  405. package/dist/prompts/templates/index.d.ts.map +1 -0
  406. package/dist/prompts/templates/index.js +58 -0
  407. package/dist/prompts/templates/index.js.map +1 -0
  408. package/dist/prompts/templates/lists.d.ts +10 -0
  409. package/dist/prompts/templates/lists.d.ts.map +1 -0
  410. package/dist/prompts/templates/lists.js +127 -0
  411. package/dist/prompts/templates/lists.js.map +1 -0
  412. package/dist/prompts/templates/notes.d.ts +10 -0
  413. package/dist/prompts/templates/notes.d.ts.map +1 -0
  414. package/dist/prompts/templates/notes.js +119 -0
  415. package/dist/prompts/templates/notes.js.map +1 -0
  416. package/dist/prompts/templates/people.d.ts +10 -0
  417. package/dist/prompts/templates/people.d.ts.map +1 -0
  418. package/dist/prompts/templates/people.js +127 -0
  419. package/dist/prompts/templates/people.js.map +1 -0
  420. package/dist/prompts/types.d.ts +52 -0
  421. package/dist/prompts/types.d.ts.map +1 -0
  422. package/dist/prompts/types.js +5 -0
  423. package/dist/prompts/types.js.map +1 -0
  424. package/dist/types/attio.d.ts +424 -0
  425. package/dist/types/attio.d.ts.map +1 -0
  426. package/dist/types/attio.js +116 -0
  427. package/dist/types/attio.js.map +1 -0
  428. package/dist/types/company-types.d.ts +52 -0
  429. package/dist/types/company-types.d.ts.map +1 -0
  430. package/dist/types/company-types.js +5 -0
  431. package/dist/types/company-types.js.map +1 -0
  432. package/dist/types/tool-types.d.ts +262 -0
  433. package/dist/types/tool-types.d.ts.map +1 -0
  434. package/dist/types/tool-types.js +6 -0
  435. package/dist/types/tool-types.js.map +1 -0
  436. package/dist/utils/api-fallback.d.ts +39 -0
  437. package/dist/utils/api-fallback.d.ts.map +1 -0
  438. package/dist/utils/api-fallback.js +94 -0
  439. package/dist/utils/api-fallback.js.map +1 -0
  440. package/dist/utils/attribute-mapping/attribute-mappers.d.ts +39 -0
  441. package/dist/utils/attribute-mapping/attribute-mappers.d.ts.map +1 -0
  442. package/dist/utils/attribute-mapping/attribute-mappers.js +394 -0
  443. package/dist/utils/attribute-mapping/attribute-mappers.js.map +1 -0
  444. package/dist/utils/attribute-mapping/filter-translator.d.ts +9 -0
  445. package/dist/utils/attribute-mapping/filter-translator.d.ts.map +1 -0
  446. package/dist/utils/attribute-mapping/filter-translator.js +104 -0
  447. package/dist/utils/attribute-mapping/filter-translator.js.map +1 -0
  448. package/dist/utils/attribute-mapping/index.d.ts +10 -0
  449. package/dist/utils/attribute-mapping/index.d.ts.map +1 -0
  450. package/dist/utils/attribute-mapping/index.js +12 -0
  451. package/dist/utils/attribute-mapping/index.js.map +1 -0
  452. package/dist/utils/attribute-mapping/legacy-maps.d.ts +11 -0
  453. package/dist/utils/attribute-mapping/legacy-maps.d.ts.map +1 -0
  454. package/dist/utils/attribute-mapping/legacy-maps.js +54 -0
  455. package/dist/utils/attribute-mapping/legacy-maps.js.map +1 -0
  456. package/dist/utils/attribute-mapping/mapping-utils.d.ts +90 -0
  457. package/dist/utils/attribute-mapping/mapping-utils.d.ts.map +1 -0
  458. package/dist/utils/attribute-mapping/mapping-utils.js +145 -0
  459. package/dist/utils/attribute-mapping/mapping-utils.js.map +1 -0
  460. package/dist/utils/auto-discovery.d.ts +22 -0
  461. package/dist/utils/auto-discovery.d.ts.map +1 -0
  462. package/dist/utils/auto-discovery.js +143 -0
  463. package/dist/utils/auto-discovery.js.map +1 -0
  464. package/dist/utils/cli-colors.d.ts +36 -0
  465. package/dist/utils/cli-colors.d.ts.map +1 -0
  466. package/dist/utils/cli-colors.js +35 -0
  467. package/dist/utils/cli-colors.js.map +1 -0
  468. package/dist/utils/config-loader.d.ts +41 -0
  469. package/dist/utils/config-loader.d.ts.map +1 -0
  470. package/dist/utils/config-loader.js +167 -0
  471. package/dist/utils/config-loader.js.map +1 -0
  472. package/dist/utils/config-migration.d.ts +140 -0
  473. package/dist/utils/config-migration.d.ts.map +1 -0
  474. package/dist/utils/config-migration.js +310 -0
  475. package/dist/utils/config-migration.js.map +1 -0
  476. package/dist/utils/date-utils.d.ts +63 -0
  477. package/dist/utils/date-utils.d.ts.map +1 -0
  478. package/dist/utils/date-utils.js +329 -0
  479. package/dist/utils/date-utils.js.map +1 -0
  480. package/dist/utils/debug-b2b-segment.d.ts +2 -0
  481. package/dist/utils/debug-b2b-segment.d.ts.map +1 -0
  482. package/dist/utils/debug-b2b-segment.js +67 -0
  483. package/dist/utils/debug-b2b-segment.js.map +1 -0
  484. package/dist/utils/domain-utils.d.ts +46 -0
  485. package/dist/utils/domain-utils.d.ts.map +1 -0
  486. package/dist/utils/domain-utils.js +143 -0
  487. package/dist/utils/domain-utils.js.map +1 -0
  488. package/dist/utils/dynamic-import.d.ts +33 -0
  489. package/dist/utils/dynamic-import.d.ts.map +1 -0
  490. package/dist/utils/dynamic-import.js +41 -0
  491. package/dist/utils/dynamic-import.js.map +1 -0
  492. package/dist/utils/error-enhancer.d.ts +23 -0
  493. package/dist/utils/error-enhancer.d.ts.map +1 -0
  494. package/dist/utils/error-enhancer.js +188 -0
  495. package/dist/utils/error-enhancer.js.map +1 -0
  496. package/dist/utils/error-handler.d.ts +89 -0
  497. package/dist/utils/error-handler.d.ts.map +1 -0
  498. package/dist/utils/error-handler.js +336 -0
  499. package/dist/utils/error-handler.js.map +1 -0
  500. package/dist/utils/filters/builders/activity.d.ts +13 -0
  501. package/dist/utils/filters/builders/activity.d.ts.map +1 -0
  502. package/dist/utils/filters/builders/activity.js +65 -0
  503. package/dist/utils/filters/builders/activity.js.map +1 -0
  504. package/dist/utils/filters/builders/basic.d.ts +13 -0
  505. package/dist/utils/filters/builders/basic.d.ts.map +1 -0
  506. package/dist/utils/filters/builders/basic.js +36 -0
  507. package/dist/utils/filters/builders/basic.js.map +1 -0
  508. package/dist/utils/filters/builders/complex.d.ts +31 -0
  509. package/dist/utils/filters/builders/complex.d.ts.map +1 -0
  510. package/dist/utils/filters/builders/complex.js +92 -0
  511. package/dist/utils/filters/builders/complex.js.map +1 -0
  512. package/dist/utils/filters/builders/date.d.ts +17 -0
  513. package/dist/utils/filters/builders/date.d.ts.map +1 -0
  514. package/dist/utils/filters/builders/date.js +51 -0
  515. package/dist/utils/filters/builders/date.js.map +1 -0
  516. package/dist/utils/filters/builders/index.d.ts +8 -0
  517. package/dist/utils/filters/builders/index.d.ts.map +1 -0
  518. package/dist/utils/filters/builders/index.js +8 -0
  519. package/dist/utils/filters/builders/index.js.map +1 -0
  520. package/dist/utils/filters/builders/numeric.d.ts +17 -0
  521. package/dist/utils/filters/builders/numeric.d.ts.map +1 -0
  522. package/dist/utils/filters/builders/numeric.js +61 -0
  523. package/dist/utils/filters/builders/numeric.js.map +1 -0
  524. package/dist/utils/filters/builders/text.d.ts +17 -0
  525. package/dist/utils/filters/builders/text.d.ts.map +1 -0
  526. package/dist/utils/filters/builders/text.js +47 -0
  527. package/dist/utils/filters/builders/text.js.map +1 -0
  528. package/dist/utils/filters/builders/types.d.ts +2 -0
  529. package/dist/utils/filters/builders/types.d.ts.map +1 -0
  530. package/dist/utils/filters/builders/types.js +2 -0
  531. package/dist/utils/filters/builders/types.js.map +1 -0
  532. package/dist/utils/filters/builders.d.ts +2 -0
  533. package/dist/utils/filters/builders.d.ts.map +1 -0
  534. package/dist/utils/filters/builders.js +2 -0
  535. package/dist/utils/filters/builders.js.map +1 -0
  536. package/dist/utils/filters/cache.d.ts +80 -0
  537. package/dist/utils/filters/cache.d.ts.map +1 -0
  538. package/dist/utils/filters/cache.js +212 -0
  539. package/dist/utils/filters/cache.js.map +1 -0
  540. package/dist/utils/filters/index.d.ts +51 -0
  541. package/dist/utils/filters/index.d.ts.map +1 -0
  542. package/dist/utils/filters/index.js +67 -0
  543. package/dist/utils/filters/index.js.map +1 -0
  544. package/dist/utils/filters/operators.d.ts +65 -0
  545. package/dist/utils/filters/operators.d.ts.map +1 -0
  546. package/dist/utils/filters/operators.js +214 -0
  547. package/dist/utils/filters/operators.js.map +1 -0
  548. package/dist/utils/filters/relationship.d.ts +81 -0
  549. package/dist/utils/filters/relationship.d.ts.map +1 -0
  550. package/dist/utils/filters/relationship.js +393 -0
  551. package/dist/utils/filters/relationship.js.map +1 -0
  552. package/dist/utils/filters/translators.d.ts +120 -0
  553. package/dist/utils/filters/translators.d.ts.map +1 -0
  554. package/dist/utils/filters/translators.js +397 -0
  555. package/dist/utils/filters/translators.js.map +1 -0
  556. package/dist/utils/filters/types.d.ts +77 -0
  557. package/dist/utils/filters/types.d.ts.map +1 -0
  558. package/dist/utils/filters/types.js +85 -0
  559. package/dist/utils/filters/types.js.map +1 -0
  560. package/dist/utils/filters/utils.d.ts +86 -0
  561. package/dist/utils/filters/utils.d.ts.map +1 -0
  562. package/dist/utils/filters/utils.js +142 -0
  563. package/dist/utils/filters/utils.js.map +1 -0
  564. package/dist/utils/filters/validation-utils.d.ts +123 -0
  565. package/dist/utils/filters/validation-utils.d.ts.map +1 -0
  566. package/dist/utils/filters/validation-utils.js +282 -0
  567. package/dist/utils/filters/validation-utils.js.map +1 -0
  568. package/dist/utils/filters/validators.d.ts +73 -0
  569. package/dist/utils/filters/validators.d.ts.map +1 -0
  570. package/dist/utils/filters/validators.js +311 -0
  571. package/dist/utils/filters/validators.js.map +1 -0
  572. package/dist/utils/json-serializer.d.ts +68 -0
  573. package/dist/utils/json-serializer.d.ts.map +1 -0
  574. package/dist/utils/json-serializer.js +235 -0
  575. package/dist/utils/json-serializer.js.map +1 -0
  576. package/dist/utils/logger.d.ts +226 -0
  577. package/dist/utils/logger.d.ts.map +1 -0
  578. package/dist/utils/logger.js +323 -0
  579. package/dist/utils/logger.js.map +1 -0
  580. package/dist/utils/numeric-utils.d.ts +27 -0
  581. package/dist/utils/numeric-utils.d.ts.map +1 -0
  582. package/dist/utils/numeric-utils.js +83 -0
  583. package/dist/utils/numeric-utils.js.map +1 -0
  584. package/dist/utils/pagination.d.ts +85 -0
  585. package/dist/utils/pagination.d.ts.map +1 -0
  586. package/dist/utils/pagination.js +169 -0
  587. package/dist/utils/pagination.js.map +1 -0
  588. package/dist/utils/person-lookup.d.ts +35 -0
  589. package/dist/utils/person-lookup.d.ts.map +1 -0
  590. package/dist/utils/person-lookup.js +67 -0
  591. package/dist/utils/person-lookup.js.map +1 -0
  592. package/dist/utils/rate-limiter.d.ts +82 -0
  593. package/dist/utils/rate-limiter.d.ts.map +1 -0
  594. package/dist/utils/rate-limiter.js +159 -0
  595. package/dist/utils/rate-limiter.js.map +1 -0
  596. package/dist/utils/record-utils.d.ts +74 -0
  597. package/dist/utils/record-utils.d.ts.map +1 -0
  598. package/dist/utils/record-utils.js +312 -0
  599. package/dist/utils/record-utils.js.map +1 -0
  600. package/dist/utils/relationship-utils.d.ts +61 -0
  601. package/dist/utils/relationship-utils.d.ts.map +1 -0
  602. package/dist/utils/relationship-utils.js +242 -0
  603. package/dist/utils/relationship-utils.js.map +1 -0
  604. package/dist/utils/response-formatter.d.ts +121 -0
  605. package/dist/utils/response-formatter.d.ts.map +1 -0
  606. package/dist/utils/response-formatter.js +188 -0
  607. package/dist/utils/response-formatter.js.map +1 -0
  608. package/dist/utils/uri-parser.d.ts +18 -0
  609. package/dist/utils/uri-parser.d.ts.map +1 -0
  610. package/dist/utils/uri-parser.js +31 -0
  611. package/dist/utils/uri-parser.js.map +1 -0
  612. package/dist/utils/validation.d.ts +59 -0
  613. package/dist/utils/validation.d.ts.map +1 -0
  614. package/dist/utils/validation.js +264 -0
  615. package/dist/utils/validation.js.map +1 -0
  616. package/dist/utils/value-matcher.d.ts +58 -0
  617. package/dist/utils/value-matcher.d.ts.map +1 -0
  618. package/dist/utils/value-matcher.js +131 -0
  619. package/dist/utils/value-matcher.js.map +1 -0
  620. package/dist/validators/attribute-validator.d.ts +59 -0
  621. package/dist/validators/attribute-validator.d.ts.map +1 -0
  622. package/dist/validators/attribute-validator.js +531 -0
  623. package/dist/validators/attribute-validator.js.map +1 -0
  624. package/dist/validators/company/field_detector.d.ts +5 -0
  625. package/dist/validators/company/field_detector.d.ts.map +1 -0
  626. package/dist/validators/company/field_detector.js +95 -0
  627. package/dist/validators/company/field_detector.js.map +1 -0
  628. package/dist/validators/company/index.d.ts +26 -0
  629. package/dist/validators/company/index.d.ts.map +1 -0
  630. package/dist/validators/company/index.js +433 -0
  631. package/dist/validators/company/index.js.map +1 -0
  632. package/dist/validators/company/type_cache.d.ts +14 -0
  633. package/dist/validators/company/type_cache.d.ts.map +1 -0
  634. package/dist/validators/company/type_cache.js +28 -0
  635. package/dist/validators/company/type_cache.js.map +1 -0
  636. package/dist/validators/company/types.d.ts +8 -0
  637. package/dist/validators/company/types.d.ts.map +1 -0
  638. package/dist/validators/company/types.js +2 -0
  639. package/dist/validators/company/types.js.map +1 -0
  640. package/dist/validators/company-validator.d.ts +2 -0
  641. package/dist/validators/company-validator.d.ts.map +1 -0
  642. package/dist/validators/company-validator.js +2 -0
  643. package/dist/validators/company-validator.js.map +1 -0
  644. package/package.json +167 -0
@@ -0,0 +1,226 @@
1
+ /**
2
+ * Enhanced structured logging utility for consistent logging across the application
3
+ */
4
+ /**
5
+ * Log level enum for controlling verbosity
6
+ */
7
+ export declare enum LogLevel {
8
+ DEBUG = 0,
9
+ INFO = 1,
10
+ WARN = 2,
11
+ ERROR = 3,
12
+ NONE = 4
13
+ }
14
+ /**
15
+ * Operation types for better log categorization
16
+ */
17
+ export declare enum OperationType {
18
+ API_CALL = "api_call",
19
+ TOOL_EXECUTION = "tool_execution",
20
+ DATA_PROCESSING = "data_processing",
21
+ VALIDATION = "validation",
22
+ TRANSFORMATION = "transformation",
23
+ SYSTEM = "system"
24
+ }
25
+ /**
26
+ * Structured log metadata interface
27
+ */
28
+ export interface LogMetadata {
29
+ timestamp: string;
30
+ level: string;
31
+ module: string;
32
+ operation?: string;
33
+ operationType?: OperationType;
34
+ correlationId?: string;
35
+ sessionId?: string;
36
+ duration?: number;
37
+ requestId?: string;
38
+ userId?: string;
39
+ [key: string]: any;
40
+ }
41
+ /**
42
+ * Structured log entry interface
43
+ */
44
+ export interface LogEntry {
45
+ message: string;
46
+ metadata: LogMetadata;
47
+ data?: any;
48
+ error?: {
49
+ message: string;
50
+ name: string;
51
+ stack?: string;
52
+ code?: string | number;
53
+ };
54
+ }
55
+ /**
56
+ * Context for tracking related operations
57
+ */
58
+ interface LogContext {
59
+ correlationId?: string;
60
+ sessionId?: string;
61
+ requestId?: string;
62
+ userId?: string;
63
+ operation?: string;
64
+ operationType?: OperationType;
65
+ }
66
+ /**
67
+ * Current log level based on environment
68
+ */
69
+ export declare const CURRENT_LOG_LEVEL: LogLevel;
70
+ /**
71
+ * Set global logging context for correlation tracking
72
+ */
73
+ export declare function setLogContext(context: Partial<LogContext>): void;
74
+ /**
75
+ * Get current logging context
76
+ */
77
+ export declare function getLogContext(): LogContext;
78
+ /**
79
+ * Clear logging context
80
+ */
81
+ export declare function clearLogContext(): void;
82
+ /**
83
+ * Generate a new correlation ID
84
+ */
85
+ export declare function generateCorrelationId(): string;
86
+ /**
87
+ * Log a debug message (only in development)
88
+ *
89
+ * @param module - Name of the module/function logging the message
90
+ * @param message - Message to log
91
+ * @param data - Optional data to include with the log
92
+ * @param operation - Optional operation name
93
+ * @param operationType - Optional operation type
94
+ */
95
+ export declare function debug(module: string, message: string, data?: any, operation?: string, operationType?: OperationType): void;
96
+ /**
97
+ * Log an info message
98
+ *
99
+ * @param module - Name of the module/function logging the message
100
+ * @param message - Message to log
101
+ * @param data - Optional data to include with the log
102
+ * @param operation - Optional operation name
103
+ * @param operationType - Optional operation type
104
+ */
105
+ export declare function info(module: string, message: string, data?: any, operation?: string, operationType?: OperationType): void;
106
+ /**
107
+ * Log a warning message
108
+ *
109
+ * @param module - Name of the module/function logging the message
110
+ * @param message - Message to log
111
+ * @param data - Optional data to include with the log
112
+ * @param operation - Optional operation name
113
+ * @param operationType - Optional operation type
114
+ */
115
+ export declare function warn(module: string, message: string, data?: any, operation?: string, operationType?: OperationType): void;
116
+ /**
117
+ * Log an error message
118
+ *
119
+ * @param module - Name of the module/function logging the message
120
+ * @param message - Message to log
121
+ * @param errorObj - Optional error object
122
+ * @param data - Optional additional data
123
+ * @param operation - Optional operation name
124
+ * @param operationType - Optional operation type
125
+ */
126
+ export declare function error(module: string, message: string, errorObj?: any, data?: any, operation?: string, operationType?: OperationType): void;
127
+ /**
128
+ * Performance timing utility for tracking operation duration
129
+ */
130
+ export declare class PerformanceTimer {
131
+ private startTime;
132
+ private module;
133
+ private operation;
134
+ private operationType;
135
+ constructor(module: string, operation: string, operationType?: OperationType);
136
+ /**
137
+ * End timing and log the duration
138
+ */
139
+ end(message?: string, data?: any): number;
140
+ }
141
+ /**
142
+ * Enhanced operation start logging with timing
143
+ *
144
+ * @param module - Name of the module/function
145
+ * @param operation - Name of the operation being performed
146
+ * @param operationType - Type of operation for categorization
147
+ * @param params - Parameters for the operation
148
+ * @returns PerformanceTimer instance for tracking duration
149
+ */
150
+ export declare function operationStart(module: string, operation: string, operationType?: OperationType, params?: any): PerformanceTimer;
151
+ /**
152
+ * Logs the successful completion of an API operation
153
+ *
154
+ * @param module - Name of the module/function
155
+ * @param operation - Name of the operation being performed
156
+ * @param resultSummary - Summary of the operation result (e.g., count of items)
157
+ * @param operationType - Type of operation for categorization
158
+ * @param duration - Optional duration in milliseconds
159
+ */
160
+ export declare function operationSuccess(module: string, operation: string, resultSummary?: any, operationType?: OperationType, duration?: number): void;
161
+ /**
162
+ * Logs the failure of an API operation
163
+ *
164
+ * @param module - Name of the module/function
165
+ * @param operation - Name of the operation that failed
166
+ * @param errorObj - The error object
167
+ * @param context - Additional context information
168
+ * @param operationType - Type of operation for categorization
169
+ * @param duration - Optional duration in milliseconds
170
+ */
171
+ export declare function operationFailure(module: string, operation: string, errorObj: any, context?: any, operationType?: OperationType, duration?: number): void;
172
+ /**
173
+ * Logs the start of a fallback API operation
174
+ *
175
+ * @param module - Name of the module/function
176
+ * @param operation - Name of the fallback operation
177
+ * @param reason - Reason for falling back
178
+ * @param operationType - Type of operation for categorization
179
+ */
180
+ export declare function fallbackStart(module: string, operation: string, reason: string, operationType?: OperationType): void;
181
+ /**
182
+ * Creates a scoped logger instance with pre-configured context
183
+ */
184
+ export declare function createScopedLogger(module: string, operation?: string, operationType?: OperationType): {
185
+ debug: (message: string, data?: any) => void;
186
+ info: (message: string, data?: any) => void;
187
+ warn: (message: string, data?: any) => void;
188
+ error: (message: string, errorObj?: any, data?: any) => void;
189
+ operationStart: (op?: string, opType?: OperationType, params?: any) => PerformanceTimer;
190
+ operationSuccess: (op?: string, resultSummary?: any, opType?: OperationType, duration?: number) => void;
191
+ operationFailure: (op?: string, errorObj?: any, context?: any, opType?: OperationType, duration?: number) => void;
192
+ };
193
+ /**
194
+ * Utility for wrapping async operations with automatic logging
195
+ */
196
+ export declare function withLogging<T>(module: string, operation: string, operationType: OperationType, fn: () => Promise<T>, context?: any): Promise<T>;
197
+ /**
198
+ * Safe logging function that never interferes with MCP protocol
199
+ * Always use this for any direct console logging that might occur during MCP operations
200
+ *
201
+ * @param message - Message to log
202
+ * @param args - Additional arguments to log
203
+ */
204
+ export declare function safeMcpLog(message: string, ...args: any[]): void;
205
+ declare const _default: {
206
+ debug: typeof debug;
207
+ info: typeof info;
208
+ warn: typeof warn;
209
+ error: typeof error;
210
+ operationStart: typeof operationStart;
211
+ operationSuccess: typeof operationSuccess;
212
+ operationFailure: typeof operationFailure;
213
+ fallbackStart: typeof fallbackStart;
214
+ setLogContext: typeof setLogContext;
215
+ getLogContext: typeof getLogContext;
216
+ clearLogContext: typeof clearLogContext;
217
+ generateCorrelationId: typeof generateCorrelationId;
218
+ createScopedLogger: typeof createScopedLogger;
219
+ withLogging: typeof withLogging;
220
+ safeMcpLog: typeof safeMcpLog;
221
+ PerformanceTimer: typeof PerformanceTimer;
222
+ LogLevel: typeof LogLevel;
223
+ OperationType: typeof OperationType;
224
+ };
225
+ export default _default;
226
+ //# sourceMappingURL=logger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../src/utils/logger.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,323 @@
1
+ /**
2
+ * Enhanced structured logging utility for consistent logging across the application
3
+ */
4
+ import { randomUUID } from 'crypto';
5
+ import { safeJsonStringify } from './json-serializer.js';
6
+ /**
7
+ * Log level enum for controlling verbosity
8
+ */
9
+ export var LogLevel;
10
+ (function (LogLevel) {
11
+ LogLevel[LogLevel["DEBUG"] = 0] = "DEBUG";
12
+ LogLevel[LogLevel["INFO"] = 1] = "INFO";
13
+ LogLevel[LogLevel["WARN"] = 2] = "WARN";
14
+ LogLevel[LogLevel["ERROR"] = 3] = "ERROR";
15
+ LogLevel[LogLevel["NONE"] = 4] = "NONE";
16
+ })(LogLevel || (LogLevel = {}));
17
+ /**
18
+ * Operation types for better log categorization
19
+ */
20
+ export var OperationType;
21
+ (function (OperationType) {
22
+ OperationType["API_CALL"] = "api_call";
23
+ OperationType["TOOL_EXECUTION"] = "tool_execution";
24
+ OperationType["DATA_PROCESSING"] = "data_processing";
25
+ OperationType["VALIDATION"] = "validation";
26
+ OperationType["TRANSFORMATION"] = "transformation";
27
+ OperationType["SYSTEM"] = "system";
28
+ })(OperationType || (OperationType = {}));
29
+ /**
30
+ * Current log level based on environment
31
+ */
32
+ export const CURRENT_LOG_LEVEL = process.env.NODE_ENV === 'production'
33
+ ? LogLevel.INFO // In production, only log INFO and above
34
+ : LogLevel.DEBUG; // In development, log everything
35
+ /**
36
+ * Global log context storage
37
+ */
38
+ let globalContext = {};
39
+ /**
40
+ * Set global logging context for correlation tracking
41
+ */
42
+ export function setLogContext(context) {
43
+ globalContext = { ...globalContext, ...context };
44
+ }
45
+ /**
46
+ * Get current logging context
47
+ */
48
+ export function getLogContext() {
49
+ return { ...globalContext };
50
+ }
51
+ /**
52
+ * Clear logging context
53
+ */
54
+ export function clearLogContext() {
55
+ globalContext = {};
56
+ }
57
+ /**
58
+ * Generate a new correlation ID
59
+ */
60
+ export function generateCorrelationId() {
61
+ return randomUUID();
62
+ }
63
+ /**
64
+ * Create structured log metadata
65
+ */
66
+ function createLogMetadata(level, module, operation, operationType, additionalMetadata) {
67
+ return {
68
+ timestamp: new Date().toISOString(),
69
+ level,
70
+ module,
71
+ operation: operation || globalContext.operation,
72
+ operationType: operationType || globalContext.operationType,
73
+ correlationId: globalContext.correlationId,
74
+ sessionId: globalContext.sessionId,
75
+ requestId: globalContext.requestId,
76
+ userId: globalContext.userId,
77
+ ...additionalMetadata,
78
+ };
79
+ }
80
+ /**
81
+ * Format and output structured log entry
82
+ */
83
+ function outputLog(entry, logFunction) {
84
+ if (process.env.LOG_FORMAT === 'json') {
85
+ // Output compact JSON using safe stringify to prevent errors
86
+ logFunction(safeJsonStringify(entry, { indent: 0 }));
87
+ }
88
+ else {
89
+ // Output pretty-printed JSON to maintain human readability for console,
90
+ // while ensuring it's a single, valid JSON string to prevent MCP parsing errors.
91
+ logFunction(safeJsonStringify(entry, { indent: 2 }));
92
+ }
93
+ }
94
+ /**
95
+ * Log a debug message (only in development)
96
+ *
97
+ * @param module - Name of the module/function logging the message
98
+ * @param message - Message to log
99
+ * @param data - Optional data to include with the log
100
+ * @param operation - Optional operation name
101
+ * @param operationType - Optional operation type
102
+ */
103
+ export function debug(module, message, data, operation, operationType) {
104
+ if (CURRENT_LOG_LEVEL <= LogLevel.DEBUG) {
105
+ const entry = {
106
+ message,
107
+ metadata: createLogMetadata('DEBUG', module, operation, operationType),
108
+ ...(data && { data }),
109
+ };
110
+ outputLog(entry, console.error); // Use stderr instead of stdout to avoid interfering with MCP protocol
111
+ }
112
+ }
113
+ /**
114
+ * Log an info message
115
+ *
116
+ * @param module - Name of the module/function logging the message
117
+ * @param message - Message to log
118
+ * @param data - Optional data to include with the log
119
+ * @param operation - Optional operation name
120
+ * @param operationType - Optional operation type
121
+ */
122
+ export function info(module, message, data, operation, operationType) {
123
+ if (CURRENT_LOG_LEVEL <= LogLevel.INFO) {
124
+ const entry = {
125
+ message,
126
+ metadata: createLogMetadata('INFO', module, operation, operationType),
127
+ ...(data && { data }),
128
+ };
129
+ outputLog(entry, console.error); // Use stderr instead of stdout to avoid interfering with MCP protocol
130
+ }
131
+ }
132
+ /**
133
+ * Log a warning message
134
+ *
135
+ * @param module - Name of the module/function logging the message
136
+ * @param message - Message to log
137
+ * @param data - Optional data to include with the log
138
+ * @param operation - Optional operation name
139
+ * @param operationType - Optional operation type
140
+ */
141
+ export function warn(module, message, data, operation, operationType) {
142
+ if (CURRENT_LOG_LEVEL <= LogLevel.WARN) {
143
+ const entry = {
144
+ message,
145
+ metadata: createLogMetadata('WARN', module, operation, operationType),
146
+ ...(data && { data }),
147
+ };
148
+ outputLog(entry, console.warn);
149
+ }
150
+ }
151
+ /**
152
+ * Log an error message
153
+ *
154
+ * @param module - Name of the module/function logging the message
155
+ * @param message - Message to log
156
+ * @param errorObj - Optional error object
157
+ * @param data - Optional additional data
158
+ * @param operation - Optional operation name
159
+ * @param operationType - Optional operation type
160
+ */
161
+ export function error(module, message, errorObj, data, operation, operationType) {
162
+ if (CURRENT_LOG_LEVEL <= LogLevel.ERROR) {
163
+ const entry = {
164
+ message,
165
+ metadata: createLogMetadata('ERROR', module, operation, operationType),
166
+ ...(data && { data }),
167
+ ...(errorObj && {
168
+ error: errorObj instanceof Error
169
+ ? {
170
+ message: errorObj.message,
171
+ name: errorObj.name,
172
+ stack: errorObj.stack,
173
+ code: errorObj.code,
174
+ }
175
+ : { message: String(errorObj), name: 'Unknown' },
176
+ }),
177
+ };
178
+ outputLog(entry, console.error);
179
+ }
180
+ }
181
+ /**
182
+ * Performance timing utility for tracking operation duration
183
+ */
184
+ export class PerformanceTimer {
185
+ startTime;
186
+ module;
187
+ operation;
188
+ operationType;
189
+ constructor(module, operation, operationType = OperationType.SYSTEM) {
190
+ this.module = module;
191
+ this.operation = operation;
192
+ this.operationType = operationType;
193
+ this.startTime = Date.now();
194
+ }
195
+ /**
196
+ * End timing and log the duration
197
+ */
198
+ end(message, data) {
199
+ const duration = Date.now() - this.startTime;
200
+ debug(this.module, message || `Operation completed: ${this.operation}`, { ...data, duration: `${duration}ms` }, this.operation, this.operationType);
201
+ return duration;
202
+ }
203
+ }
204
+ /**
205
+ * Enhanced operation start logging with timing
206
+ *
207
+ * @param module - Name of the module/function
208
+ * @param operation - Name of the operation being performed
209
+ * @param operationType - Type of operation for categorization
210
+ * @param params - Parameters for the operation
211
+ * @returns PerformanceTimer instance for tracking duration
212
+ */
213
+ export function operationStart(module, operation, operationType = OperationType.SYSTEM, params) {
214
+ debug(module, `Starting operation: ${operation}`, params, operation, operationType);
215
+ return new PerformanceTimer(module, operation, operationType);
216
+ }
217
+ /**
218
+ * Logs the successful completion of an API operation
219
+ *
220
+ * @param module - Name of the module/function
221
+ * @param operation - Name of the operation being performed
222
+ * @param resultSummary - Summary of the operation result (e.g., count of items)
223
+ * @param operationType - Type of operation for categorization
224
+ * @param duration - Optional duration in milliseconds
225
+ */
226
+ export function operationSuccess(module, operation, resultSummary, operationType = OperationType.SYSTEM, duration) {
227
+ const logData = {
228
+ ...resultSummary,
229
+ ...(duration && { duration: `${duration}ms` }),
230
+ };
231
+ info(module, `Operation successful: ${operation}`, logData, operation, operationType);
232
+ }
233
+ /**
234
+ * Logs the failure of an API operation
235
+ *
236
+ * @param module - Name of the module/function
237
+ * @param operation - Name of the operation that failed
238
+ * @param errorObj - The error object
239
+ * @param context - Additional context information
240
+ * @param operationType - Type of operation for categorization
241
+ * @param duration - Optional duration in milliseconds
242
+ */
243
+ export function operationFailure(module, operation, errorObj, context, operationType = OperationType.SYSTEM, duration) {
244
+ const logData = {
245
+ ...context,
246
+ ...(duration && { duration: `${duration}ms` }),
247
+ };
248
+ error(module, `Operation failed: ${operation}`, errorObj, logData, operation, operationType);
249
+ }
250
+ /**
251
+ * Logs the start of a fallback API operation
252
+ *
253
+ * @param module - Name of the module/function
254
+ * @param operation - Name of the fallback operation
255
+ * @param reason - Reason for falling back
256
+ * @param operationType - Type of operation for categorization
257
+ */
258
+ export function fallbackStart(module, operation, reason, operationType = OperationType.API_CALL) {
259
+ warn(module, `Trying fallback: ${operation}. Reason: ${reason}`, { reason }, operation, operationType);
260
+ }
261
+ /**
262
+ * Creates a scoped logger instance with pre-configured context
263
+ */
264
+ export function createScopedLogger(module, operation, operationType) {
265
+ return {
266
+ debug: (message, data) => debug(module, message, data, operation, operationType),
267
+ info: (message, data) => info(module, message, data, operation, operationType),
268
+ warn: (message, data) => warn(module, message, data, operation, operationType),
269
+ error: (message, errorObj, data) => error(module, message, errorObj, data, operation, operationType),
270
+ operationStart: (op, opType, params) => operationStart(module, op || operation || 'unknown', opType || operationType || OperationType.SYSTEM, params),
271
+ operationSuccess: (op, resultSummary, opType, duration) => operationSuccess(module, op || operation || 'unknown', resultSummary, opType || operationType || OperationType.SYSTEM, duration),
272
+ operationFailure: (op, errorObj, context, opType, duration) => operationFailure(module, op || operation || 'unknown', errorObj, context, opType || operationType || OperationType.SYSTEM, duration),
273
+ };
274
+ }
275
+ /**
276
+ * Utility for wrapping async operations with automatic logging
277
+ */
278
+ export async function withLogging(module, operation, operationType, fn, context) {
279
+ const timer = operationStart(module, operation, operationType, context);
280
+ try {
281
+ const result = await fn();
282
+ const duration = timer.end();
283
+ operationSuccess(module, operation, { success: true }, operationType, duration);
284
+ return result;
285
+ }
286
+ catch (error) {
287
+ const duration = timer.end();
288
+ operationFailure(module, operation, error, context, operationType, duration);
289
+ throw error;
290
+ }
291
+ }
292
+ /**
293
+ * Safe logging function that never interferes with MCP protocol
294
+ * Always use this for any direct console logging that might occur during MCP operations
295
+ *
296
+ * @param message - Message to log
297
+ * @param args - Additional arguments to log
298
+ */
299
+ export function safeMcpLog(message, ...args) {
300
+ // Always use console.error to avoid interfering with MCP protocol
301
+ console.error(`[MCP_SAFE_LOG] ${message}`, ...args);
302
+ }
303
+ export default {
304
+ debug,
305
+ info,
306
+ warn,
307
+ error,
308
+ operationStart,
309
+ operationSuccess,
310
+ operationFailure,
311
+ fallbackStart,
312
+ setLogContext,
313
+ getLogContext,
314
+ clearLogContext,
315
+ generateCorrelationId,
316
+ createScopedLogger,
317
+ withLogging,
318
+ safeMcpLog,
319
+ PerformanceTimer,
320
+ LogLevel,
321
+ OperationType,
322
+ };
323
+ //# sourceMappingURL=logger.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.js","sourceRoot":"","sources":["../../src/utils/logger.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,27 @@
1
+ import { ListEntryFilters } from '../api/operations/index.js';
2
+ /**
3
+ * Interface for numeric range
4
+ */
5
+ export interface NumericRange {
6
+ min?: number;
7
+ max?: number;
8
+ equals?: number;
9
+ }
10
+ /**
11
+ * Validates a numeric range specification
12
+ *
13
+ * @param range - The numeric range to validate
14
+ * @returns True if valid, throws an error if invalid
15
+ * @throws Error when range is invalid
16
+ */
17
+ export declare function validateNumericRange(range: NumericRange): boolean;
18
+ /**
19
+ * Creates a numeric range filter for a specific attribute
20
+ *
21
+ * @param attributeSlug - The attribute slug to filter on (e.g., 'revenue', 'employee_count')
22
+ * @param range - Numeric range specification
23
+ * @returns Configured filter object
24
+ * @throws Error when range is invalid
25
+ */
26
+ export declare function createNumericRangeFilter(attributeSlug: string, range: NumericRange): ListEntryFilters;
27
+ //# sourceMappingURL=numeric-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numeric-utils.d.ts","sourceRoot":"","sources":["../../src/utils/numeric-utils.ts"],"names":[],"mappings":"AAKA,OAAO,EAAmB,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE/E;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CA+BjE;AAED;;;;;;;GAOG;AACH,wBAAgB,wBAAwB,CACtC,aAAa,EAAE,MAAM,EACrB,KAAK,EAAE,YAAY,GAClB,gBAAgB,CA4ClB"}
@@ -0,0 +1,83 @@
1
+ /**
2
+ * Numeric utility functions for working with Attio numeric filters
3
+ * Provides functions for handling numeric ranges and comparison operations.
4
+ */
5
+ import { FilterConditionType } from '../types/attio.js';
6
+ /**
7
+ * Validates a numeric range specification
8
+ *
9
+ * @param range - The numeric range to validate
10
+ * @returns True if valid, throws an error if invalid
11
+ * @throws Error when range is invalid
12
+ */
13
+ export function validateNumericRange(range) {
14
+ // Check if we have an equals value (exact match)
15
+ if (range.equals !== undefined) {
16
+ // If equals is specified, min and max should not be
17
+ if (range.min !== undefined || range.max !== undefined) {
18
+ throw new Error('Cannot specify both equals and min/max in a numeric range');
19
+ }
20
+ return true;
21
+ }
22
+ // Check if we have min or max
23
+ if (range.min === undefined && range.max === undefined) {
24
+ throw new Error('Numeric range must specify at least one of: min, max, or equals');
25
+ }
26
+ // If both min and max are specified, ensure min <= max
27
+ if (range.min !== undefined &&
28
+ range.max !== undefined &&
29
+ range.min > range.max) {
30
+ throw new Error(`Invalid numeric range: min (${range.min}) cannot be greater than max (${range.max})`);
31
+ }
32
+ return true;
33
+ }
34
+ /**
35
+ * Creates a numeric range filter for a specific attribute
36
+ *
37
+ * @param attributeSlug - The attribute slug to filter on (e.g., 'revenue', 'employee_count')
38
+ * @param range - Numeric range specification
39
+ * @returns Configured filter object
40
+ * @throws Error when range is invalid
41
+ */
42
+ export function createNumericRangeFilter(attributeSlug, range) {
43
+ try {
44
+ // Validate the numeric range
45
+ validateNumericRange(range);
46
+ const filters = [];
47
+ // Handle exact match case
48
+ if (range.equals !== undefined) {
49
+ filters.push({
50
+ attribute: { slug: attributeSlug },
51
+ condition: FilterConditionType.EQUALS,
52
+ value: range.equals,
53
+ });
54
+ return { filters, matchAny: false };
55
+ }
56
+ // Handle min value (greater than or equal)
57
+ if (range.min !== undefined) {
58
+ filters.push({
59
+ attribute: { slug: attributeSlug },
60
+ condition: FilterConditionType.GREATER_THAN_OR_EQUALS,
61
+ value: range.min,
62
+ });
63
+ }
64
+ // Handle max value (less than or equal)
65
+ if (range.max !== undefined) {
66
+ filters.push({
67
+ attribute: { slug: attributeSlug },
68
+ condition: FilterConditionType.LESS_THAN_OR_EQUALS,
69
+ value: range.max,
70
+ });
71
+ }
72
+ return {
73
+ filters,
74
+ // When both min and max are specified, we want records that match both (AND logic)
75
+ matchAny: false,
76
+ };
77
+ }
78
+ catch (error) {
79
+ const errorMessage = error instanceof Error ? error.message : String(error);
80
+ throw new Error(`Failed to create numeric filter: ${errorMessage}`);
81
+ }
82
+ }
83
+ //# sourceMappingURL=numeric-utils.js.map