@rnsk/toolkits 0.0.10 → 0.0.12

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 (730) hide show
  1. package/README.md +23 -3
  2. package/dist/index.d.ts +21 -1
  3. package/dist/index.js +41 -1
  4. package/dist/toolkits/accuweather/icon.d.ts +5 -0
  5. package/dist/toolkits/accuweather/icon.js +6 -0
  6. package/dist/toolkits/accuweather/manifest.d.ts +3 -0
  7. package/dist/toolkits/accuweather/manifest.js +35 -0
  8. package/dist/toolkits/accuweather/tools/alerts-alarms.d.ts +13 -0
  9. package/dist/toolkits/accuweather/tools/alerts-alarms.js +25 -0
  10. package/dist/toolkits/accuweather/tools/client.d.ts +17 -0
  11. package/dist/toolkits/accuweather/tools/client.js +50 -0
  12. package/dist/toolkits/accuweather/tools/current-conditions.d.ts +21 -0
  13. package/dist/toolkits/accuweather/tools/current-conditions.js +46 -0
  14. package/dist/toolkits/accuweather/tools/forecasts.d.ts +17 -0
  15. package/dist/toolkits/accuweather/tools/forecasts.js +41 -0
  16. package/dist/toolkits/accuweather/tools/imagery.d.ts +7 -0
  17. package/dist/toolkits/accuweather/tools/imagery.js +21 -0
  18. package/dist/toolkits/accuweather/tools/index.d.ts +21 -0
  19. package/dist/toolkits/accuweather/tools/index.js +60 -0
  20. package/dist/toolkits/accuweather/tools/indices.d.ts +29 -0
  21. package/dist/toolkits/accuweather/tools/indices.js +66 -0
  22. package/dist/toolkits/accuweather/tools/lightning.d.ts +11 -0
  23. package/dist/toolkits/accuweather/tools/lightning.js +35 -0
  24. package/dist/toolkits/accuweather/tools/locations.d.ts +101 -0
  25. package/dist/toolkits/accuweather/tools/locations.js +280 -0
  26. package/dist/toolkits/accuweather/tools/minutecast.d.ts +11 -0
  27. package/dist/toolkits/accuweather/tools/minutecast.js +28 -0
  28. package/dist/toolkits/accuweather/tools/translations.d.ts +20 -0
  29. package/dist/toolkits/accuweather/tools/translations.js +49 -0
  30. package/dist/toolkits/accuweather/tools/tropical.d.ts +49 -0
  31. package/dist/toolkits/accuweather/tools/tropical.js +108 -0
  32. package/dist/toolkits/aws/tools/cloudwatch/filter-log-events.d.ts +2 -2
  33. package/dist/toolkits/aws/tools/cloudwatch/get-metric-data.d.ts +2 -2
  34. package/dist/toolkits/aws/tools/index.d.ts +4 -4
  35. package/dist/toolkits/bitbucket/tools/commits.d.ts +3 -3
  36. package/dist/toolkits/bitbucket/tools/index.d.ts +9 -9
  37. package/dist/toolkits/bitbucket/tools/pull-requests.d.ts +1 -1
  38. package/dist/toolkits/bitbucket/tools/reports.d.ts +5 -5
  39. package/dist/toolkits/bitbucket/tools/repositories.d.ts +1 -1
  40. package/dist/toolkits/cloudflare/tools/create-dns-record.d.ts +2 -2
  41. package/dist/toolkits/cloudflare/tools/create-list.d.ts +1 -1
  42. package/dist/toolkits/cloudflare/tools/create-zone.d.ts +2 -2
  43. package/dist/toolkits/cloudflare/tools/index.d.ts +13 -13
  44. package/dist/toolkits/cloudflare/tools/list-accounts.d.ts +1 -1
  45. package/dist/toolkits/cloudflare/tools/list-dns-records.d.ts +1 -1
  46. package/dist/toolkits/cloudflare/tools/list-pools.d.ts +1 -1
  47. package/dist/toolkits/cloudflare/tools/list-tunnels.d.ts +1 -1
  48. package/dist/toolkits/cloudflare/tools/list-zones.d.ts +2 -2
  49. package/dist/toolkits/cloudflare/tools/update-dns-record.d.ts +1 -1
  50. package/dist/toolkits/cloudflare/tools/update-zone.d.ts +1 -1
  51. package/dist/toolkits/convex/icon.d.ts +5 -0
  52. package/dist/toolkits/convex/icon.js +10 -0
  53. package/dist/toolkits/convex/manifest.d.ts +3 -0
  54. package/dist/toolkits/convex/manifest.js +33 -0
  55. package/dist/toolkits/convex/tools/client.d.ts +28 -0
  56. package/dist/toolkits/convex/tools/client.js +85 -0
  57. package/dist/toolkits/convex/tools/deploy-keys.d.ts +10 -0
  58. package/dist/toolkits/convex/tools/deploy-keys.js +46 -0
  59. package/dist/toolkits/convex/tools/deployments.d.ts +35 -0
  60. package/dist/toolkits/convex/tools/deployments.js +126 -0
  61. package/dist/toolkits/convex/tools/domains.d.ts +7 -0
  62. package/dist/toolkits/convex/tools/domains.js +29 -0
  63. package/dist/toolkits/convex/tools/functions.d.ts +14 -0
  64. package/dist/toolkits/convex/tools/functions.js +49 -0
  65. package/dist/toolkits/convex/tools/index.d.ts +176 -0
  66. package/dist/toolkits/convex/tools/index.js +145 -0
  67. package/dist/toolkits/convex/tools/logging.d.ts +5 -0
  68. package/dist/toolkits/convex/tools/logging.js +25 -0
  69. package/dist/toolkits/convex/tools/projects.d.ts +31 -0
  70. package/dist/toolkits/convex/tools/projects.js +111 -0
  71. package/dist/toolkits/convex/tools/teams.d.ts +12 -0
  72. package/dist/toolkits/convex/tools/teams.js +62 -0
  73. package/dist/toolkits/datadog/icon.d.ts +5 -0
  74. package/dist/toolkits/datadog/icon.js +6 -0
  75. package/dist/toolkits/datadog/manifest.d.ts +3 -0
  76. package/dist/toolkits/datadog/manifest.js +44 -0
  77. package/dist/toolkits/datadog/tools/api-keys.d.ts +21 -0
  78. package/dist/toolkits/datadog/tools/api-keys.js +42 -0
  79. package/dist/toolkits/datadog/tools/apm.d.ts +51 -0
  80. package/dist/toolkits/datadog/tools/apm.js +106 -0
  81. package/dist/toolkits/datadog/tools/client.d.ts +19 -0
  82. package/dist/toolkits/datadog/tools/client.js +81 -0
  83. package/dist/toolkits/datadog/tools/dashboards.d.ts +93 -0
  84. package/dist/toolkits/datadog/tools/dashboards.js +127 -0
  85. package/dist/toolkits/datadog/tools/events.d.ts +35 -0
  86. package/dist/toolkits/datadog/tools/events.js +56 -0
  87. package/dist/toolkits/datadog/tools/hosts.d.ts +49 -0
  88. package/dist/toolkits/datadog/tools/hosts.js +87 -0
  89. package/dist/toolkits/datadog/tools/incidents.d.ts +18 -0
  90. package/dist/toolkits/datadog/tools/incidents.js +34 -0
  91. package/dist/toolkits/datadog/tools/index.d.ts +999 -0
  92. package/dist/toolkits/datadog/tools/index.js +450 -0
  93. package/dist/toolkits/datadog/tools/integrations.d.ts +32 -0
  94. package/dist/toolkits/datadog/tools/integrations.js +47 -0
  95. package/dist/toolkits/datadog/tools/logs.d.ts +39 -0
  96. package/dist/toolkits/datadog/tools/logs.js +121 -0
  97. package/dist/toolkits/datadog/tools/metrics.d.ts +27 -0
  98. package/dist/toolkits/datadog/tools/metrics.js +83 -0
  99. package/dist/toolkits/datadog/tools/monitors.d.ts +95 -0
  100. package/dist/toolkits/datadog/tools/monitors.js +190 -0
  101. package/dist/toolkits/datadog/tools/oncall-notifications.d.ts +61 -0
  102. package/dist/toolkits/datadog/tools/oncall-notifications.js +155 -0
  103. package/dist/toolkits/datadog/tools/oncall-policies.d.ts +28 -0
  104. package/dist/toolkits/datadog/tools/oncall-policies.js +72 -0
  105. package/dist/toolkits/datadog/tools/oncall-schedules.d.ts +31 -0
  106. package/dist/toolkits/datadog/tools/oncall-schedules.js +87 -0
  107. package/dist/toolkits/datadog/tools/oncall-teams.d.ts +14 -0
  108. package/dist/toolkits/datadog/tools/oncall-teams.js +54 -0
  109. package/dist/toolkits/datadog/tools/slos.d.ts +43 -0
  110. package/dist/toolkits/datadog/tools/slos.js +62 -0
  111. package/dist/toolkits/datadog/tools/synthetics.d.ts +58 -0
  112. package/dist/toolkits/datadog/tools/synthetics.js +90 -0
  113. package/dist/toolkits/datadog/tools/usage.d.ts +7 -0
  114. package/dist/toolkits/datadog/tools/usage.js +25 -0
  115. package/dist/toolkits/datadog/tools/users.d.ts +35 -0
  116. package/dist/toolkits/datadog/tools/users.js +66 -0
  117. package/dist/toolkits/dev-to/icon.d.ts +5 -0
  118. package/dist/toolkits/dev-to/icon.js +10 -0
  119. package/dist/toolkits/dev-to/manifest.d.ts +3 -0
  120. package/dist/toolkits/dev-to/manifest.js +34 -0
  121. package/dist/toolkits/dev-to/tools/articles.d.ts +78 -0
  122. package/dist/toolkits/dev-to/tools/articles.js +262 -0
  123. package/dist/toolkits/dev-to/tools/client.d.ts +25 -0
  124. package/dist/toolkits/dev-to/tools/client.js +65 -0
  125. package/dist/toolkits/dev-to/tools/community.d.ts +61 -0
  126. package/dist/toolkits/dev-to/tools/community.js +244 -0
  127. package/dist/toolkits/dev-to/tools/index.d.ts +202 -0
  128. package/dist/toolkits/dev-to/tools/index.js +37 -0
  129. package/dist/toolkits/dev-to/tools/listings.d.ts +26 -0
  130. package/dist/toolkits/dev-to/tools/listings.js +92 -0
  131. package/dist/toolkits/discord/tools/applications.d.ts +6 -6
  132. package/dist/toolkits/discord/tools/index.d.ts +6 -6
  133. package/dist/toolkits/figma/tools/create-dev-resources.d.ts +1 -1
  134. package/dist/toolkits/figma/tools/create-modify-delete-variables.d.ts +1 -1
  135. package/dist/toolkits/figma/tools/get-activity-logs.d.ts +2 -2
  136. package/dist/toolkits/figma/tools/get-file-json.d.ts +1 -1
  137. package/dist/toolkits/figma/tools/get-file-nodes.d.ts +1 -1
  138. package/dist/toolkits/figma/tools/get-team-component-sets.d.ts +1 -1
  139. package/dist/toolkits/figma/tools/get-team-components.d.ts +1 -1
  140. package/dist/toolkits/figma/tools/get-team-styles.d.ts +1 -1
  141. package/dist/toolkits/figma/tools/get-versions-of-a-file.d.ts +1 -1
  142. package/dist/toolkits/figma/tools/index.d.ts +10 -10
  143. package/dist/toolkits/figma/tools/render-images-of-file-nodes.d.ts +1 -1
  144. package/dist/toolkits/figma/tools/update-dev-resources.d.ts +1 -1
  145. package/dist/toolkits/github/tools/Checks/create-check-run.d.ts +1 -1
  146. package/dist/toolkits/github/tools/Collaborators/add-collaborator.d.ts +1 -1
  147. package/dist/toolkits/github/tools/Collaborators/check-collaborator.d.ts +1 -1
  148. package/dist/toolkits/github/tools/Collaborators/remove-collaborator.d.ts +1 -1
  149. package/dist/toolkits/github/tools/Dependabot/list-alerts.d.ts +2 -2
  150. package/dist/toolkits/github/tools/Organizations/list-org-repositories.d.ts +1 -1
  151. package/dist/toolkits/github/tools/Organizations/update-organization.d.ts +1 -1
  152. package/dist/toolkits/github/tools/Projects/update-project.d.ts +1 -1
  153. package/dist/toolkits/github/tools/Releases/create-release.d.ts +1 -1
  154. package/dist/toolkits/github/tools/Releases/update-release.d.ts +1 -1
  155. package/dist/toolkits/github/tools/SecurityAdvisories/create-repository-advisory.d.ts +2 -2
  156. package/dist/toolkits/github/tools/SecurityAdvisories/get-repository-advisory.d.ts +1 -1
  157. package/dist/toolkits/github/tools/SecurityAdvisories/list-global-advisories.d.ts +1 -1
  158. package/dist/toolkits/github/tools/SecurityAdvisories/list-repository-advisories.d.ts +1 -1
  159. package/dist/toolkits/github/tools/Teams/update-team.d.ts +1 -1
  160. package/dist/toolkits/github/tools/Users/follow-user.d.ts +1 -1
  161. package/dist/toolkits/github/tools/Users/update-authenticated-user.d.ts +1 -1
  162. package/dist/toolkits/github/tools/Webhooks/create-repo-webhook.d.ts +1 -1
  163. package/dist/toolkits/github/tools/Workflows/list-workflows.d.ts +1 -1
  164. package/dist/toolkits/github/tools/index.d.ts +21 -21
  165. package/dist/toolkits/gitlab/tools/index.d.ts +2 -2
  166. package/dist/toolkits/gitlab/tools/pipelines.d.ts +1 -1
  167. package/dist/toolkits/gitlab/tools/projects.d.ts +1 -1
  168. package/dist/toolkits/gmail/manifest.js +204 -1
  169. package/dist/toolkits/gmail/tools/create-label.d.ts +2 -2
  170. package/dist/toolkits/gmail/tools/index.d.ts +5 -0
  171. package/dist/toolkits/gmail/tools/index.js +5 -0
  172. package/dist/toolkits/gmail/tools/labels-threads.d.ts +47 -0
  173. package/dist/toolkits/gmail/tools/labels-threads.js +110 -0
  174. package/dist/toolkits/gmail/tools/list-drafts.d.ts +1 -1
  175. package/dist/toolkits/gmail/tools/list-threads.d.ts +1 -1
  176. package/dist/toolkits/gmail/tools/mailbox.d.ts +46 -0
  177. package/dist/toolkits/gmail/tools/mailbox.js +142 -0
  178. package/dist/toolkits/gmail/tools/messages-extra.d.ts +34 -0
  179. package/dist/toolkits/gmail/tools/messages-extra.js +176 -0
  180. package/dist/toolkits/gmail/tools/people-extra.d.ts +18 -0
  181. package/dist/toolkits/gmail/tools/people-extra.js +67 -0
  182. package/dist/toolkits/gmail/tools/settings.d.ts +100 -0
  183. package/dist/toolkits/gmail/tools/settings.js +210 -0
  184. package/dist/toolkits/google-analytics/tools/admin.d.ts +3 -3
  185. package/dist/toolkits/google-analytics/tools/custom-definitions.d.ts +2 -2
  186. package/dist/toolkits/google-analytics/tools/reports.d.ts +9 -9
  187. package/dist/toolkits/google-classroom/tools/announcement-addons.d.ts +4 -4
  188. package/dist/toolkits/google-classroom/tools/coursework-addons.d.ts +2 -2
  189. package/dist/toolkits/google-classroom/tools/coursework.d.ts +1 -1
  190. package/dist/toolkits/google-classroom/tools/index.d.ts +14 -14
  191. package/dist/toolkits/google-classroom/tools/invitations.d.ts +2 -2
  192. package/dist/toolkits/google-classroom/tools/materials-addons.d.ts +2 -2
  193. package/dist/toolkits/google-classroom/tools/misc.d.ts +1 -1
  194. package/dist/toolkits/google-classroom/tools/posts-addons.d.ts +1 -1
  195. package/dist/toolkits/google-classroom/tools/roster.d.ts +5 -5
  196. package/dist/toolkits/google-contacts/tools/contacts.d.ts +5 -5
  197. package/dist/toolkits/google-contacts/tools/directory.d.ts +3 -3
  198. package/dist/toolkits/google-contacts/tools/groups.d.ts +1 -1
  199. package/dist/toolkits/google-contacts/tools/index.d.ts +9 -9
  200. package/dist/toolkits/google-drive/tools/index.d.ts +3 -3
  201. package/dist/toolkits/google-drive/tools/search-files.d.ts +1 -1
  202. package/dist/toolkits/google-drive/tools/upload-file.d.ts +2 -2
  203. package/dist/toolkits/google-maps/tools/index.d.ts +4 -4
  204. package/dist/toolkits/google-maps/tools/places.d.ts +4 -4
  205. package/dist/toolkits/google-search-console/tools/index.d.ts +2 -2
  206. package/dist/toolkits/google-search-console/tools/search-analytics-query.d.ts +2 -2
  207. package/dist/toolkits/google-sheets/tools/index.d.ts +1 -1
  208. package/dist/toolkits/google-sheets/tools/list-spreadsheets.d.ts +1 -1
  209. package/dist/toolkits/google-tasks/tools/batch-execute.d.ts +1 -1
  210. package/dist/toolkits/google-tasks/tools/index.d.ts +2 -2
  211. package/dist/toolkits/google-tasks/tools/update-task-full.d.ts +1 -1
  212. package/dist/toolkits/groww/tools/index.d.ts +8 -8
  213. package/dist/toolkits/groww/tools/margin.d.ts +1 -1
  214. package/dist/toolkits/groww/tools/orders.d.ts +2 -2
  215. package/dist/toolkits/groww/tools/smart-orders.d.ts +5 -5
  216. package/dist/toolkits/gumroad/icon.d.ts +5 -0
  217. package/dist/toolkits/gumroad/icon.js +6 -0
  218. package/dist/toolkits/gumroad/manifest.d.ts +3 -0
  219. package/dist/toolkits/gumroad/manifest.js +41 -0
  220. package/dist/toolkits/gumroad/tools/client.d.ts +16 -0
  221. package/dist/toolkits/gumroad/tools/client.js +53 -0
  222. package/dist/toolkits/gumroad/tools/index.d.ts +12 -0
  223. package/dist/toolkits/gumroad/tools/index.js +17 -0
  224. package/dist/toolkits/gumroad/tools/sales.d.ts +34 -0
  225. package/dist/toolkits/gumroad/tools/sales.js +68 -0
  226. package/dist/toolkits/hostinger/tools/hosting.d.ts +2 -2
  227. package/dist/toolkits/hostinger/tools/index.d.ts +4 -4
  228. package/dist/toolkits/hostinger/tools/whois.d.ts +2 -2
  229. package/dist/toolkits/hugging-face/tools/datasets-viewer.d.ts +1 -1
  230. package/dist/toolkits/hugging-face/tools/datasets.d.ts +2 -2
  231. package/dist/toolkits/hugging-face/tools/index.d.ts +3 -3
  232. package/dist/toolkits/hugging-face/tools/models.d.ts +1 -1
  233. package/dist/toolkits/hugging-face/tools/papers.d.ts +1 -1
  234. package/dist/toolkits/hugging-face/tools/repos.d.ts +1 -1
  235. package/dist/toolkits/hugging-face/tools/spaces.d.ts +1 -1
  236. package/dist/toolkits/jira/tools/boards.d.ts +1 -1
  237. package/dist/toolkits/jira/tools/index.d.ts +8 -8
  238. package/dist/toolkits/jira/tools/meta.d.ts +3 -3
  239. package/dist/toolkits/jira/tools/projects.d.ts +1 -1
  240. package/dist/toolkits/jira/tools/users.d.ts +4 -4
  241. package/dist/toolkits/kaggle/icon.d.ts +5 -0
  242. package/dist/toolkits/kaggle/icon.js +6 -0
  243. package/dist/toolkits/kaggle/manifest.d.ts +3 -0
  244. package/dist/toolkits/kaggle/manifest.js +32 -0
  245. package/dist/toolkits/kaggle/tools/client.d.ts +10 -0
  246. package/dist/toolkits/kaggle/tools/client.js +94 -0
  247. package/dist/toolkits/kaggle/tools/competitions.d.ts +48 -0
  248. package/dist/toolkits/kaggle/tools/competitions.js +109 -0
  249. package/dist/toolkits/kaggle/tools/config.d.ts +110 -0
  250. package/dist/toolkits/kaggle/tools/config.js +256 -0
  251. package/dist/toolkits/kaggle/tools/datasets.d.ts +88 -0
  252. package/dist/toolkits/kaggle/tools/datasets.js +161 -0
  253. package/dist/toolkits/kaggle/tools/index.d.ts +482 -0
  254. package/dist/toolkits/kaggle/tools/index.js +53 -0
  255. package/dist/toolkits/kaggle/tools/kernels.d.ts +62 -0
  256. package/dist/toolkits/kaggle/tools/kernels.js +121 -0
  257. package/dist/toolkits/kaggle/tools/model_instance_files.d.ts +11 -0
  258. package/dist/toolkits/kaggle/tools/model_instance_files.js +23 -0
  259. package/dist/toolkits/kaggle/tools/model_instances.d.ts +8 -0
  260. package/dist/toolkits/kaggle/tools/model_instances.js +20 -0
  261. package/dist/toolkits/kaggle/tools/models.d.ts +14 -0
  262. package/dist/toolkits/kaggle/tools/models.js +33 -0
  263. package/dist/toolkits/nasa/icon.d.ts +5 -0
  264. package/dist/toolkits/nasa/icon.js +56 -0
  265. package/dist/toolkits/nasa/manifest.d.ts +3 -0
  266. package/dist/toolkits/nasa/manifest.js +49 -0
  267. package/dist/toolkits/nasa/tools/agage.d.ts +60 -0
  268. package/dist/toolkits/nasa/tools/agage.js +176 -0
  269. package/dist/toolkits/nasa/tools/client.d.ts +95 -0
  270. package/dist/toolkits/nasa/tools/client.js +337 -0
  271. package/dist/toolkits/nasa/tools/cmr.d.ts +268 -0
  272. package/dist/toolkits/nasa/tools/cmr.js +984 -0
  273. package/dist/toolkits/nasa/tools/donki.d.ts +63 -0
  274. package/dist/toolkits/nasa/tools/donki.js +301 -0
  275. package/dist/toolkits/nasa/tools/eonet.d.ts +74 -0
  276. package/dist/toolkits/nasa/tools/eonet.js +279 -0
  277. package/dist/toolkits/nasa/tools/icesat2.d.ts +25 -0
  278. package/dist/toolkits/nasa/tools/icesat2.js +97 -0
  279. package/dist/toolkits/nasa/tools/imagery.d.ts +36 -0
  280. package/dist/toolkits/nasa/tools/imagery.js +138 -0
  281. package/dist/toolkits/nasa/tools/index.d.ts +1063 -0
  282. package/dist/toolkits/nasa/tools/index.js +865 -0
  283. package/dist/toolkits/nasa/tools/neo.d.ts +15 -0
  284. package/dist/toolkits/nasa/tools/neo.js +75 -0
  285. package/dist/toolkits/nasa/tools/ntrs.d.ts +152 -0
  286. package/dist/toolkits/nasa/tools/ntrs.js +292 -0
  287. package/dist/toolkits/nasa/tools/osdr.d.ts +72 -0
  288. package/dist/toolkits/nasa/tools/osdr.js +290 -0
  289. package/dist/toolkits/nasa/tools/planetary.d.ts +58 -0
  290. package/dist/toolkits/nasa/tools/planetary.js +312 -0
  291. package/dist/toolkits/nasa/tools/power.d.ts +52 -0
  292. package/dist/toolkits/nasa/tools/power.js +213 -0
  293. package/dist/toolkits/nasa/tools/ssc.d.ts +44 -0
  294. package/dist/toolkits/nasa/tools/ssc.js +92 -0
  295. package/dist/toolkits/nasa/tools/tolnet.d.ts +84 -0
  296. package/dist/toolkits/nasa/tools/tolnet.js +254 -0
  297. package/dist/toolkits/neo4j/tools/analytics.d.ts +1 -1
  298. package/dist/toolkits/neo4j/tools/index.d.ts +3 -3
  299. package/dist/toolkits/neo4j/tools/instances.d.ts +2 -2
  300. package/dist/toolkits/neon/tools/auth.d.ts +5 -5
  301. package/dist/toolkits/neon/tools/dataapi.d.ts +1 -1
  302. package/dist/toolkits/neon/tools/index.d.ts +8 -8
  303. package/dist/toolkits/neon/tools/projects.d.ts +2 -2
  304. package/dist/toolkits/new-relic/icon.d.ts +5 -0
  305. package/dist/toolkits/new-relic/icon.js +6 -0
  306. package/dist/toolkits/new-relic/manifest.d.ts +3 -0
  307. package/dist/toolkits/new-relic/manifest.js +41 -0
  308. package/dist/toolkits/new-relic/tools/admin.d.ts +310 -0
  309. package/dist/toolkits/new-relic/tools/admin.js +282 -0
  310. package/dist/toolkits/new-relic/tools/alert-policies.d.ts +74 -0
  311. package/dist/toolkits/new-relic/tools/alert-policies.js +136 -0
  312. package/dist/toolkits/new-relic/tools/apm.d.ts +129 -0
  313. package/dist/toolkits/new-relic/tools/apm.js +228 -0
  314. package/dist/toolkits/new-relic/tools/client.d.ts +62 -0
  315. package/dist/toolkits/new-relic/tools/client.js +167 -0
  316. package/dist/toolkits/new-relic/tools/conditions.d.ts +190 -0
  317. package/dist/toolkits/new-relic/tools/conditions.js +265 -0
  318. package/dist/toolkits/new-relic/tools/config.d.ts +73 -0
  319. package/dist/toolkits/new-relic/tools/config.js +131 -0
  320. package/dist/toolkits/new-relic/tools/dashboards.d.ts +204 -0
  321. package/dist/toolkits/new-relic/tools/dashboards.js +159 -0
  322. package/dist/toolkits/new-relic/tools/entities.d.ts +160 -0
  323. package/dist/toolkits/new-relic/tools/entities.js +218 -0
  324. package/dist/toolkits/new-relic/tools/index.d.ts +23 -0
  325. package/dist/toolkits/new-relic/tools/index.js +179 -0
  326. package/dist/toolkits/new-relic/tools/ingest.d.ts +31 -0
  327. package/dist/toolkits/new-relic/tools/ingest.js +80 -0
  328. package/dist/toolkits/new-relic/tools/notifications.d.ts +186 -0
  329. package/dist/toolkits/new-relic/tools/notifications.js +232 -0
  330. package/dist/toolkits/new-relic/tools/nrql-conditions.d.ts +105 -0
  331. package/dist/toolkits/new-relic/tools/nrql-conditions.js +136 -0
  332. package/dist/toolkits/new-relic/tools/nrql.d.ts +38 -0
  333. package/dist/toolkits/new-relic/tools/nrql.js +99 -0
  334. package/dist/toolkits/new-relic/tools/synthetics.d.ts +176 -0
  335. package/dist/toolkits/new-relic/tools/synthetics.js +246 -0
  336. package/dist/toolkits/notebook-lm/icon.d.ts +5 -0
  337. package/dist/toolkits/notebook-lm/icon.js +6 -0
  338. package/dist/toolkits/notebook-lm/manifest.d.ts +3 -0
  339. package/dist/toolkits/notebook-lm/manifest.js +44 -0
  340. package/dist/toolkits/notebook-lm/tools/add-text-sources.d.ts +36 -0
  341. package/dist/toolkits/notebook-lm/tools/add-text-sources.js +51 -0
  342. package/dist/toolkits/notebook-lm/tools/create-audio-overview.d.ts +47 -0
  343. package/dist/toolkits/notebook-lm/tools/create-audio-overview.js +55 -0
  344. package/dist/toolkits/notebook-lm/tools/create-notebook.d.ts +52 -0
  345. package/dist/toolkits/notebook-lm/tools/create-notebook.js +49 -0
  346. package/dist/toolkits/notebook-lm/tools/delete-audio-overview.d.ts +33 -0
  347. package/dist/toolkits/notebook-lm/tools/delete-audio-overview.js +46 -0
  348. package/dist/toolkits/notebook-lm/tools/delete-notebooks.d.ts +32 -0
  349. package/dist/toolkits/notebook-lm/tools/delete-notebooks.js +46 -0
  350. package/dist/toolkits/notebook-lm/tools/delete-sources.d.ts +33 -0
  351. package/dist/toolkits/notebook-lm/tools/delete-sources.js +47 -0
  352. package/dist/toolkits/notebook-lm/tools/get-notebook.d.ts +52 -0
  353. package/dist/toolkits/notebook-lm/tools/get-notebook.js +45 -0
  354. package/dist/toolkits/notebook-lm/tools/get-source.d.ts +53 -0
  355. package/dist/toolkits/notebook-lm/tools/get-source.js +47 -0
  356. package/dist/toolkits/notebook-lm/tools/index.d.ts +516 -0
  357. package/dist/toolkits/notebook-lm/tools/index.js +93 -0
  358. package/dist/toolkits/notebook-lm/tools/list-recent-notebooks.d.ts +32 -0
  359. package/dist/toolkits/notebook-lm/tools/list-recent-notebooks.js +41 -0
  360. package/dist/toolkits/notebook-lm/tools/share-notebook.d.ts +48 -0
  361. package/dist/toolkits/notebook-lm/tools/share-notebook.js +57 -0
  362. package/dist/toolkits/notebook-lm/tools/upload-source-file.d.ts +40 -0
  363. package/dist/toolkits/notebook-lm/tools/upload-source-file.js +62 -0
  364. package/dist/toolkits/notebook-lm/tools/utils.d.ts +15 -0
  365. package/dist/toolkits/notebook-lm/tools/utils.js +46 -0
  366. package/dist/toolkits/npm/icon.d.ts +5 -0
  367. package/dist/toolkits/npm/icon.js +11 -0
  368. package/dist/toolkits/npm/manifest.d.ts +3 -0
  369. package/dist/toolkits/npm/manifest.js +35 -0
  370. package/dist/toolkits/npm/tools/client.d.ts +19 -0
  371. package/dist/toolkits/npm/tools/client.js +64 -0
  372. package/dist/toolkits/npm/tools/downloads.d.ts +19 -0
  373. package/dist/toolkits/npm/tools/downloads.js +39 -0
  374. package/dist/toolkits/npm/tools/index.d.ts +14 -0
  375. package/dist/toolkits/npm/tools/index.js +24 -0
  376. package/dist/toolkits/npm/tools/registry.d.ts +24 -0
  377. package/dist/toolkits/npm/tools/registry.js +58 -0
  378. package/dist/toolkits/npm/tools/security.d.ts +9 -0
  379. package/dist/toolkits/npm/tools/security.js +29 -0
  380. package/dist/toolkits/postman/icon.d.ts +5 -0
  381. package/dist/toolkits/postman/icon.js +14 -0
  382. package/dist/toolkits/postman/manifest.d.ts +3 -0
  383. package/dist/toolkits/postman/manifest.js +35 -0
  384. package/dist/toolkits/postman/tools/client.d.ts +23 -0
  385. package/dist/toolkits/postman/tools/client.js +59 -0
  386. package/dist/toolkits/postman/tools/collections.d.ts +93 -0
  387. package/dist/toolkits/postman/tools/collections.js +358 -0
  388. package/dist/toolkits/postman/tools/comments.d.ts +113 -0
  389. package/dist/toolkits/postman/tools/comments.js +387 -0
  390. package/dist/toolkits/postman/tools/designs_and_apis.d.ts +106 -0
  391. package/dist/toolkits/postman/tools/designs_and_apis.js +385 -0
  392. package/dist/toolkits/postman/tools/environments.d.ts +63 -0
  393. package/dist/toolkits/postman/tools/environments.js +208 -0
  394. package/dist/toolkits/postman/tools/index.d.ts +1204 -0
  395. package/dist/toolkits/postman/tools/index.js +143 -0
  396. package/dist/toolkits/postman/tools/items.d.ts +90 -0
  397. package/dist/toolkits/postman/tools/items.js +286 -0
  398. package/dist/toolkits/postman/tools/mocks_and_tests.d.ts +100 -0
  399. package/dist/toolkits/postman/tools/mocks_and_tests.js +363 -0
  400. package/dist/toolkits/postman/tools/pull_requests.d.ts +26 -0
  401. package/dist/toolkits/postman/tools/pull_requests.js +108 -0
  402. package/dist/toolkits/postman/tools/scim_users_teams.d.ts +31 -0
  403. package/dist/toolkits/postman/tools/scim_users_teams.js +156 -0
  404. package/dist/toolkits/postman/tools/specs.d.ts +100 -0
  405. package/dist/toolkits/postman/tools/specs.js +380 -0
  406. package/dist/toolkits/postman/tools/webhooks.d.ts +8 -0
  407. package/dist/toolkits/postman/tools/webhooks.js +40 -0
  408. package/dist/toolkits/postman/tools/workspaces.d.ts +50 -0
  409. package/dist/toolkits/postman/tools/workspaces.js +198 -0
  410. package/dist/toolkits/prometheus/icon.d.ts +5 -0
  411. package/dist/toolkits/prometheus/icon.js +52 -0
  412. package/dist/toolkits/prometheus/manifest.d.ts +3 -0
  413. package/dist/toolkits/prometheus/manifest.js +32 -0
  414. package/dist/toolkits/prometheus/tools/admin.d.ts +19 -0
  415. package/dist/toolkits/prometheus/tools/admin.js +90 -0
  416. package/dist/toolkits/prometheus/tools/client.d.ts +22 -0
  417. package/dist/toolkits/prometheus/tools/client.js +91 -0
  418. package/dist/toolkits/prometheus/tools/discovery.d.ts +82 -0
  419. package/dist/toolkits/prometheus/tools/discovery.js +182 -0
  420. package/dist/toolkits/prometheus/tools/index.d.ts +16 -0
  421. package/dist/toolkits/prometheus/tools/index.js +51 -0
  422. package/dist/toolkits/prometheus/tools/query.d.ts +33 -0
  423. package/dist/toolkits/prometheus/tools/query.js +101 -0
  424. package/dist/toolkits/prometheus/tools/status.d.ts +66 -0
  425. package/dist/toolkits/prometheus/tools/status.js +248 -0
  426. package/dist/toolkits/prometheus/tools/targets.d.ts +31 -0
  427. package/dist/toolkits/prometheus/tools/targets.js +117 -0
  428. package/dist/toolkits/razorpay/icon.d.ts +5 -0
  429. package/dist/toolkits/razorpay/icon.js +33 -0
  430. package/dist/toolkits/razorpay/manifest.d.ts +3 -0
  431. package/dist/toolkits/razorpay/manifest.js +32 -0
  432. package/dist/toolkits/razorpay/tools/client.d.ts +24 -0
  433. package/dist/toolkits/razorpay/tools/client.js +73 -0
  434. package/dist/toolkits/razorpay/tools/customers.d.ts +29 -0
  435. package/dist/toolkits/razorpay/tools/customers.js +53 -0
  436. package/dist/toolkits/razorpay/tools/index.d.ts +16 -0
  437. package/dist/toolkits/razorpay/tools/index.js +56 -0
  438. package/dist/toolkits/razorpay/tools/invoices.d.ts +169 -0
  439. package/dist/toolkits/razorpay/tools/invoices.js +143 -0
  440. package/dist/toolkits/razorpay/tools/items-links.d.ts +98 -0
  441. package/dist/toolkits/razorpay/tools/items-links.js +131 -0
  442. package/dist/toolkits/razorpay/tools/orders.d.ts +63 -0
  443. package/dist/toolkits/razorpay/tools/orders.js +99 -0
  444. package/dist/toolkits/razorpay/tools/payouts.d.ts +58 -0
  445. package/dist/toolkits/razorpay/tools/payouts.js +91 -0
  446. package/dist/toolkits/servicenow/icon.d.ts +5 -0
  447. package/dist/toolkits/servicenow/icon.js +6 -0
  448. package/dist/toolkits/servicenow/manifest.d.ts +3 -0
  449. package/dist/toolkits/servicenow/manifest.js +33 -0
  450. package/dist/toolkits/servicenow/tools/attachments.d.ts +35 -0
  451. package/dist/toolkits/servicenow/tools/attachments.js +120 -0
  452. package/dist/toolkits/servicenow/tools/catalog.d.ts +122 -0
  453. package/dist/toolkits/servicenow/tools/catalog.js +333 -0
  454. package/dist/toolkits/servicenow/tools/changes.d.ts +374 -0
  455. package/dist/toolkits/servicenow/tools/changes.js +609 -0
  456. package/dist/toolkits/servicenow/tools/cicd.d.ts +109 -0
  457. package/dist/toolkits/servicenow/tools/cicd.js +316 -0
  458. package/dist/toolkits/servicenow/tools/client.d.ts +42 -0
  459. package/dist/toolkits/servicenow/tools/client.js +168 -0
  460. package/dist/toolkits/servicenow/tools/cmdb.d.ts +224 -0
  461. package/dist/toolkits/servicenow/tools/cmdb.js +460 -0
  462. package/dist/toolkits/servicenow/tools/imports.d.ts +13 -0
  463. package/dist/toolkits/servicenow/tools/imports.js +36 -0
  464. package/dist/toolkits/servicenow/tools/incidents.d.ts +94 -0
  465. package/dist/toolkits/servicenow/tools/incidents.js +226 -0
  466. package/dist/toolkits/servicenow/tools/index.d.ts +1566 -0
  467. package/dist/toolkits/servicenow/tools/index.js +169 -0
  468. package/dist/toolkits/servicenow/tools/platform.d.ts +124 -0
  469. package/dist/toolkits/servicenow/tools/platform.js +298 -0
  470. package/dist/toolkits/servicenow/tools/records.d.ts +73 -0
  471. package/dist/toolkits/servicenow/tools/records.js +185 -0
  472. package/dist/toolkits/servicenow/tools/sdon.d.ts +48 -0
  473. package/dist/toolkits/servicenow/tools/sdon.js +81 -0
  474. package/dist/toolkits/slack/tools/admin-conversations.d.ts +2 -2
  475. package/dist/toolkits/slack/tools/admin-users.d.ts +1 -1
  476. package/dist/toolkits/slack/tools/emoji.d.ts +1 -1
  477. package/dist/toolkits/slack/tools/messages.d.ts +2 -2
  478. package/dist/toolkits/slack/tools/reactions-stars-pins.d.ts +2 -2
  479. package/dist/toolkits/slack/tools/search.d.ts +3 -3
  480. package/dist/toolkits/slack/tools/slack-lists.d.ts +3 -3
  481. package/dist/toolkits/slack/tools/users.d.ts +1 -1
  482. package/dist/toolkits/snowflake/icon.d.ts +5 -0
  483. package/dist/toolkits/snowflake/icon.js +6 -0
  484. package/dist/toolkits/snowflake/manifest.d.ts +3 -0
  485. package/dist/toolkits/snowflake/manifest.js +32 -0
  486. package/dist/toolkits/snowflake/tools/catalog.d.ts +56 -0
  487. package/dist/toolkits/snowflake/tools/catalog.js +123 -0
  488. package/dist/toolkits/snowflake/tools/client.d.ts +53 -0
  489. package/dist/toolkits/snowflake/tools/client.js +145 -0
  490. package/dist/toolkits/snowflake/tools/index.d.ts +14 -0
  491. package/dist/toolkits/snowflake/tools/index.js +28 -0
  492. package/dist/toolkits/snowflake/tools/statements.d.ts +27 -0
  493. package/dist/toolkits/snowflake/tools/statements.js +84 -0
  494. package/dist/toolkits/snowflake/tools/status.d.ts +22 -0
  495. package/dist/toolkits/snowflake/tools/status.js +54 -0
  496. package/dist/toolkits/telegram/icon.d.ts +5 -0
  497. package/dist/toolkits/telegram/icon.js +6 -0
  498. package/dist/toolkits/telegram/manifest.d.ts +3 -0
  499. package/dist/toolkits/telegram/manifest.js +34 -0
  500. package/dist/toolkits/telegram/tools/bot.d.ts +13 -0
  501. package/dist/toolkits/telegram/tools/bot.js +23 -0
  502. package/dist/toolkits/telegram/tools/chats.d.ts +22 -0
  503. package/dist/toolkits/telegram/tools/chats.js +46 -0
  504. package/dist/toolkits/telegram/tools/client.d.ts +12 -0
  505. package/dist/toolkits/telegram/tools/client.js +46 -0
  506. package/dist/toolkits/telegram/tools/index.d.ts +15 -0
  507. package/dist/toolkits/telegram/tools/index.js +31 -0
  508. package/dist/toolkits/telegram/tools/messages.d.ts +86 -0
  509. package/dist/toolkits/telegram/tools/messages.js +134 -0
  510. package/dist/toolkits/telegram/tools/updates.d.ts +23 -0
  511. package/dist/toolkits/telegram/tools/updates.js +54 -0
  512. package/dist/toolkits/vercel/icon.d.ts +5 -0
  513. package/dist/toolkits/vercel/icon.js +6 -0
  514. package/dist/toolkits/vercel/manifest.d.ts +3 -0
  515. package/dist/toolkits/vercel/manifest.js +35 -0
  516. package/dist/toolkits/vercel/tools/aliases.d.ts +47 -0
  517. package/dist/toolkits/vercel/tools/aliases.js +141 -0
  518. package/dist/toolkits/vercel/tools/auth.d.ts +23 -0
  519. package/dist/toolkits/vercel/tools/auth.js +117 -0
  520. package/dist/toolkits/vercel/tools/cache-artifacts.d.ts +57 -0
  521. package/dist/toolkits/vercel/tools/cache-artifacts.js +205 -0
  522. package/dist/toolkits/vercel/tools/certs.d.ts +9 -0
  523. package/dist/toolkits/vercel/tools/certs.js +31 -0
  524. package/dist/toolkits/vercel/tools/client.d.ts +17 -0
  525. package/dist/toolkits/vercel/tools/client.js +53 -0
  526. package/dist/toolkits/vercel/tools/deployments.d.ts +169 -0
  527. package/dist/toolkits/vercel/tools/deployments.js +443 -0
  528. package/dist/toolkits/vercel/tools/domains.d.ts +229 -0
  529. package/dist/toolkits/vercel/tools/domains.js +719 -0
  530. package/dist/toolkits/vercel/tools/edge-config.d.ts +110 -0
  531. package/dist/toolkits/vercel/tools/edge-config.js +402 -0
  532. package/dist/toolkits/vercel/tools/environment-variables.d.ts +137 -0
  533. package/dist/toolkits/vercel/tools/environment-variables.js +411 -0
  534. package/dist/toolkits/vercel/tools/firewall.d.ts +57 -0
  535. package/dist/toolkits/vercel/tools/firewall.js +187 -0
  536. package/dist/toolkits/vercel/tools/index.d.ts +1944 -0
  537. package/dist/toolkits/vercel/tools/index.js +312 -0
  538. package/dist/toolkits/vercel/tools/logs.d.ts +35 -0
  539. package/dist/toolkits/vercel/tools/logs.js +129 -0
  540. package/dist/toolkits/vercel/tools/misc.d.ts +140 -0
  541. package/dist/toolkits/vercel/tools/misc.js +486 -0
  542. package/dist/toolkits/vercel/tools/projects.d.ts +194 -0
  543. package/dist/toolkits/vercel/tools/projects.js +468 -0
  544. package/dist/toolkits/vercel/tools/teams.d.ts +50 -0
  545. package/dist/toolkits/vercel/tools/teams.js +144 -0
  546. package/dist/toolkits/vercel/tools/webhooks.d.ts +27 -0
  547. package/dist/toolkits/vercel/tools/webhooks.js +103 -0
  548. package/dist/toolkits/wise/icon.d.ts +5 -0
  549. package/dist/toolkits/wise/icon.js +15 -0
  550. package/dist/toolkits/wise/manifest.d.ts +3 -0
  551. package/dist/toolkits/wise/manifest.js +30 -0
  552. package/dist/toolkits/wise/tools/create-quote.d.ts +86 -0
  553. package/dist/toolkits/wise/tools/create-quote.js +64 -0
  554. package/dist/toolkits/wise/tools/get-exchange-rate.d.ts +42 -0
  555. package/dist/toolkits/wise/tools/get-exchange-rate.js +44 -0
  556. package/dist/toolkits/wise/tools/get-quote.d.ts +82 -0
  557. package/dist/toolkits/wise/tools/get-quote.js +46 -0
  558. package/dist/toolkits/wise/tools/index.d.ts +475 -0
  559. package/dist/toolkits/wise/tools/index.js +77 -0
  560. package/dist/toolkits/wise/tools/list-activities.d.ts +43 -0
  561. package/dist/toolkits/wise/tools/list-activities.js +49 -0
  562. package/dist/toolkits/wise/tools/list-balances.d.ts +30 -0
  563. package/dist/toolkits/wise/tools/list-balances.js +34 -0
  564. package/dist/toolkits/wise/tools/list-currencies.d.ts +29 -0
  565. package/dist/toolkits/wise/tools/list-currencies.js +31 -0
  566. package/dist/toolkits/wise/tools/list-profiles.d.ts +28 -0
  567. package/dist/toolkits/wise/tools/list-profiles.js +29 -0
  568. package/dist/toolkits/wise/tools/list-recipients.d.ts +43 -0
  569. package/dist/toolkits/wise/tools/list-recipients.js +54 -0
  570. package/dist/toolkits/wise/tools/list-transfers.d.ts +44 -0
  571. package/dist/toolkits/wise/tools/list-transfers.js +52 -0
  572. package/dist/toolkits/wise/tools/utils.d.ts +18 -0
  573. package/dist/toolkits/wise/tools/utils.js +39 -0
  574. package/dist/toolkits/wordpress/icon.d.ts +5 -0
  575. package/dist/toolkits/wordpress/icon.js +6 -0
  576. package/dist/toolkits/wordpress/manifest.d.ts +3 -0
  577. package/dist/toolkits/wordpress/manifest.js +36 -0
  578. package/dist/toolkits/wordpress/tools/create-draft-post.d.ts +47 -0
  579. package/dist/toolkits/wordpress/tools/create-draft-post.js +68 -0
  580. package/dist/toolkits/wordpress/tools/delete-draft-post.d.ts +38 -0
  581. package/dist/toolkits/wordpress/tools/delete-draft-post.js +51 -0
  582. package/dist/toolkits/wordpress/tools/get-post.d.ts +41 -0
  583. package/dist/toolkits/wordpress/tools/get-post.js +48 -0
  584. package/dist/toolkits/wordpress/tools/get-site-overview.d.ts +67 -0
  585. package/dist/toolkits/wordpress/tools/get-site-overview.js +91 -0
  586. package/dist/toolkits/wordpress/tools/index.d.ts +489 -0
  587. package/dist/toolkits/wordpress/tools/index.js +85 -0
  588. package/dist/toolkits/wordpress/tools/list-blogging-prompts.d.ts +48 -0
  589. package/dist/toolkits/wordpress/tools/list-blogging-prompts.js +55 -0
  590. package/dist/toolkits/wordpress/tools/list-cms-resources.d.ts +45 -0
  591. package/dist/toolkits/wordpress/tools/list-cms-resources.js +77 -0
  592. package/dist/toolkits/wordpress/tools/list-content.d.ts +49 -0
  593. package/dist/toolkits/wordpress/tools/list-content.js +71 -0
  594. package/dist/toolkits/wordpress/tools/list-reader-subscriptions.d.ts +24 -0
  595. package/dist/toolkits/wordpress/tools/list-reader-subscriptions.js +39 -0
  596. package/dist/toolkits/wordpress/tools/list-sites.d.ts +26 -0
  597. package/dist/toolkits/wordpress/tools/list-sites.js +69 -0
  598. package/dist/toolkits/wordpress/tools/update-draft-post.d.ts +51 -0
  599. package/dist/toolkits/wordpress/tools/update-draft-post.js +93 -0
  600. package/dist/toolkits/wordpress/tools/utils.d.ts +18 -0
  601. package/dist/toolkits/wordpress/tools/utils.js +33 -0
  602. package/dist/toolkits/youtube/tools/get-channel-activities.d.ts +1 -1
  603. package/dist/toolkits/youtube/tools/index.d.ts +5 -5
  604. package/dist/toolkits/youtube/tools/list-channel-sections.d.ts +1 -1
  605. package/dist/toolkits/youtube/tools/post-comment.d.ts +1 -1
  606. package/dist/toolkits/youtube/tools/subscribe-channel.d.ts +1 -1
  607. package/dist/toolkits/youtube/tools/unsubscribe-channel.d.ts +1 -1
  608. package/dist/toolkits/zoho/icon.d.ts +5 -0
  609. package/dist/toolkits/zoho/icon.js +125 -0
  610. package/dist/toolkits/zoho/manifest.d.ts +3 -0
  611. package/dist/toolkits/zoho/manifest.js +54 -0
  612. package/dist/toolkits/zoho/tools/convert-zoho-lead.d.ts +11 -0
  613. package/dist/toolkits/zoho/tools/convert-zoho-lead.js +47 -0
  614. package/dist/toolkits/zoho/tools/create-contact.d.ts +36 -0
  615. package/dist/toolkits/zoho/tools/create-contact.js +58 -0
  616. package/dist/toolkits/zoho/tools/create-deal.d.ts +17 -0
  617. package/dist/toolkits/zoho/tools/create-deal.js +39 -0
  618. package/dist/toolkits/zoho/tools/create-email-draft.d.ts +7 -0
  619. package/dist/toolkits/zoho/tools/create-email-draft.js +30 -0
  620. package/dist/toolkits/zoho/tools/create-event.d.ts +18 -0
  621. package/dist/toolkits/zoho/tools/create-event.js +40 -0
  622. package/dist/toolkits/zoho/tools/create-lead.d.ts +31 -0
  623. package/dist/toolkits/zoho/tools/create-lead.js +53 -0
  624. package/dist/toolkits/zoho/tools/create-note.d.ts +8 -0
  625. package/dist/toolkits/zoho/tools/create-note.js +31 -0
  626. package/dist/toolkits/zoho/tools/create-zoho-record.d.ts +8 -0
  627. package/dist/toolkits/zoho/tools/create-zoho-record.js +35 -0
  628. package/dist/toolkits/zoho/tools/create-zoho-tag.d.ts +7 -0
  629. package/dist/toolkits/zoho/tools/create-zoho-tag.js +30 -0
  630. package/dist/toolkits/zoho/tools/delete-account.d.ts +6 -0
  631. package/dist/toolkits/zoho/tools/delete-account.js +29 -0
  632. package/dist/toolkits/zoho/tools/delete-contact.d.ts +6 -0
  633. package/dist/toolkits/zoho/tools/delete-contact.js +29 -0
  634. package/dist/toolkits/zoho/tools/delete-deal.d.ts +6 -0
  635. package/dist/toolkits/zoho/tools/delete-deal.js +29 -0
  636. package/dist/toolkits/zoho/tools/get-account.d.ts +6 -0
  637. package/dist/toolkits/zoho/tools/get-account.js +34 -0
  638. package/dist/toolkits/zoho/tools/get-call.d.ts +6 -0
  639. package/dist/toolkits/zoho/tools/get-call.js +34 -0
  640. package/dist/toolkits/zoho/tools/get-contact.d.ts +5 -0
  641. package/dist/toolkits/zoho/tools/get-contact.js +33 -0
  642. package/dist/toolkits/zoho/tools/get-email-drafts.d.ts +6 -0
  643. package/dist/toolkits/zoho/tools/get-email-drafts.js +34 -0
  644. package/dist/toolkits/zoho/tools/get-event.d.ts +5 -0
  645. package/dist/toolkits/zoho/tools/get-event.js +33 -0
  646. package/dist/toolkits/zoho/tools/get-from-addresses.d.ts +4 -0
  647. package/dist/toolkits/zoho/tools/get-from-addresses.js +32 -0
  648. package/dist/toolkits/zoho/tools/get-module-fields.d.ts +8 -0
  649. package/dist/toolkits/zoho/tools/get-module-fields.js +36 -0
  650. package/dist/toolkits/zoho/tools/get-note.d.ts +6 -0
  651. package/dist/toolkits/zoho/tools/get-note.js +34 -0
  652. package/dist/toolkits/zoho/tools/get-record-emails.d.ts +9 -0
  653. package/dist/toolkits/zoho/tools/get-record-emails.js +37 -0
  654. package/dist/toolkits/zoho/tools/get-related-lists.d.ts +6 -0
  655. package/dist/toolkits/zoho/tools/get-related-lists.js +29 -0
  656. package/dist/toolkits/zoho/tools/get-related-records.d.ts +15 -0
  657. package/dist/toolkits/zoho/tools/get-related-records.js +38 -0
  658. package/dist/toolkits/zoho/tools/get-task.d.ts +6 -0
  659. package/dist/toolkits/zoho/tools/get-task.js +34 -0
  660. package/dist/toolkits/zoho/tools/get-user.d.ts +5 -0
  661. package/dist/toolkits/zoho/tools/get-user.js +33 -0
  662. package/dist/toolkits/zoho/tools/get-zoho-records.d.ts +13 -0
  663. package/dist/toolkits/zoho/tools/get-zoho-records.js +59 -0
  664. package/dist/toolkits/zoho/tools/get-zoho-users.d.ts +9 -0
  665. package/dist/toolkits/zoho/tools/get-zoho-users.js +32 -0
  666. package/dist/toolkits/zoho/tools/index.d.ts +789 -0
  667. package/dist/toolkits/zoho/tools/index.js +175 -0
  668. package/dist/toolkits/zoho/tools/list-accounts.d.ts +14 -0
  669. package/dist/toolkits/zoho/tools/list-accounts.js +60 -0
  670. package/dist/toolkits/zoho/tools/list-calls.d.ts +12 -0
  671. package/dist/toolkits/zoho/tools/list-calls.js +58 -0
  672. package/dist/toolkits/zoho/tools/list-contacts.d.ts +12 -0
  673. package/dist/toolkits/zoho/tools/list-contacts.js +58 -0
  674. package/dist/toolkits/zoho/tools/list-deals.d.ts +15 -0
  675. package/dist/toolkits/zoho/tools/list-deals.js +61 -0
  676. package/dist/toolkits/zoho/tools/list-events.d.ts +12 -0
  677. package/dist/toolkits/zoho/tools/list-events.js +58 -0
  678. package/dist/toolkits/zoho/tools/list-leads.d.ts +13 -0
  679. package/dist/toolkits/zoho/tools/list-leads.js +59 -0
  680. package/dist/toolkits/zoho/tools/list-modules.d.ts +4 -0
  681. package/dist/toolkits/zoho/tools/list-modules.js +50 -0
  682. package/dist/toolkits/zoho/tools/list-notes.d.ts +7 -0
  683. package/dist/toolkits/zoho/tools/list-notes.js +53 -0
  684. package/dist/toolkits/zoho/tools/list-record-attachments.d.ts +9 -0
  685. package/dist/toolkits/zoho/tools/list-record-attachments.js +55 -0
  686. package/dist/toolkits/zoho/tools/list-tasks.d.ts +12 -0
  687. package/dist/toolkits/zoho/tools/list-tasks.js +58 -0
  688. package/dist/toolkits/zoho/tools/search-accounts.d.ts +11 -0
  689. package/dist/toolkits/zoho/tools/search-accounts.js +49 -0
  690. package/dist/toolkits/zoho/tools/search-calls.d.ts +11 -0
  691. package/dist/toolkits/zoho/tools/search-calls.js +49 -0
  692. package/dist/toolkits/zoho/tools/search-contacts.d.ts +11 -0
  693. package/dist/toolkits/zoho/tools/search-contacts.js +49 -0
  694. package/dist/toolkits/zoho/tools/search-deals.d.ts +11 -0
  695. package/dist/toolkits/zoho/tools/search-deals.js +49 -0
  696. package/dist/toolkits/zoho/tools/search-events.d.ts +11 -0
  697. package/dist/toolkits/zoho/tools/search-events.js +49 -0
  698. package/dist/toolkits/zoho/tools/search-leads.d.ts +13 -0
  699. package/dist/toolkits/zoho/tools/search-leads.js +51 -0
  700. package/dist/toolkits/zoho/tools/search-notes.d.ts +11 -0
  701. package/dist/toolkits/zoho/tools/search-notes.js +49 -0
  702. package/dist/toolkits/zoho/tools/search-tasks.d.ts +11 -0
  703. package/dist/toolkits/zoho/tools/search-tasks.js +49 -0
  704. package/dist/toolkits/zoho/tools/search-zoho-records.d.ts +12 -0
  705. package/dist/toolkits/zoho/tools/search-zoho-records.js +50 -0
  706. package/dist/toolkits/zoho/tools/update-account.d.ts +32 -0
  707. package/dist/toolkits/zoho/tools/update-account.js +55 -0
  708. package/dist/toolkits/zoho/tools/update-call.d.ts +8 -0
  709. package/dist/toolkits/zoho/tools/update-call.js +33 -0
  710. package/dist/toolkits/zoho/tools/update-deal.d.ts +9 -0
  711. package/dist/toolkits/zoho/tools/update-deal.js +34 -0
  712. package/dist/toolkits/zoho/tools/update-email-draft.d.ts +17 -0
  713. package/dist/toolkits/zoho/tools/update-email-draft.js +42 -0
  714. package/dist/toolkits/zoho/tools/update-event.d.ts +6 -0
  715. package/dist/toolkits/zoho/tools/update-event.js +31 -0
  716. package/dist/toolkits/zoho/tools/update-lead.d.ts +9 -0
  717. package/dist/toolkits/zoho/tools/update-lead.js +34 -0
  718. package/dist/toolkits/zoho/tools/update-note.d.ts +8 -0
  719. package/dist/toolkits/zoho/tools/update-note.js +33 -0
  720. package/dist/toolkits/zoho/tools/update-related-records.d.ts +8 -0
  721. package/dist/toolkits/zoho/tools/update-related-records.js +33 -0
  722. package/dist/toolkits/zoho/tools/update-zoho-record.d.ts +10 -0
  723. package/dist/toolkits/zoho/tools/update-zoho-record.js +35 -0
  724. package/dist/toolkits/zoho/tools/upload-attachment.d.ts +9 -0
  725. package/dist/toolkits/zoho/tools/upload-attachment.js +34 -0
  726. package/dist/toolkits/zoho/tools/utils.d.ts +24 -0
  727. package/dist/toolkits/zoho/tools/utils.js +49 -0
  728. package/dist/toolkits/zoho/tools/validate-credential.d.ts +4 -0
  729. package/dist/toolkits/zoho/tools/validate-credential.js +27 -0
  730. package/package.json +2 -3
@@ -0,0 +1,333 @@
1
+ // @ts-nocheck
2
+ import { tool } from 'ai';
3
+ import { z } from 'zod';
4
+ import { snRequest, toServerKeys } from './client.js';
5
+ export const serviceNowCreateServicCatalogItemsAddToCart = tool({
6
+ description: "Adds a specified catalog item to the current user's ServiceNow shopping cart. Use when a user wants to order or request a specific item from the Service Catalog, such as requesting a laptop, software license, or IT service. The item is added to the user's active shopping cart and can be reviewed or submitted in a later step. Note: The action operates on the authenticated user's cart. If the catalog item requires mandatory variables, they must be provided in the `variables` field, otherwise the request may fail.",
7
+ inputSchema: z.object({
8
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
9
+ sysId: z.string().describe("The unique system ID (sys_id) of the catalog item to add to the cart. This is a 32-character hexadecimal string that identifies the specific catalog item in ServiceNow. Example: '039c516237b1300054b6a3549dbe5dfc'. This is a required path parameter."),
10
+ variables: z.record(z.any()).optional().describe("Key-value pairs of catalog item variables to set when adding to cart. The variable names and expected values depend on the specific catalog item's variable definitions. For example, if the item has a 'model' variable, you might pass {'model': 'Laptop Model X'}. Omit this field if the catalog item does not require any variables."),
11
+ sysparmQuantity: z.number().optional().describe("The number of units of the catalog item to add to the shopping cart. Defaults to 1 if not specified. Must be a positive integer."),
12
+ }),
13
+ execute: async ({ servicenowCredentials, sysId, variables, sysparmQuantity }) => {
14
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(sysId)}/add_to_cart`, {
15
+ method: 'POST',
16
+ body: toServerKeys({ variables, sysparmQuantity }),
17
+ });
18
+ },
19
+ });
20
+ export const serviceNowCreateServicCatalogItemsSubmitProducer = tool({
21
+ description: "Submits a ServiceNow Service Catalog item using the submit_producer endpoint. This action submits a catalog item with the provided variables and returns the created record details. The submit_producer endpoint is typically used for producer-type catalog items (like change producers) that create records in other tables. Use this action when you need to submit a Service Catalog item that uses a producer script to create records. This is commonly used for change requests, service requests, or other workflow-triggering catalog items. The action returns the created record's details including the sys_id, table name, and record number. This permanently creates a record in the ServiceNow instance.",
22
+ inputSchema: z.object({
23
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
24
+ sysId: z.string().describe("The unique system ID (sys_id) of the catalog item to submit. This is a 32-character hexadecimal string that identifies the service catalog item. Example: '011f117a9f3002002920bde8132e7020'. You can find the sys_id by listing catalog items or navigating to the item in ServiceNow."),
25
+ variables: z.record(z.any()).optional().describe("A dictionary of catalog item variable name-value pairs to provide during submission. These are the variables defined on the catalog item that the user fills out when submitting. The variable names must match exactly as defined in the catalog item. Example: {'short_description': 'New laptop request', 'urgency': 'high', 'std_change_producer': '508e02ec47410200e90d87e8dee49058'}"),
26
+ sysparmDisplayValue: z.string().optional().describe("Determines the type of data returned in the response. 'true': Returns display values (names for references, text labels for choices). 'false': Returns actual database values (sys_ids for references, numeric values for choices). 'all': Returns both display and actual values. If not specified, defaults to the instance setting."),
27
+ sysparmNoValidation: z.boolean().optional().describe("Set to true to skip variable validation during submission. When false (default), ServiceNow validates all required variables before accepting the submission."),
28
+ }),
29
+ execute: async ({ servicenowCredentials, sysId, variables, sysparmDisplayValue, sysparmNoValidation }) => {
30
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(sysId)}/submit_producer`, {
31
+ method: 'POST',
32
+ query: { sysparm_display_value: sysparmDisplayValue },
33
+ body: toServerKeys({ variables, sysparmNoValidation }),
34
+ });
35
+ },
36
+ });
37
+ export const serviceNowCreateServiceCatalogCartCheckout = tool({
38
+ description: "Checks out the Service Catalog shopping cart and submits the order as a request. This action retrieves the items in the cart, creates a service catalog request, deletes the cart contents, and returns the request ID and number for tracking. The cart is emptied after successful checkout. This action is irreversible once the checkout is completed — the order has been submitted and cannot be cancelled through this action. Use this action when you need to finalize a Service Catalog order by submitting all items in the shopping cart for processing and approval.",
39
+ inputSchema: z.object({
40
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
41
+ cartId: z.string().optional().describe("The unique system ID (sys_id) of the Service Catalog shopping cart to checkout. This is a 32-character hexadecimal string that uniquely identifies the cart record. Example: 'cart_sys_id'. If not provided, the current user's default cart will be used."),
42
+ }),
43
+ execute: async ({ servicenowCredentials, cartId }) => {
44
+ return snRequest(servicenowCredentials, '/api/sn_sc/servicecatalog/cart/checkout', {
45
+ method: 'POST',
46
+ body: toServerKeys({ cartId }),
47
+ });
48
+ },
49
+ });
50
+ export const serviceNowCreateServiceCatalogCartSubmitOrder = tool({
51
+ description: "Submits the Service Catalog shopping cart and creates a service catalog request. This action checks out the user cart, creates a service catalog request with all items in the cart, and returns the request ID and number for tracking. The cart contents are converted into a submitted order. This action is irreversible once submitted — the order has been created and cannot be cancelled through this action. Use this action when you need to finalize a Service Catalog order by submitting all items in the shopping cart for processing and approval. This is typically called after items have been added to the cart using other cart operations.",
52
+ inputSchema: z.object({
53
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
54
+ cartId: z.string().optional().describe("The unique system ID (sys_id) of the Service Catalog shopping cart to submit. This is a 32-character hexadecimal string that uniquely identifies the cart record. Example: 'cart_sys_id'. If not provided, the current user's active cart will be used."),
55
+ quantity: z.number().optional().describe("The quantity of items to order. If specified, applies to all items in the cart. Defaults to 1 if not specified."),
56
+ variables: z.record(z.any()).optional().describe("Dictionary of catalog item variables (answers) to set during submission. The keys should be the variable IDs (not the labels) as defined in the catalog item. Example: {'reason': 'New laptop needed', 'location': 'NYC'}"),
57
+ ignorePrice: z.boolean().optional().describe("Set to true to ignore price changes that may have occurred since items were added to cart. When false (default), the order may fail if prices have changed."),
58
+ requestedFor: z.string().optional().describe("The user ID (sys_id or username) to submit the order on behalf of. Use this parameter when submitting an order for another user. Example: 'requested_for_sys_id' or 'john.doe'"),
59
+ noAttachmentFoundWarnings: z.boolean().optional().describe("Set to true to suppress warnings when required attachments are missing. The order will still be submitted even if warnings would normally be generated."),
60
+ }),
61
+ execute: async ({ servicenowCredentials, cartId, quantity, variables, ignorePrice, requestedFor, noAttachmentFoundWarnings }) => {
62
+ return snRequest(servicenowCredentials, '/api/sn_sc/servicecatalog/cart/submit_order', {
63
+ method: 'POST',
64
+ body: toServerKeys({ cartId, quantity, variables, ignorePrice, requestedFor, noAttachmentFoundWarnings }),
65
+ });
66
+ },
67
+ });
68
+ export const serviceNowCreateServicecatalogItemsCheckoutGuide = tool({
69
+ description: "Checks out an order guide by updating variable values for selected catalog items. Use this action when a user needs to submit an order guide in ServiceNow's Service Catalog, providing variable values for the items within the order guide. The action retrieves the configured contents of the order guide with the submitted variable values applied. This is commonly used during the checkout process for order guides that contain pre-configured sets of catalog items (e.g., laptop requests, software bundles). The action sends a POST request with the order guide sys_id and variable values, and returns an array of catalog items included in the order guide checkout.",
70
+ inputSchema: z.object({
71
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
72
+ sysId: z.string().describe("The unique system ID (sys_id) of the order guide to check out. This is a 32-character hexadecimal string that uniquely identifies the order guide item. Example: '25110912372211003e7d40ed9dbe5dd6'. The order guide must be active and available in the Service Catalog."),
73
+ variables: z.record(z.any()).optional().describe("Variable values for all selected catalog items within the order guide. Keys are the variable names/IDs and values are the corresponding values to set. The required variables depend on the specific order guide configuration. Common variable types include text inputs, checkboxes, dropdowns, and reference fields. All values should be provided as strings. Example: {'requested_for': '2024-01-15', 'quantity': '1', 'urgency': 'high'}"),
74
+ }),
75
+ execute: async ({ servicenowCredentials, sysId, variables }) => {
76
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(sysId)}/checkout_guide`, {
77
+ method: 'POST',
78
+ body: { items: [{ sys_id: sysId, variables }] },
79
+ });
80
+ },
81
+ });
82
+ export const serviceNowCreateServicecatalogItemsOrderNow = tool({
83
+ description: "Orders a specified ServiceNow Service Catalog item immediately. This action submits an order for a catalog item without requiring cart checkout. The item is ordered directly with the specified quantity and optional variables. Use this action when you need to quickly order a known catalog item for a user. Use when you have a catalog item's sys_id and want to order it directly without adding it to a cart first. This action is useful for automated provisioning of standard items like laptop requests, software access, or access cards.",
84
+ inputSchema: z.object({
85
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
86
+ sysId: z.string().describe("The unique system ID (sys_id) of the catalog item to order. This is a 32-character hexadecimal string that identifies the service catalog item. Example: '04b7e94b4f7b4200086eeed18110c7fd'. You can find the sys_id by listing catalog items or navigating to the item in ServiceNow."),
87
+ variables: z.record(z.any()).optional().describe("A dictionary of catalog item variable name-value pairs to provide during ordering. These are the variables defined on the catalog item that the user fills out at order time. The variable names must match exactly as defined in the catalog item. Example: {'reason': 'New laptop needed', 'urgency': 'high'}"),
88
+ sysparmQuantity: z.number().optional().describe("The number of instances of the catalog item to order. Must be a positive integer. Defaults to 1 if not specified."),
89
+ sysparmRequestedFor: z.string().optional().describe("The user ID (sys_id) of the person for whom the item is being ordered. If not specified, the item is ordered for the current user. Example: '681ccaf9c0a8016400b98a06818d57a7' (sys_id of a user)."),
90
+ }),
91
+ execute: async ({ servicenowCredentials, sysId, variables, sysparmQuantity, sysparmRequestedFor }) => {
92
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(sysId)}/order_now`, {
93
+ method: 'POST',
94
+ body: toServerKeys({ variables, sysparmQuantity, sysparmRequestedFor }),
95
+ });
96
+ },
97
+ });
98
+ export const serviceNowDeleteServicecatalogCart = tool({
99
+ description: "Removes a specific item from the current ServiceNow Service Portal shopping cart. This action permanently removes a cart item from the active shopping cart session. Use this action when a user wants to remove an unwanted item from their Service Catalog cart before submitting the order. This action is irreversible — once the item is removed, it must be added again if still needed. Use when you need to remove an item from a user's Service Portal shopping cart and have the cart item's sys_id.",
100
+ inputSchema: z.object({
101
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
102
+ cartItemId: z.string().describe("The unique system ID (sys_id) of the cart item to remove from the current shopping cart. This is a 32-character hexadecimal string that uniquely identifies the cart item. Example: 'b2754c3283fbf210dd2dc2dfeeaad33b'. The cart item must exist in the current user's cart, or a 404 error will be returned."),
103
+ }),
104
+ execute: async ({ servicenowCredentials, cartItemId }) => {
105
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/cart/${encodeURIComponent(cartItemId)}`, {
106
+ method: 'DELETE',
107
+ });
108
+ },
109
+ });
110
+ export const serviceNowDeleteServiceCatalogCartEmpty = tool({
111
+ description: "Empties all items from a specified Service Catalog shopping cart using its sys_id. This action removes all items from the cart but does not delete the cart itself. This is a destructive, irreversible operation — all cart items will be permanently removed and cannot be recovered once emptied. Use this action with caution. Use when you need to clear all items from a user's Service Catalog shopping cart before adding new items or before discarding an unwanted order.",
112
+ inputSchema: z.object({
113
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
114
+ sysId: z.string().describe("The unique system ID (sys_id) of the Service Catalog shopping cart to empty. This is a 32-character hexadecimal string that uniquely identifies the cart record. Example: '8df4cc7a83bbf210dd2dc2dfeeaad380'. All items within the cart will be permanently removed, but the cart itself will remain. The cart must exist, or a 404 error will be returned."),
115
+ }),
116
+ execute: async ({ servicenowCredentials, sysId }) => {
117
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/cart/${encodeURIComponent(sysId)}/empty`, {
118
+ method: 'DELETE',
119
+ });
120
+ },
121
+ });
122
+ export const serviceNowGetCmpCatalogApiServices = tool({
123
+ description: "Retrieves a list of catalog items from the ServiceNow Cloud Services Catalog API. Use this action when you need to query and fetch catalog service items (from the sc_cat_item table) through the Cloud Services Catalog API. Supports filtering via encoded queries, field selection, pagination, and display value options. This is useful for browsing available catalog offerings, checking item availability, or searching for specific services in the ServiceNow Service Catalog.",
124
+ inputSchema: z.object({
125
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
126
+ sysparmView: z.enum(['desktop', 'mobile', 'both']).optional().describe("UI view for which to render the data (desktop, mobile, or both)."),
127
+ sysparmLimit: z.number().optional().describe("Maximum number of catalog service items to return in the response. Use pagination parameters (sysparm_offset) for retrieving larger result sets. Note: Unusually large values can impact system performance."),
128
+ sysparmQuery: z.string().optional().describe("Encoded query string to filter catalog items. Syntax: <col_name><operator><value>. Operators: = (equals), != (not equals), ^ (AND), ^OR (OR), LIKE, STARTSWITH, ENDSWITH. Example: active=true^price>0 Example: retired=false^availability=available"),
129
+ sysparmFields: z.string().optional().describe("Comma-separated list of fields to return in the response. Invalid field names are silently ignored. Example: 'sys_id,name,short_description,price'"),
130
+ sysparmOffset: z.number().optional().describe("Starting record index for which to begin retrieving catalog items. Use this value to paginate through results. For example, set sysparm_offset=0 for the first page, then sysparm_offset=sysparm_limit for the next page."),
131
+ sysparmNoCount: z.boolean().optional().describe("Flag that indicates whether to execute a select count(*) query to return the number of rows."),
132
+ sysparmDisplayValue: z.enum(['true', 'false', 'all']).optional().describe("Determines the type of data returned, either the actual values from the database or the display values of the fields. Display values are manipulated based on the actual value in the database and user or system settings and preferences. 'false': Returns actual database values (sys_ids for references, numeric values for choices). 'true': Returns display values (names for references, text labels for choices). 'all': Returns both display and actual values."),
133
+ sysparmQueryCategory: z.string().optional().describe("Name of the category to use when querying. Restricts results to items belonging to the specified category."),
134
+ sysparmExcludeReferenceLink: z.boolean().optional().describe("Flag that indicates whether to exclude Table API links for reference fields."),
135
+ sysparmSuppressPaginationHeader: z.boolean().optional().describe("Flag that indicates whether to remove the Link header from the response. The Link header provides URLs to relative pages in the record set for pagination. Set to 'true' to remove the Link header, 'false' to include it."),
136
+ }),
137
+ execute: async ({ servicenowCredentials, sysparmView, sysparmLimit, sysparmQuery, sysparmFields, sysparmOffset, sysparmNoCount, sysparmDisplayValue, sysparmQueryCategory, sysparmExcludeReferenceLink, sysparmSuppressPaginationHeader }) => {
138
+ return snRequest(servicenowCredentials, '/api/now/cmp_catalog_api/services', {
139
+ method: 'GET',
140
+ query: {
141
+ sysparm_view: sysparmView,
142
+ sysparm_limit: sysparmLimit,
143
+ sysparm_query: sysparmQuery,
144
+ sysparm_fields: sysparmFields,
145
+ sysparm_offset: sysparmOffset,
146
+ sysparm_no_count: sysparmNoCount,
147
+ sysparm_display_value: sysparmDisplayValue,
148
+ sysparm_query_category: sysparmQueryCategory,
149
+ sysparm_exclude_reference_link: sysparmExcludeReferenceLink,
150
+ sysparm_suppress_pagination_header: sysparmSuppressPaginationHeader,
151
+ },
152
+ });
153
+ },
154
+ });
155
+ export const serviceNowGetServicatalogItemsById = tool({
156
+ description: "Retrieves a specific Service Catalog item from ServiceNow using its sys_id. Use this action when you need to fetch detailed information about a particular catalog item, including its name, description, associated categories, variables, client scripts, and display settings. This is a read-only operation that does not modify any data in ServiceNow.",
157
+ inputSchema: z.object({
158
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
159
+ sysId: z.string().describe("The unique system ID (sys_id) of the catalog item to retrieve. This is a 32-character hexadecimal string that uniquely identifies the catalog item. Example: '011f117a9f3002002920bde8132e7020'"),
160
+ }),
161
+ execute: async ({ servicenowCredentials, sysId }) => {
162
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(sysId)}`, {
163
+ method: 'GET',
164
+ });
165
+ },
166
+ });
167
+ export const serviceNowGetServicCatalogItemVariables = tool({
168
+ description: "Retrieves the list of variables defined for a ServiceNow Service Catalog item. Use this action when you need to fetch all variables associated with a catalog item, such as when building dynamic forms, validating required inputs, or understanding what information a user must provide when ordering an item. This is a read-only operation that does not modify any data in ServiceNow.",
169
+ inputSchema: z.object({
170
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
171
+ sysId: z.string().describe("The unique system ID (sys_id) of the catalog item to retrieve variables for. This is a 32-character hexadecimal string that uniquely identifies the catalog item. Example: '011f117a9f3002002920bde8132e7020'"),
172
+ }),
173
+ execute: async ({ servicenowCredentials, sysId }) => {
174
+ return snRequest(servicenowCredentials, '/api/now/table/item_option_new', {
175
+ method: 'GET',
176
+ query: { sysparm_query: `cat_item=${sysId}^active=true` },
177
+ });
178
+ },
179
+ });
180
+ export const serviceNowGetServiceCatalogCart = tool({
181
+ description: "Retrieves the details of all items within the logged-in user's Service Catalog shopping cart. This action fetches the current contents of the shopping cart, including item details, quantities, prices, and any selected variables/options. The cart is associated with the authenticated user making the request. Use this action when you need to review items before submitting an order, verify quantities, or check selected options. This is a read-only operation that does not modify any data.",
182
+ inputSchema: z.object({
183
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
184
+ }),
185
+ execute: async ({ servicenowCredentials }) => {
186
+ return snRequest(servicenowCredentials, '/api/sn_sc/servicecatalog/cart', {
187
+ method: 'GET',
188
+ });
189
+ },
190
+ });
191
+ export const serviceNowGetServiceCatalogCartDeliveryAddress = tool({
192
+ description: "Retrieves the delivery/shipping address configured for a user's Service Catalog shopping cart. Use this action when you need to fetch the delivery address information associated with a user's ServiceNow Service Catalog cart. This is useful for verifying delivery details before placing an order or for displaying address information to users. The action returns address fields including street, city, state, zip code, country, and contact information such as phone and email.",
193
+ inputSchema: z.object({
194
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
195
+ userId: z.string().describe("The unique identifier of the user whose delivery address to retrieve. This can be the user's sys_id (a 32-character hexadecimal string) or the user's username. For guest users, this is typically 'guest'. Example: 'guest' or '681ccaf9c0a8016400b98a908cbe7df3'"),
196
+ }),
197
+ execute: async ({ servicenowCredentials, userId }) => {
198
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/cart/delivery_address/${encodeURIComponent(userId)}`, {
199
+ method: 'GET',
200
+ });
201
+ },
202
+ });
203
+ export const serviceNowGetServiceCatalogCatalogById = tool({
204
+ description: "Retrieves the available information for a specified service catalog by its sys_id. Use this action when you need to fetch detailed information about a specific service catalog in ServiceNow, including its title and description. This is a read-only operation that does not modify any data in ServiceNow.",
205
+ inputSchema: z.object({
206
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
207
+ sysId: z.string().describe("The unique system ID (sys_id) of the service catalog to retrieve. This is a 32-character hexadecimal string that uniquely identifies the catalog. Example: '742ce428d7211100f2d224837e61036d'"),
208
+ }),
209
+ execute: async ({ servicenowCredentials, sysId }) => {
210
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/catalogs/${encodeURIComponent(sysId)}`, {
211
+ method: 'GET',
212
+ });
213
+ },
214
+ });
215
+ export const serviceNowGetServiceCatalogCatalogCategories = tool({
216
+ description: "Retrieves the list of available categories for a specified ServiceNow Service Catalog. Use this action when you need to fetch the categories available within a specific service catalog, such as displaying available categories to users or navigating through catalog items. This is a read-only operation that does not modify any data in ServiceNow.",
217
+ inputSchema: z.object({
218
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
219
+ catalogId: z.string().describe("The unique system ID (sys_id) of the Service Catalog catalog to retrieve categories from. This is a 32-character hexadecimal string that uniquely identifies the catalog. Example: '742ce428d7211100f2d224837e61036d'"),
220
+ sysparmLimit: z.number().optional().describe("Maximum number of categories to return. Defaults to 25 if not specified."),
221
+ sysparmOffset: z.number().optional().describe("Number of records to skip for pagination. Use with sysparm_limit to paginate through results."),
222
+ }),
223
+ execute: async ({ servicenowCredentials, catalogId, sysparmLimit, sysparmOffset }) => {
224
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/catalogs/${encodeURIComponent(catalogId)}/categories`, {
225
+ method: 'GET',
226
+ query: { sysparm_limit: sysparmLimit, sysparm_offset: sysparmOffset },
227
+ });
228
+ },
229
+ });
230
+ export const serviceNowGetServiceCatalogCategoryById = tool({
231
+ description: "Retrieves the available information for a specified service catalog category by its sys_id. Use this action when you need to fetch detailed information about a specific service catalog category in ServiceNow, including its title, description, subcategories, and item count. This is a read-only operation that does not modify any data in ServiceNow.",
232
+ inputSchema: z.object({
233
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
234
+ sysId: z.string().describe("The unique system ID (sys_id) of the service catalog category to retrieve. This is a 32-character hexadecimal string that uniquely identifies the category. Example: 'd258b953c611227a0146101fb1be7c31'"),
235
+ }),
236
+ execute: async ({ servicenowCredentials, sysId }) => {
237
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/categories/${encodeURIComponent(sysId)}`, {
238
+ method: 'GET',
239
+ });
240
+ },
241
+ });
242
+ export const serviceNowGetServiceCatalogItemDelegation = tool({
243
+ description: "Verifies whether a delegated user has access to a specific ServiceNow Service Catalog item. This action checks if a delegated user (identified by user_sys_id) is authorized to order or access a particular catalog item (identified by item_sys_id). Use this action to validate delegation permissions before attempting to submit orders on behalf of another user. Use this action when you need to verify delegation permissions for Service Catalog items, such as checking if a manager can order items on behalf of their team members or if an assistant has been granted proper access to order items for someone else.",
244
+ inputSchema: z.object({
245
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
246
+ itemSysId: z.string().describe("The unique system ID (sys_id) of the Service Catalog item to check delegation access for. This is a 32-character hexadecimal string that uniquely identifies the catalog item. Example: '0123456789abcdef0123456789abcdef'"),
247
+ userSysId: z.string().describe("The unique system ID (sys_id) of the delegated user to verify access for. This is a 32-character hexadecimal string that uniquely identifies the user. Example: 'fedcba9876543210fedcba9876543210'"),
248
+ }),
249
+ execute: async ({ servicenowCredentials, itemSysId, userSysId }) => {
250
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(itemSysId)}/delegation/${encodeURIComponent(userSysId)}`, {
251
+ method: 'GET',
252
+ });
253
+ },
254
+ });
255
+ export const serviceNowGetServiceCatalogItemsList = tool({
256
+ description: "Retrieves a list of catalog items from ServiceNow's Service Catalog API. Use when you need to browse available service catalog offerings, search for specific items by name or description, filter items by category or catalog, or retrieve catalog item details including pricing, availability, and metadata. Supports filtering via category, catalog, and text search parameters.",
257
+ inputSchema: z.object({
258
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
259
+ sysparmText: z.string().optional().describe("Text search filter for catalog item name and short description. Searches across item names and descriptions to find matching items."),
260
+ sysparmLimit: z.number().optional().describe("Maximum number of catalog items to return. Use this parameter to limit response size. For requests that exceed this number, use pagination to retrieve additional records. Note: Unusually large values can impact system performance."),
261
+ sysparmCatalog: z.string().optional().describe("Filter catalog items by catalog sys_id or name. Returns only items that belong to the specified service catalog."),
262
+ sysparmCategory: z.string().optional().describe("Filter catalog items by category sys_id or name. Returns only items that belong to the specified category."),
263
+ }),
264
+ execute: async ({ servicenowCredentials, sysparmText, sysparmLimit, sysparmCatalog, sysparmCategory }) => {
265
+ return snRequest(servicenowCredentials, '/api/sn_sc/servicecatalog/items', {
266
+ method: 'GET',
267
+ query: {
268
+ sysparm_text: sysparmText,
269
+ sysparm_limit: sysparmLimit,
270
+ sysparm_catalog: sysparmCatalog,
271
+ sysparm_category: sysparmCategory,
272
+ },
273
+ });
274
+ },
275
+ });
276
+ export const serviceNowGetServiceCatalogWishlistList = tool({
277
+ description: "Retrieves the list of items in the logged-in user's ServiceNow Service Catalog wishlist. Use this action when you need to fetch the wishlist items for the currently authenticated user in ServiceNow's Service Catalog. This is useful for displaying a user's saved items, checking what items they have bookmarked, or preparing to add items to a cart. This is a read-only operation that does not modify any data in ServiceNow.",
278
+ inputSchema: z.object({
279
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
280
+ sysparmLimit: z.number().optional().describe("Maximum number of wishlist items to return. Defaults to 25 if not specified."),
281
+ sysparmOffset: z.number().optional().describe("Number of records to skip for pagination. Use with sysparm_limit to paginate through results."),
282
+ }),
283
+ execute: async ({ servicenowCredentials, sysparmLimit, sysparmOffset }) => {
284
+ return snRequest(servicenowCredentials, '/api/sn_sc/servicecatalog/wishlist', {
285
+ method: 'GET',
286
+ query: { sysparm_limit: sysparmLimit, sysparm_offset: sysparmOffset },
287
+ });
288
+ },
289
+ });
290
+ export const serviceNowListServiceCatalogCatalogs = tool({
291
+ description: "Retrieves a list of ServiceNow Service Catalog catalogs to which the user has access. Use this action when you need to fetch available service catalogs from ServiceNow, such as displaying available catalogs to users or filtering catalogs by name or description.",
292
+ inputSchema: z.object({
293
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
294
+ sysparmText: z.string().optional().describe("Search text to filter catalogs by title or description"),
295
+ sysparmLimit: z.number().optional().describe("Maximum number of catalogs to return. Defaults to 25 if not specified."),
296
+ }),
297
+ execute: async ({ servicenowCredentials, sysparmText, sysparmLimit }) => {
298
+ return snRequest(servicenowCredentials, '/api/sn_sc/servicecatalog/catalogs', {
299
+ method: 'GET',
300
+ query: { sysparm_text: sysparmText, sysparm_limit: sysparmLimit },
301
+ });
302
+ },
303
+ });
304
+ export const serviceNowUpdateServicecatalogCart = tool({
305
+ description: "Updates an existing item in the ServiceNow Service Portal shopping cart. Use this action when you need to modify the quantity or variables of a cart item in the Service Catalog before checking out. This action sends a PUT request to the Service Catalog cart API endpoint, updating the specified cart item. Use when you need to change the quantity of an item in a user's Service Portal shopping cart or update catalog item variables. The cart_item_id is required, and at least one of sysparm_quantity or variables should be provided.",
306
+ inputSchema: z.object({
307
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
308
+ variables: z.record(z.any()).optional().describe("A dictionary of catalog item variable name-value string pairs to update. These are the variables associated with the catalog item. Example: {'u_department': 'IT', 'u_justification': 'New laptop needed'}"),
309
+ cartItemId: z.string().describe("The unique system ID (sys_id) of the cart item to update in the current shopping cart. This is a 32-character hexadecimal string that uniquely identifies the cart item. Example: 'da46c07e83fbf210dd2dc2dfeeaad346'. The cart item must exist in the current user's cart."),
310
+ sysparmQuantity: z.number().optional().describe("The new quantity for the cart item. Must be a positive integer (minimum 1). If not provided or set to null, the quantity remains unchanged. Example: 3"),
311
+ }),
312
+ execute: async ({ servicenowCredentials, variables, cartItemId, sysparmQuantity }) => {
313
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/cart/${encodeURIComponent(cartItemId)}`, {
314
+ method: 'PUT',
315
+ body: toServerKeys({ sysparmQuantity, variables }),
316
+ });
317
+ },
318
+ });
319
+ export const serviceNowUpdateServicecatalogItemsSubmitGuide = tool({
320
+ description: "Submits an order guide in ServiceNow's Service Catalog with the specified variable values. Use this action when a user needs to submit an order guide in ServiceNow's Service Catalog, providing variable values for the items within the order guide. The action retrieves the configured contents of the order guide with the submitted variable values and calculates pricing totals. This is commonly used to preview and submit order guides that contain pre-configured sets of catalog items (e.g., laptop requests, software bundles). The action sends a PUT request with the order guide sys_id and variable values, and returns the order guide items with calculated pricing information. Note: This action is idempotent - submitting the same order guide multiple times with the same variables will return the same calculated values.",
321
+ inputSchema: z.object({
322
+ servicenowCredentials: z.string().optional().describe('Injected auth JSON {baseUrl, username, password} — do not provide'),
323
+ sysId: z.string().describe("The unique system ID (sys_id) of the order guide to submit. This is a 32-character hexadecimal string that uniquely identifies the order guide item. Example: '25110912372211003e7d40ed9dbe5dd6'. The order guide must be active and available in the Service Catalog."),
324
+ variables: z.record(z.any()).optional().describe("Variable values for the order guide submission. Keys are the variable names/IDs and values are the corresponding values to set. The required variables depend on the specific order guide configuration. Common variable types include text inputs, checkboxes, dropdowns, and reference fields. Example: {'requested_for': 'user@example.com', 'justification': 'New equipment needed'}"),
325
+ }),
326
+ execute: async ({ servicenowCredentials, sysId, variables }) => {
327
+ return snRequest(servicenowCredentials, `/api/sn_sc/servicecatalog/items/${encodeURIComponent(sysId)}/submit_guide`, {
328
+ method: 'PUT',
329
+ body: toServerKeys({ variables }),
330
+ });
331
+ },
332
+ });
333
+ //# sourceMappingURL=catalog.js.map