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,1874 @@
1
+ /**
2
+ * Tool registry module - handles tool registration mechanics and discovery
3
+ */
4
+ import { ResourceType } from '../../types/attio.js';
5
+ import { ToolConfig } from '../tool-types.js';
6
+ /**
7
+ * Consolidated tool configurations from modular files
8
+ */
9
+ export declare const TOOL_CONFIGS: {
10
+ companies: {
11
+ details: import("../tool-types.js").DetailsToolConfig;
12
+ json: import("../tool-types.js").DetailsToolConfig;
13
+ basicInfo: import("../tool-types.js").DetailsToolConfig;
14
+ contactInfo: import("../tool-types.js").DetailsToolConfig;
15
+ businessInfo: import("../tool-types.js").DetailsToolConfig;
16
+ socialInfo: import("../tool-types.js").DetailsToolConfig;
17
+ batchCreate: ToolConfig;
18
+ batchUpdate: ToolConfig;
19
+ batchDelete: ToolConfig;
20
+ batchSearch: ToolConfig;
21
+ batchGetDetails: ToolConfig;
22
+ searchByPeople: ToolConfig;
23
+ searchByPeopleList: ToolConfig;
24
+ searchByNotes: ToolConfig;
25
+ listsForCompany: ToolConfig;
26
+ notes: import("../tool-types.js").NotesToolConfig;
27
+ createNote: import("../tool-types.js").CreateNoteToolConfig;
28
+ fields: ToolConfig;
29
+ customFields: ToolConfig;
30
+ discoverAttributes: ToolConfig;
31
+ getAttributes: ToolConfig;
32
+ create: ToolConfig;
33
+ update: ToolConfig;
34
+ updateAttribute: ToolConfig;
35
+ delete: ToolConfig;
36
+ search: import("../tool-types.js").SearchToolConfig;
37
+ searchByDomain: import("../tool-types.js").SearchToolConfig;
38
+ smartSearch: import("../tool-types.js").SearchToolConfig;
39
+ advancedSearch: import("../tool-types.js").AdvancedSearchToolConfig;
40
+ };
41
+ people: {
42
+ searchByCompany: ToolConfig;
43
+ searchByCompanyList: ToolConfig;
44
+ searchByNotes: import("../tool-types.js").SearchToolConfig;
45
+ notes: import("../tool-types.js").NotesToolConfig;
46
+ createNote: import("../tool-types.js").CreateNoteToolConfig;
47
+ searchByLastInteraction: import("../tool-types.js").DateBasedSearchToolConfig;
48
+ searchByActivity: import("../tool-types.js").DateBasedSearchToolConfig;
49
+ searchByCreationDate: import("../tool-types.js").DateBasedSearchToolConfig;
50
+ searchByModificationDate: import("../tool-types.js").DateBasedSearchToolConfig;
51
+ advancedSearch: ToolConfig;
52
+ search: import("../tool-types.js").SearchToolConfig;
53
+ searchByEmail: import("../tool-types.js").SearchToolConfig;
54
+ searchByPhone: import("../tool-types.js").SearchToolConfig;
55
+ create: ToolConfig;
56
+ details: ToolConfig;
57
+ };
58
+ lists: {
59
+ getLists: import("../tool-types.js").GetListsToolConfig;
60
+ getRecordListMemberships: ToolConfig;
61
+ getListDetails: ToolConfig;
62
+ getListEntries: import("../tool-types.js").GetListEntriesToolConfig;
63
+ filterListEntries: ToolConfig;
64
+ advancedFilterListEntries: ToolConfig;
65
+ addRecordToList: ToolConfig;
66
+ removeRecordFromList: import("../tool-types.js").ListActionToolConfig;
67
+ updateListEntry: ToolConfig;
68
+ filterListEntriesByParent: ToolConfig;
69
+ filterListEntriesByParentId: ToolConfig;
70
+ };
71
+ tasks: {
72
+ listTasks: ToolConfig;
73
+ createTask: ToolConfig;
74
+ updateTask: ToolConfig;
75
+ deleteTask: ToolConfig;
76
+ linkRecord: ToolConfig;
77
+ };
78
+ records: {
79
+ create: import("../tool-configs/records/index.js").RecordCreateToolConfig;
80
+ get: import("../tool-configs/records/index.js").RecordGetToolConfig;
81
+ update: import("../tool-configs/records/index.js").RecordUpdateToolConfig;
82
+ delete: import("../tool-configs/records/index.js").RecordDeleteToolConfig;
83
+ list: import("../tool-configs/records/index.js").RecordListToolConfig;
84
+ batchCreate: import("../tool-configs/records/index.js").RecordBatchCreateToolConfig;
85
+ batchUpdate: import("../tool-configs/records/index.js").RecordBatchUpdateToolConfig;
86
+ };
87
+ };
88
+ /**
89
+ * Consolidated tool definitions from modular files
90
+ */
91
+ export declare const TOOL_DEFINITIONS: {
92
+ companies: ({
93
+ name: string;
94
+ description: string;
95
+ inputSchema: {
96
+ type: string;
97
+ properties: {
98
+ query: {
99
+ type: string;
100
+ description: string;
101
+ };
102
+ filters?: undefined;
103
+ limit?: undefined;
104
+ offset?: undefined;
105
+ domain?: undefined;
106
+ };
107
+ required: string[];
108
+ };
109
+ } | {
110
+ name: string;
111
+ description: string;
112
+ inputSchema: {
113
+ type: string;
114
+ properties: {
115
+ filters: {
116
+ type: string;
117
+ description: string;
118
+ properties: {
119
+ filters: {
120
+ type: string;
121
+ description: string;
122
+ items: {
123
+ type: string;
124
+ properties: {
125
+ attribute: {
126
+ type: string;
127
+ properties: {
128
+ slug: {
129
+ type: string;
130
+ description: string;
131
+ };
132
+ };
133
+ required: string[];
134
+ };
135
+ condition: {
136
+ type: string;
137
+ description: string;
138
+ };
139
+ value: {
140
+ type: string[];
141
+ description: string;
142
+ };
143
+ };
144
+ required: string[];
145
+ };
146
+ };
147
+ matchAny: {
148
+ type: string;
149
+ description: string;
150
+ };
151
+ };
152
+ required: string[];
153
+ };
154
+ limit: {
155
+ type: string;
156
+ description: string;
157
+ };
158
+ offset: {
159
+ type: string;
160
+ description: string;
161
+ };
162
+ query?: undefined;
163
+ domain?: undefined;
164
+ };
165
+ required: string[];
166
+ };
167
+ } | {
168
+ name: string;
169
+ description: string;
170
+ inputSchema: {
171
+ type: string;
172
+ properties: {
173
+ domain: {
174
+ type: string;
175
+ description: string;
176
+ };
177
+ query?: undefined;
178
+ filters?: undefined;
179
+ limit?: undefined;
180
+ offset?: undefined;
181
+ };
182
+ required: string[];
183
+ };
184
+ } | {
185
+ name: string;
186
+ description: string;
187
+ inputSchema: {
188
+ type: string;
189
+ properties: {
190
+ companyId: {
191
+ type: string;
192
+ description: string;
193
+ };
194
+ uri: {
195
+ type: string;
196
+ description: string;
197
+ };
198
+ };
199
+ required?: undefined;
200
+ };
201
+ } | {
202
+ name: string;
203
+ description: string;
204
+ inputSchema: {
205
+ type: string;
206
+ properties: {
207
+ companyId: {
208
+ type: string;
209
+ description: string;
210
+ };
211
+ uri?: undefined;
212
+ };
213
+ required: string[];
214
+ };
215
+ } | {
216
+ name: string;
217
+ description: string;
218
+ inputSchema: {
219
+ type: string;
220
+ properties: {
221
+ attributes: {
222
+ type: string;
223
+ description: string;
224
+ properties: {
225
+ name: {
226
+ type: string;
227
+ description: string;
228
+ };
229
+ website: {
230
+ type: string;
231
+ description: string;
232
+ };
233
+ description: {
234
+ type: string;
235
+ description: string;
236
+ };
237
+ industry: {
238
+ type: string;
239
+ description: string;
240
+ };
241
+ };
242
+ };
243
+ companyId?: undefined;
244
+ attributeName?: undefined;
245
+ value?: undefined;
246
+ };
247
+ required: string[];
248
+ };
249
+ } | {
250
+ name: string;
251
+ description: string;
252
+ inputSchema: {
253
+ type: string;
254
+ properties: {
255
+ companyId: {
256
+ type: string;
257
+ description: string;
258
+ };
259
+ attributes: {
260
+ type: string;
261
+ description: string;
262
+ properties?: undefined;
263
+ };
264
+ attributeName?: undefined;
265
+ value?: undefined;
266
+ };
267
+ required: string[];
268
+ };
269
+ } | {
270
+ name: string;
271
+ description: string;
272
+ inputSchema: {
273
+ type: string;
274
+ properties: {
275
+ companyId: {
276
+ type: string;
277
+ description: string;
278
+ };
279
+ attributeName: {
280
+ type: string;
281
+ description: string;
282
+ };
283
+ value: {
284
+ description: string;
285
+ oneOf: {
286
+ type: string;
287
+ }[];
288
+ };
289
+ attributes?: undefined;
290
+ };
291
+ required: string[];
292
+ };
293
+ } | {
294
+ name: string;
295
+ description: string;
296
+ inputSchema: {
297
+ type: string;
298
+ properties: {
299
+ companyId: {
300
+ type: string;
301
+ description: string;
302
+ };
303
+ attributes?: undefined;
304
+ attributeName?: undefined;
305
+ value?: undefined;
306
+ };
307
+ required: string[];
308
+ };
309
+ } | {
310
+ name: string;
311
+ description: string;
312
+ inputSchema: {
313
+ type: string;
314
+ properties: {
315
+ companyId: {
316
+ type: string;
317
+ description: string;
318
+ };
319
+ fields: {
320
+ type: string;
321
+ items: {
322
+ type: string;
323
+ };
324
+ description: string;
325
+ };
326
+ customFieldNames?: undefined;
327
+ attributeName?: undefined;
328
+ };
329
+ required: string[];
330
+ };
331
+ } | {
332
+ name: string;
333
+ description: string;
334
+ inputSchema: {
335
+ type: string;
336
+ properties: {
337
+ companyId: {
338
+ type: string;
339
+ description: string;
340
+ };
341
+ customFieldNames: {
342
+ type: string[];
343
+ items: {
344
+ type: string;
345
+ };
346
+ description: string;
347
+ };
348
+ fields?: undefined;
349
+ attributeName?: undefined;
350
+ };
351
+ required: string[];
352
+ };
353
+ } | {
354
+ name: string;
355
+ description: string;
356
+ inputSchema: {
357
+ type: string;
358
+ properties: {
359
+ companyId?: undefined;
360
+ fields?: undefined;
361
+ customFieldNames?: undefined;
362
+ attributeName?: undefined;
363
+ };
364
+ required?: undefined;
365
+ };
366
+ } | {
367
+ name: string;
368
+ description: string;
369
+ inputSchema: {
370
+ type: string;
371
+ properties: {
372
+ companyId: {
373
+ type: string;
374
+ description: string;
375
+ };
376
+ attributeName: {
377
+ type: string;
378
+ description: string;
379
+ };
380
+ fields?: undefined;
381
+ customFieldNames?: undefined;
382
+ };
383
+ required: string[];
384
+ };
385
+ } | {
386
+ name: string;
387
+ description: string;
388
+ inputSchema: {
389
+ type: string;
390
+ properties: {
391
+ companyId: {
392
+ type: string;
393
+ description: string;
394
+ };
395
+ uri: {
396
+ type: string;
397
+ description: string;
398
+ };
399
+ title: {
400
+ type: string;
401
+ description: string;
402
+ };
403
+ content: {
404
+ type: string;
405
+ description: string;
406
+ };
407
+ limit?: undefined;
408
+ offset?: undefined;
409
+ };
410
+ required: string[];
411
+ };
412
+ } | {
413
+ name: string;
414
+ description: string;
415
+ inputSchema: {
416
+ type: string;
417
+ properties: {
418
+ peopleFilter: {
419
+ type: string;
420
+ description: string;
421
+ properties: {
422
+ filters: {
423
+ type: string;
424
+ description: string;
425
+ items: {
426
+ type: string;
427
+ properties: {
428
+ attribute: {
429
+ type: string;
430
+ properties: {
431
+ slug: {
432
+ type: string;
433
+ description: string;
434
+ };
435
+ };
436
+ required: string[];
437
+ };
438
+ condition: {
439
+ type: string;
440
+ description: string;
441
+ };
442
+ value: {
443
+ type: string[];
444
+ description: string;
445
+ };
446
+ };
447
+ required: string[];
448
+ };
449
+ };
450
+ matchAny: {
451
+ type: string;
452
+ description: string;
453
+ };
454
+ };
455
+ required: string[];
456
+ };
457
+ limit: {
458
+ type: string;
459
+ description: string;
460
+ };
461
+ offset: {
462
+ type: string;
463
+ description: string;
464
+ };
465
+ listId?: undefined;
466
+ searchText?: undefined;
467
+ companyId?: undefined;
468
+ };
469
+ required: string[];
470
+ };
471
+ } | {
472
+ name: string;
473
+ description: string;
474
+ inputSchema: {
475
+ type: string;
476
+ properties: {
477
+ listId: {
478
+ type: string;
479
+ description: string;
480
+ };
481
+ limit: {
482
+ type: string;
483
+ description: string;
484
+ };
485
+ offset: {
486
+ type: string;
487
+ description: string;
488
+ };
489
+ peopleFilter?: undefined;
490
+ searchText?: undefined;
491
+ companyId?: undefined;
492
+ };
493
+ required: string[];
494
+ };
495
+ } | {
496
+ name: string;
497
+ description: string;
498
+ inputSchema: {
499
+ type: string;
500
+ properties: {
501
+ searchText: {
502
+ type: string;
503
+ description: string;
504
+ };
505
+ limit: {
506
+ type: string;
507
+ description: string;
508
+ };
509
+ offset: {
510
+ type: string;
511
+ description: string;
512
+ };
513
+ peopleFilter?: undefined;
514
+ listId?: undefined;
515
+ companyId?: undefined;
516
+ };
517
+ required: string[];
518
+ };
519
+ } | {
520
+ name: string;
521
+ description: string;
522
+ inputSchema: {
523
+ type: string;
524
+ properties: {
525
+ companyId: {
526
+ type: string;
527
+ description: string;
528
+ };
529
+ limit: {
530
+ type: string;
531
+ description: string;
532
+ };
533
+ peopleFilter?: undefined;
534
+ offset?: undefined;
535
+ listId?: undefined;
536
+ searchText?: undefined;
537
+ };
538
+ required: string[];
539
+ };
540
+ } | {
541
+ name: string;
542
+ description: string;
543
+ inputSchema: {
544
+ type: string;
545
+ properties: {
546
+ companies: {
547
+ type: string;
548
+ description: string;
549
+ items: {
550
+ type: string;
551
+ properties: {
552
+ name: {
553
+ type: string;
554
+ description: string;
555
+ };
556
+ website: {
557
+ type: string;
558
+ description: string;
559
+ };
560
+ description: {
561
+ type: string;
562
+ description: string;
563
+ };
564
+ industry: {
565
+ type: string;
566
+ description: string;
567
+ };
568
+ };
569
+ required: string[];
570
+ };
571
+ };
572
+ config: {
573
+ type: string;
574
+ description: string;
575
+ properties: {
576
+ maxBatchSize: {
577
+ type: string;
578
+ description: string;
579
+ };
580
+ continueOnError: {
581
+ type: string;
582
+ description: string;
583
+ };
584
+ };
585
+ };
586
+ updates?: undefined;
587
+ companyIds?: undefined;
588
+ queries?: undefined;
589
+ };
590
+ required: string[];
591
+ };
592
+ } | {
593
+ name: string;
594
+ description: string;
595
+ inputSchema: {
596
+ type: string;
597
+ properties: {
598
+ updates: {
599
+ type: string;
600
+ description: string;
601
+ items: {
602
+ type: string;
603
+ properties: {
604
+ id: {
605
+ type: string;
606
+ description: string;
607
+ };
608
+ attributes: {
609
+ type: string;
610
+ description: string;
611
+ };
612
+ };
613
+ required: string[];
614
+ };
615
+ };
616
+ config: {
617
+ type: string;
618
+ description: string;
619
+ properties?: undefined;
620
+ };
621
+ companies?: undefined;
622
+ companyIds?: undefined;
623
+ queries?: undefined;
624
+ };
625
+ required: string[];
626
+ };
627
+ } | {
628
+ name: string;
629
+ description: string;
630
+ inputSchema: {
631
+ type: string;
632
+ properties: {
633
+ companyIds: {
634
+ type: string;
635
+ description: string;
636
+ items: {
637
+ type: string;
638
+ };
639
+ };
640
+ config: {
641
+ type: string;
642
+ description: string;
643
+ properties?: undefined;
644
+ };
645
+ companies?: undefined;
646
+ updates?: undefined;
647
+ queries?: undefined;
648
+ };
649
+ required: string[];
650
+ };
651
+ } | {
652
+ name: string;
653
+ description: string;
654
+ inputSchema: {
655
+ type: string;
656
+ properties: {
657
+ queries: {
658
+ type: string;
659
+ description: string;
660
+ items: {
661
+ type: string;
662
+ };
663
+ };
664
+ config: {
665
+ type: string;
666
+ description: string;
667
+ properties?: undefined;
668
+ };
669
+ companies?: undefined;
670
+ updates?: undefined;
671
+ companyIds?: undefined;
672
+ };
673
+ required: string[];
674
+ };
675
+ })[];
676
+ people: ({
677
+ name: string;
678
+ description: string;
679
+ inputSchema: {
680
+ type: string;
681
+ properties: {
682
+ query: {
683
+ type: string;
684
+ description: string;
685
+ };
686
+ email?: undefined;
687
+ phone?: undefined;
688
+ };
689
+ required: string[];
690
+ };
691
+ } | {
692
+ name: string;
693
+ description: string;
694
+ inputSchema: {
695
+ type: string;
696
+ properties: {
697
+ email: {
698
+ type: string;
699
+ description: string;
700
+ };
701
+ query?: undefined;
702
+ phone?: undefined;
703
+ };
704
+ required: string[];
705
+ };
706
+ } | {
707
+ name: string;
708
+ description: string;
709
+ inputSchema: {
710
+ type: string;
711
+ properties: {
712
+ phone: {
713
+ type: string;
714
+ description: string;
715
+ };
716
+ query?: undefined;
717
+ email?: undefined;
718
+ };
719
+ required: string[];
720
+ };
721
+ } | {
722
+ name: string;
723
+ description: string;
724
+ inputSchema: {
725
+ type: string;
726
+ properties: {
727
+ filters: {
728
+ type: string;
729
+ description: string;
730
+ properties: {
731
+ filters: {
732
+ type: string;
733
+ description: string;
734
+ items: {
735
+ type: string;
736
+ properties: {
737
+ attribute: {
738
+ type: string;
739
+ properties: {
740
+ slug: {
741
+ type: string;
742
+ description: string;
743
+ };
744
+ };
745
+ required: string[];
746
+ };
747
+ condition: {
748
+ type: string;
749
+ description: string;
750
+ };
751
+ value: {
752
+ type: string[];
753
+ description: string;
754
+ };
755
+ };
756
+ required: string[];
757
+ };
758
+ };
759
+ matchAny: {
760
+ type: string;
761
+ description: string;
762
+ };
763
+ };
764
+ required: string[];
765
+ };
766
+ limit: {
767
+ type: string;
768
+ description: string;
769
+ };
770
+ offset: {
771
+ type: string;
772
+ description: string;
773
+ };
774
+ };
775
+ required: string[];
776
+ };
777
+ } | {
778
+ name: string;
779
+ description: string;
780
+ inputSchema: {
781
+ type: string;
782
+ properties: {
783
+ dateRange: {
784
+ type: string;
785
+ description: string;
786
+ properties: {
787
+ start: {
788
+ type: string;
789
+ description: string;
790
+ };
791
+ end: {
792
+ type: string;
793
+ description: string;
794
+ };
795
+ preset: {
796
+ type: string;
797
+ description: string;
798
+ };
799
+ };
800
+ };
801
+ limit: {
802
+ type: string;
803
+ description: string;
804
+ };
805
+ offset: {
806
+ type: string;
807
+ description: string;
808
+ };
809
+ };
810
+ required: string[];
811
+ };
812
+ } | {
813
+ name: string;
814
+ description: string;
815
+ inputSchema: {
816
+ type: string;
817
+ properties: {
818
+ activityFilter: {
819
+ type: string;
820
+ description: string;
821
+ properties: {
822
+ dateRange: {
823
+ type: string;
824
+ description: string;
825
+ properties: {
826
+ start: {
827
+ type: string;
828
+ description: string;
829
+ };
830
+ end: {
831
+ type: string;
832
+ description: string;
833
+ };
834
+ preset: {
835
+ type: string;
836
+ description: string;
837
+ };
838
+ };
839
+ required: string[];
840
+ };
841
+ interactionType: {
842
+ type: string;
843
+ description: string;
844
+ enum: string[];
845
+ };
846
+ };
847
+ required: string[];
848
+ };
849
+ limit: {
850
+ type: string;
851
+ description: string;
852
+ };
853
+ offset: {
854
+ type: string;
855
+ description: string;
856
+ };
857
+ dateRange?: undefined;
858
+ interactionType?: undefined;
859
+ };
860
+ required: string[];
861
+ };
862
+ } | {
863
+ name: string;
864
+ description: string;
865
+ inputSchema: {
866
+ type: string;
867
+ properties: {
868
+ attributes: {
869
+ type: string;
870
+ description: string;
871
+ properties: {
872
+ name: {
873
+ type: string;
874
+ description: string;
875
+ };
876
+ email_addresses: {
877
+ type: string;
878
+ items: {
879
+ type: string;
880
+ };
881
+ description: string;
882
+ };
883
+ phone_numbers: {
884
+ type: string;
885
+ items: {
886
+ type: string;
887
+ };
888
+ description: string;
889
+ };
890
+ job_title: {
891
+ type: string;
892
+ description: string;
893
+ };
894
+ company: {
895
+ type: string;
896
+ description: string;
897
+ };
898
+ };
899
+ };
900
+ personId?: undefined;
901
+ };
902
+ required: string[];
903
+ };
904
+ } | {
905
+ name: string;
906
+ description: string;
907
+ inputSchema: {
908
+ type: string;
909
+ properties: {
910
+ personId: {
911
+ type: string;
912
+ description: string;
913
+ };
914
+ attributes?: undefined;
915
+ };
916
+ required: string[];
917
+ };
918
+ } | {
919
+ name: string;
920
+ description: string;
921
+ inputSchema: {
922
+ type: string;
923
+ properties: {
924
+ personId: {
925
+ type: string;
926
+ description: string;
927
+ };
928
+ content?: undefined;
929
+ };
930
+ required: string[];
931
+ };
932
+ } | {
933
+ name: string;
934
+ description: string;
935
+ inputSchema: {
936
+ type: string;
937
+ properties: {
938
+ personId: {
939
+ type: string;
940
+ description: string;
941
+ };
942
+ content: {
943
+ type: string;
944
+ description: string;
945
+ };
946
+ };
947
+ required: string[];
948
+ };
949
+ } | {
950
+ name: string;
951
+ description: string;
952
+ inputSchema: {
953
+ type: string;
954
+ properties: {
955
+ companyFilter: {
956
+ type: string;
957
+ description: string;
958
+ properties: {
959
+ filters: {
960
+ type: string;
961
+ description: string;
962
+ items: {
963
+ type: string;
964
+ properties: {
965
+ attribute: {
966
+ type: string;
967
+ properties: {
968
+ slug: {
969
+ type: string;
970
+ description: string;
971
+ };
972
+ };
973
+ required: string[];
974
+ };
975
+ condition: {
976
+ type: string;
977
+ description: string;
978
+ };
979
+ value: {
980
+ type: string[];
981
+ description: string;
982
+ };
983
+ };
984
+ required: string[];
985
+ };
986
+ };
987
+ matchAny: {
988
+ type: string;
989
+ description: string;
990
+ };
991
+ };
992
+ required: string[];
993
+ };
994
+ limit: {
995
+ type: string;
996
+ description: string;
997
+ };
998
+ offset: {
999
+ type: string;
1000
+ description: string;
1001
+ };
1002
+ listId?: undefined;
1003
+ searchText?: undefined;
1004
+ };
1005
+ required: string[];
1006
+ };
1007
+ } | {
1008
+ name: string;
1009
+ description: string;
1010
+ inputSchema: {
1011
+ type: string;
1012
+ properties: {
1013
+ listId: {
1014
+ type: string;
1015
+ description: string;
1016
+ };
1017
+ limit: {
1018
+ type: string;
1019
+ description: string;
1020
+ };
1021
+ offset: {
1022
+ type: string;
1023
+ description: string;
1024
+ };
1025
+ companyFilter?: undefined;
1026
+ searchText?: undefined;
1027
+ };
1028
+ required: string[];
1029
+ };
1030
+ } | {
1031
+ name: string;
1032
+ description: string;
1033
+ inputSchema: {
1034
+ type: string;
1035
+ properties: {
1036
+ searchText: {
1037
+ type: string;
1038
+ description: string;
1039
+ };
1040
+ limit: {
1041
+ type: string;
1042
+ description: string;
1043
+ };
1044
+ offset: {
1045
+ type: string;
1046
+ description: string;
1047
+ };
1048
+ companyFilter?: undefined;
1049
+ listId?: undefined;
1050
+ };
1051
+ required: string[];
1052
+ };
1053
+ })[];
1054
+ lists: ({
1055
+ name: string;
1056
+ description: string;
1057
+ inputSchema: {
1058
+ type: string;
1059
+ properties: {
1060
+ recordId?: undefined;
1061
+ objectType?: undefined;
1062
+ includeEntryValues?: undefined;
1063
+ batchSize?: undefined;
1064
+ listId?: undefined;
1065
+ limit?: undefined;
1066
+ offset?: undefined;
1067
+ attributeSlug?: undefined;
1068
+ condition?: undefined;
1069
+ value?: undefined;
1070
+ filters?: undefined;
1071
+ initialValues?: undefined;
1072
+ entryId?: undefined;
1073
+ attributes?: undefined;
1074
+ parentObjectType?: undefined;
1075
+ parentAttributeSlug?: undefined;
1076
+ };
1077
+ required?: undefined;
1078
+ };
1079
+ } | {
1080
+ name: string;
1081
+ description: string;
1082
+ inputSchema: {
1083
+ type: string;
1084
+ properties: {
1085
+ recordId: {
1086
+ type: string;
1087
+ description: string;
1088
+ };
1089
+ objectType: {
1090
+ type: string;
1091
+ description: string;
1092
+ enum: string[];
1093
+ };
1094
+ includeEntryValues: {
1095
+ type: string;
1096
+ description: string;
1097
+ default: boolean;
1098
+ };
1099
+ batchSize: {
1100
+ type: string;
1101
+ description: string;
1102
+ minimum: number;
1103
+ maximum: number;
1104
+ default: number;
1105
+ };
1106
+ listId?: undefined;
1107
+ limit?: undefined;
1108
+ offset?: undefined;
1109
+ attributeSlug?: undefined;
1110
+ condition?: undefined;
1111
+ value?: undefined;
1112
+ filters?: undefined;
1113
+ initialValues?: undefined;
1114
+ entryId?: undefined;
1115
+ attributes?: undefined;
1116
+ parentObjectType?: undefined;
1117
+ parentAttributeSlug?: undefined;
1118
+ };
1119
+ required: string[];
1120
+ };
1121
+ } | {
1122
+ name: string;
1123
+ description: string;
1124
+ inputSchema: {
1125
+ type: string;
1126
+ properties: {
1127
+ listId: {
1128
+ type: string;
1129
+ description: string;
1130
+ };
1131
+ recordId?: undefined;
1132
+ objectType?: undefined;
1133
+ includeEntryValues?: undefined;
1134
+ batchSize?: undefined;
1135
+ limit?: undefined;
1136
+ offset?: undefined;
1137
+ attributeSlug?: undefined;
1138
+ condition?: undefined;
1139
+ value?: undefined;
1140
+ filters?: undefined;
1141
+ initialValues?: undefined;
1142
+ entryId?: undefined;
1143
+ attributes?: undefined;
1144
+ parentObjectType?: undefined;
1145
+ parentAttributeSlug?: undefined;
1146
+ };
1147
+ required: string[];
1148
+ };
1149
+ } | {
1150
+ name: string;
1151
+ description: string;
1152
+ inputSchema: {
1153
+ type: string;
1154
+ properties: {
1155
+ listId: {
1156
+ type: string;
1157
+ description: string;
1158
+ };
1159
+ limit: {
1160
+ type: string;
1161
+ description: string;
1162
+ };
1163
+ offset: {
1164
+ type: string;
1165
+ description: string;
1166
+ };
1167
+ recordId?: undefined;
1168
+ objectType?: undefined;
1169
+ includeEntryValues?: undefined;
1170
+ batchSize?: undefined;
1171
+ attributeSlug?: undefined;
1172
+ condition?: undefined;
1173
+ value?: undefined;
1174
+ filters?: undefined;
1175
+ initialValues?: undefined;
1176
+ entryId?: undefined;
1177
+ attributes?: undefined;
1178
+ parentObjectType?: undefined;
1179
+ parentAttributeSlug?: undefined;
1180
+ };
1181
+ required: string[];
1182
+ };
1183
+ } | {
1184
+ name: string;
1185
+ description: string;
1186
+ inputSchema: {
1187
+ type: string;
1188
+ properties: {
1189
+ listId: {
1190
+ type: string;
1191
+ description: string;
1192
+ };
1193
+ attributeSlug: {
1194
+ type: string;
1195
+ description: string;
1196
+ };
1197
+ condition: {
1198
+ type: string;
1199
+ description: string;
1200
+ enum: string[];
1201
+ };
1202
+ value: {
1203
+ description: string;
1204
+ };
1205
+ limit: {
1206
+ type: string;
1207
+ description: string;
1208
+ };
1209
+ offset: {
1210
+ type: string;
1211
+ description: string;
1212
+ };
1213
+ recordId?: undefined;
1214
+ objectType?: undefined;
1215
+ includeEntryValues?: undefined;
1216
+ batchSize?: undefined;
1217
+ filters?: undefined;
1218
+ initialValues?: undefined;
1219
+ entryId?: undefined;
1220
+ attributes?: undefined;
1221
+ parentObjectType?: undefined;
1222
+ parentAttributeSlug?: undefined;
1223
+ };
1224
+ required: string[];
1225
+ };
1226
+ } | {
1227
+ name: string;
1228
+ description: string;
1229
+ inputSchema: {
1230
+ type: string;
1231
+ properties: {
1232
+ listId: {
1233
+ type: string;
1234
+ description: string;
1235
+ };
1236
+ filters: {
1237
+ type: string;
1238
+ description: string;
1239
+ properties: {
1240
+ filters: {
1241
+ type: string;
1242
+ description: string;
1243
+ items: {
1244
+ type: string;
1245
+ properties: {
1246
+ attribute: {
1247
+ type: string;
1248
+ properties: {
1249
+ slug: {
1250
+ type: string;
1251
+ description: string;
1252
+ };
1253
+ };
1254
+ required: string[];
1255
+ };
1256
+ condition: {
1257
+ type: string;
1258
+ description: string;
1259
+ enum: string[];
1260
+ };
1261
+ value: {
1262
+ description: string;
1263
+ };
1264
+ logicalOperator: {
1265
+ type: string;
1266
+ description: string;
1267
+ enum: string[];
1268
+ };
1269
+ };
1270
+ required: string[];
1271
+ };
1272
+ };
1273
+ matchAny: {
1274
+ type: string;
1275
+ description: string;
1276
+ };
1277
+ };
1278
+ required: string[];
1279
+ };
1280
+ limit: {
1281
+ type: string;
1282
+ description: string;
1283
+ };
1284
+ offset: {
1285
+ type: string;
1286
+ description: string;
1287
+ };
1288
+ recordId?: undefined;
1289
+ objectType?: undefined;
1290
+ includeEntryValues?: undefined;
1291
+ batchSize?: undefined;
1292
+ attributeSlug?: undefined;
1293
+ condition?: undefined;
1294
+ value?: undefined;
1295
+ initialValues?: undefined;
1296
+ entryId?: undefined;
1297
+ attributes?: undefined;
1298
+ parentObjectType?: undefined;
1299
+ parentAttributeSlug?: undefined;
1300
+ };
1301
+ required: string[];
1302
+ };
1303
+ } | {
1304
+ name: string;
1305
+ description: string;
1306
+ inputSchema: {
1307
+ type: string;
1308
+ properties: {
1309
+ listId: {
1310
+ type: string;
1311
+ description: string;
1312
+ };
1313
+ recordId: {
1314
+ type: string;
1315
+ description: string;
1316
+ };
1317
+ objectType: {
1318
+ type: string;
1319
+ description: string;
1320
+ enum: string[];
1321
+ };
1322
+ initialValues: {
1323
+ type: string;
1324
+ description: string;
1325
+ };
1326
+ includeEntryValues?: undefined;
1327
+ batchSize?: undefined;
1328
+ limit?: undefined;
1329
+ offset?: undefined;
1330
+ attributeSlug?: undefined;
1331
+ condition?: undefined;
1332
+ value?: undefined;
1333
+ filters?: undefined;
1334
+ entryId?: undefined;
1335
+ attributes?: undefined;
1336
+ parentObjectType?: undefined;
1337
+ parentAttributeSlug?: undefined;
1338
+ };
1339
+ required: string[];
1340
+ };
1341
+ } | {
1342
+ name: string;
1343
+ description: string;
1344
+ inputSchema: {
1345
+ type: string;
1346
+ properties: {
1347
+ listId: {
1348
+ type: string;
1349
+ description: string;
1350
+ };
1351
+ entryId: {
1352
+ type: string;
1353
+ description: string;
1354
+ };
1355
+ recordId?: undefined;
1356
+ objectType?: undefined;
1357
+ includeEntryValues?: undefined;
1358
+ batchSize?: undefined;
1359
+ limit?: undefined;
1360
+ offset?: undefined;
1361
+ attributeSlug?: undefined;
1362
+ condition?: undefined;
1363
+ value?: undefined;
1364
+ filters?: undefined;
1365
+ initialValues?: undefined;
1366
+ attributes?: undefined;
1367
+ parentObjectType?: undefined;
1368
+ parentAttributeSlug?: undefined;
1369
+ };
1370
+ required: string[];
1371
+ };
1372
+ } | {
1373
+ name: string;
1374
+ description: string;
1375
+ inputSchema: {
1376
+ type: string;
1377
+ properties: {
1378
+ listId: {
1379
+ type: string;
1380
+ description: string;
1381
+ };
1382
+ entryId: {
1383
+ type: string;
1384
+ description: string;
1385
+ };
1386
+ attributes: {
1387
+ type: string;
1388
+ description: string;
1389
+ properties: {
1390
+ stage: {
1391
+ type: string;
1392
+ description: string;
1393
+ };
1394
+ };
1395
+ additionalProperties: boolean;
1396
+ };
1397
+ recordId?: undefined;
1398
+ objectType?: undefined;
1399
+ includeEntryValues?: undefined;
1400
+ batchSize?: undefined;
1401
+ limit?: undefined;
1402
+ offset?: undefined;
1403
+ attributeSlug?: undefined;
1404
+ condition?: undefined;
1405
+ value?: undefined;
1406
+ filters?: undefined;
1407
+ initialValues?: undefined;
1408
+ parentObjectType?: undefined;
1409
+ parentAttributeSlug?: undefined;
1410
+ };
1411
+ required: string[];
1412
+ };
1413
+ } | {
1414
+ name: string;
1415
+ description: string;
1416
+ inputSchema: {
1417
+ type: string;
1418
+ properties: {
1419
+ listId: {
1420
+ type: string;
1421
+ description: string;
1422
+ };
1423
+ parentObjectType: {
1424
+ type: string;
1425
+ description: string;
1426
+ enum: string[];
1427
+ };
1428
+ parentAttributeSlug: {
1429
+ type: string;
1430
+ description: string;
1431
+ };
1432
+ condition: {
1433
+ type: string;
1434
+ description: string;
1435
+ enum: string[];
1436
+ };
1437
+ value: {
1438
+ description: string;
1439
+ };
1440
+ limit: {
1441
+ type: string;
1442
+ description: string;
1443
+ };
1444
+ offset: {
1445
+ type: string;
1446
+ description: string;
1447
+ };
1448
+ recordId?: undefined;
1449
+ objectType?: undefined;
1450
+ includeEntryValues?: undefined;
1451
+ batchSize?: undefined;
1452
+ attributeSlug?: undefined;
1453
+ filters?: undefined;
1454
+ initialValues?: undefined;
1455
+ entryId?: undefined;
1456
+ attributes?: undefined;
1457
+ };
1458
+ required: string[];
1459
+ };
1460
+ } | {
1461
+ name: string;
1462
+ description: string;
1463
+ inputSchema: {
1464
+ type: string;
1465
+ properties: {
1466
+ listId: {
1467
+ type: string;
1468
+ description: string;
1469
+ };
1470
+ recordId: {
1471
+ type: string;
1472
+ description: string;
1473
+ };
1474
+ limit: {
1475
+ type: string;
1476
+ description: string;
1477
+ };
1478
+ offset: {
1479
+ type: string;
1480
+ description: string;
1481
+ };
1482
+ objectType?: undefined;
1483
+ includeEntryValues?: undefined;
1484
+ batchSize?: undefined;
1485
+ attributeSlug?: undefined;
1486
+ condition?: undefined;
1487
+ value?: undefined;
1488
+ filters?: undefined;
1489
+ initialValues?: undefined;
1490
+ entryId?: undefined;
1491
+ attributes?: undefined;
1492
+ parentObjectType?: undefined;
1493
+ parentAttributeSlug?: undefined;
1494
+ };
1495
+ required: string[];
1496
+ };
1497
+ })[];
1498
+ tasks: ({
1499
+ name: string;
1500
+ description: string;
1501
+ inputSchema: {
1502
+ type: string;
1503
+ properties: {
1504
+ status: {
1505
+ type: string;
1506
+ };
1507
+ assigneeId: {
1508
+ type: string;
1509
+ };
1510
+ page: {
1511
+ type: string;
1512
+ };
1513
+ pageSize: {
1514
+ type: string;
1515
+ };
1516
+ content?: undefined;
1517
+ dueDate?: undefined;
1518
+ recordId?: undefined;
1519
+ taskId?: undefined;
1520
+ };
1521
+ required?: undefined;
1522
+ };
1523
+ } | {
1524
+ name: string;
1525
+ description: string;
1526
+ inputSchema: {
1527
+ type: string;
1528
+ properties: {
1529
+ content: {
1530
+ type: string;
1531
+ };
1532
+ assigneeId: {
1533
+ type: string;
1534
+ };
1535
+ dueDate: {
1536
+ type: string;
1537
+ };
1538
+ recordId: {
1539
+ type: string;
1540
+ };
1541
+ status?: undefined;
1542
+ page?: undefined;
1543
+ pageSize?: undefined;
1544
+ taskId?: undefined;
1545
+ };
1546
+ required: string[];
1547
+ };
1548
+ } | {
1549
+ name: string;
1550
+ description: string;
1551
+ inputSchema: {
1552
+ type: string;
1553
+ properties: {
1554
+ taskId: {
1555
+ type: string;
1556
+ };
1557
+ content: {
1558
+ type: string;
1559
+ };
1560
+ status: {
1561
+ type: string;
1562
+ };
1563
+ assigneeId: {
1564
+ type: string;
1565
+ };
1566
+ dueDate: {
1567
+ type: string;
1568
+ };
1569
+ page?: undefined;
1570
+ pageSize?: undefined;
1571
+ recordId?: undefined;
1572
+ };
1573
+ required: string[];
1574
+ };
1575
+ } | {
1576
+ name: string;
1577
+ description: string;
1578
+ inputSchema: {
1579
+ type: string;
1580
+ properties: {
1581
+ taskId: {
1582
+ type: string;
1583
+ };
1584
+ status?: undefined;
1585
+ assigneeId?: undefined;
1586
+ page?: undefined;
1587
+ pageSize?: undefined;
1588
+ content?: undefined;
1589
+ dueDate?: undefined;
1590
+ recordId?: undefined;
1591
+ };
1592
+ required: string[];
1593
+ };
1594
+ } | {
1595
+ name: string;
1596
+ description: string;
1597
+ inputSchema: {
1598
+ type: string;
1599
+ properties: {
1600
+ taskId: {
1601
+ type: string;
1602
+ };
1603
+ recordId: {
1604
+ type: string;
1605
+ };
1606
+ status?: undefined;
1607
+ assigneeId?: undefined;
1608
+ page?: undefined;
1609
+ pageSize?: undefined;
1610
+ content?: undefined;
1611
+ dueDate?: undefined;
1612
+ };
1613
+ required: string[];
1614
+ };
1615
+ })[];
1616
+ records: ({
1617
+ name: string;
1618
+ description: string;
1619
+ inputSchema: {
1620
+ type: string;
1621
+ properties: {
1622
+ objectSlug: {
1623
+ type: string;
1624
+ description: string;
1625
+ };
1626
+ objectId: {
1627
+ type: string;
1628
+ description: string;
1629
+ };
1630
+ attributes: {
1631
+ type: string;
1632
+ description: string;
1633
+ items?: undefined;
1634
+ };
1635
+ recordId?: undefined;
1636
+ page?: undefined;
1637
+ pageSize?: undefined;
1638
+ query?: undefined;
1639
+ sort?: undefined;
1640
+ direction?: undefined;
1641
+ records?: undefined;
1642
+ };
1643
+ required: string[];
1644
+ };
1645
+ } | {
1646
+ name: string;
1647
+ description: string;
1648
+ inputSchema: {
1649
+ type: string;
1650
+ properties: {
1651
+ objectSlug: {
1652
+ type: string;
1653
+ description: string;
1654
+ };
1655
+ objectId: {
1656
+ type: string;
1657
+ description: string;
1658
+ };
1659
+ recordId: {
1660
+ type: string;
1661
+ description: string;
1662
+ };
1663
+ attributes: {
1664
+ type: string;
1665
+ items: {
1666
+ type: string;
1667
+ };
1668
+ description: string;
1669
+ };
1670
+ page?: undefined;
1671
+ pageSize?: undefined;
1672
+ query?: undefined;
1673
+ sort?: undefined;
1674
+ direction?: undefined;
1675
+ records?: undefined;
1676
+ };
1677
+ required: string[];
1678
+ };
1679
+ } | {
1680
+ name: string;
1681
+ description: string;
1682
+ inputSchema: {
1683
+ type: string;
1684
+ properties: {
1685
+ objectSlug: {
1686
+ type: string;
1687
+ description: string;
1688
+ };
1689
+ objectId: {
1690
+ type: string;
1691
+ description: string;
1692
+ };
1693
+ recordId: {
1694
+ type: string;
1695
+ description: string;
1696
+ };
1697
+ attributes: {
1698
+ type: string;
1699
+ description: string;
1700
+ items?: undefined;
1701
+ };
1702
+ page?: undefined;
1703
+ pageSize?: undefined;
1704
+ query?: undefined;
1705
+ sort?: undefined;
1706
+ direction?: undefined;
1707
+ records?: undefined;
1708
+ };
1709
+ required: string[];
1710
+ };
1711
+ } | {
1712
+ name: string;
1713
+ description: string;
1714
+ inputSchema: {
1715
+ type: string;
1716
+ properties: {
1717
+ objectSlug: {
1718
+ type: string;
1719
+ description: string;
1720
+ };
1721
+ objectId: {
1722
+ type: string;
1723
+ description: string;
1724
+ };
1725
+ recordId: {
1726
+ type: string;
1727
+ description: string;
1728
+ };
1729
+ attributes?: undefined;
1730
+ page?: undefined;
1731
+ pageSize?: undefined;
1732
+ query?: undefined;
1733
+ sort?: undefined;
1734
+ direction?: undefined;
1735
+ records?: undefined;
1736
+ };
1737
+ required: string[];
1738
+ };
1739
+ } | {
1740
+ name: string;
1741
+ description: string;
1742
+ inputSchema: {
1743
+ type: string;
1744
+ properties: {
1745
+ objectSlug: {
1746
+ type: string;
1747
+ description: string;
1748
+ };
1749
+ objectId: {
1750
+ type: string;
1751
+ description: string;
1752
+ };
1753
+ page: {
1754
+ type: string;
1755
+ description: string;
1756
+ };
1757
+ pageSize: {
1758
+ type: string;
1759
+ description: string;
1760
+ };
1761
+ query: {
1762
+ type: string;
1763
+ description: string;
1764
+ };
1765
+ attributes: {
1766
+ type: string;
1767
+ items: {
1768
+ type: string;
1769
+ };
1770
+ description: string;
1771
+ };
1772
+ sort: {
1773
+ type: string;
1774
+ description: string;
1775
+ };
1776
+ direction: {
1777
+ type: string;
1778
+ enum: string[];
1779
+ description: string;
1780
+ };
1781
+ recordId?: undefined;
1782
+ records?: undefined;
1783
+ };
1784
+ required: string[];
1785
+ };
1786
+ } | {
1787
+ name: string;
1788
+ description: string;
1789
+ inputSchema: {
1790
+ type: string;
1791
+ properties: {
1792
+ objectSlug: {
1793
+ type: string;
1794
+ description: string;
1795
+ };
1796
+ objectId: {
1797
+ type: string;
1798
+ description: string;
1799
+ };
1800
+ records: {
1801
+ type: string;
1802
+ items: {
1803
+ type: string;
1804
+ properties?: undefined;
1805
+ required?: undefined;
1806
+ };
1807
+ description: string;
1808
+ };
1809
+ attributes?: undefined;
1810
+ recordId?: undefined;
1811
+ page?: undefined;
1812
+ pageSize?: undefined;
1813
+ query?: undefined;
1814
+ sort?: undefined;
1815
+ direction?: undefined;
1816
+ };
1817
+ required: string[];
1818
+ };
1819
+ } | {
1820
+ name: string;
1821
+ description: string;
1822
+ inputSchema: {
1823
+ type: string;
1824
+ properties: {
1825
+ objectSlug: {
1826
+ type: string;
1827
+ description: string;
1828
+ };
1829
+ objectId: {
1830
+ type: string;
1831
+ description: string;
1832
+ };
1833
+ records: {
1834
+ type: string;
1835
+ items: {
1836
+ type: string;
1837
+ properties: {
1838
+ id: {
1839
+ type: string;
1840
+ description: string;
1841
+ };
1842
+ attributes: {
1843
+ type: string;
1844
+ description: string;
1845
+ };
1846
+ };
1847
+ required: string[];
1848
+ };
1849
+ description: string;
1850
+ };
1851
+ attributes?: undefined;
1852
+ recordId?: undefined;
1853
+ page?: undefined;
1854
+ pageSize?: undefined;
1855
+ query?: undefined;
1856
+ sort?: undefined;
1857
+ direction?: undefined;
1858
+ };
1859
+ required: string[];
1860
+ };
1861
+ })[];
1862
+ };
1863
+ /**
1864
+ * Find the tool config for a given tool name
1865
+ *
1866
+ * @param toolName - The name of the tool
1867
+ * @returns Tool configuration or undefined if not found
1868
+ */
1869
+ export declare function findToolConfig(toolName: string): {
1870
+ resourceType: ResourceType;
1871
+ toolConfig: ToolConfig;
1872
+ toolType: string;
1873
+ } | undefined;
1874
+ //# sourceMappingURL=registry.d.ts.map