@metronome/mcp 0.1.0-beta.11

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 (958) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +350 -0
  3. package/compat.d.mts +54 -0
  4. package/compat.d.mts.map +1 -0
  5. package/compat.d.ts +54 -0
  6. package/compat.d.ts.map +1 -0
  7. package/compat.js +345 -0
  8. package/compat.js.map +1 -0
  9. package/compat.mjs +336 -0
  10. package/compat.mjs.map +1 -0
  11. package/dynamic-tools.d.mts +12 -0
  12. package/dynamic-tools.d.mts.map +1 -0
  13. package/dynamic-tools.d.ts +12 -0
  14. package/dynamic-tools.d.ts.map +1 -0
  15. package/dynamic-tools.js +134 -0
  16. package/dynamic-tools.js.map +1 -0
  17. package/dynamic-tools.mjs +131 -0
  18. package/dynamic-tools.mjs.map +1 -0
  19. package/index.d.mts +2 -0
  20. package/index.d.mts.map +1 -0
  21. package/index.d.ts +2 -0
  22. package/index.d.ts.map +1 -0
  23. package/index.js +86 -0
  24. package/index.js.map +1 -0
  25. package/index.mjs +83 -0
  26. package/index.mjs.map +1 -0
  27. package/options.d.mts +11 -0
  28. package/options.d.mts.map +1 -0
  29. package/options.d.ts +11 -0
  30. package/options.d.ts.map +1 -0
  31. package/options.js +337 -0
  32. package/options.js.map +1 -0
  33. package/options.mjs +331 -0
  34. package/options.mjs.map +1 -0
  35. package/package.json +53 -0
  36. package/server.d.mts +38 -0
  37. package/server.d.mts.map +1 -0
  38. package/server.d.ts +38 -0
  39. package/server.d.ts.map +1 -0
  40. package/server.js +104 -0
  41. package/server.js.map +1 -0
  42. package/server.mjs +92 -0
  43. package/server.mjs.map +1 -0
  44. package/src/compat.ts +438 -0
  45. package/src/dynamic-tools.ts +153 -0
  46. package/src/index.ts +102 -0
  47. package/src/options.ts +361 -0
  48. package/src/server.ts +128 -0
  49. package/src/tools/index.ts +283 -0
  50. package/src/tools/v1/alerts/archive-v1-alerts.ts +39 -0
  51. package/src/tools/v1/alerts/create-v1-alerts.ts +138 -0
  52. package/src/tools/v1/audit-logs/list-v1-audit-logs.ts +66 -0
  53. package/src/tools/v1/billable-metrics/archive-v1-billable-metrics.ts +34 -0
  54. package/src/tools/v1/billable-metrics/create-v1-billable-metrics.ts +132 -0
  55. package/src/tools/v1/billable-metrics/list-v1-billable-metrics.ts +43 -0
  56. package/src/tools/v1/billable-metrics/retrieve-v1-billable-metrics.ts +34 -0
  57. package/src/tools/v1/contracts/add-manual-balance-entry-v1-contracts.ts +61 -0
  58. package/src/tools/v1/contracts/amend-v1-contracts.ts +932 -0
  59. package/src/tools/v1/contracts/archive-v1-contracts.ts +43 -0
  60. package/src/tools/v1/contracts/create-historical-invoices-v1-contracts.ts +133 -0
  61. package/src/tools/v1/contracts/create-v1-contracts.ts +1600 -0
  62. package/src/tools/v1/contracts/list-balances-v1-contracts.ts +73 -0
  63. package/src/tools/v1/contracts/list-v1-contracts.ts +61 -0
  64. package/src/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.ts +46 -0
  65. package/src/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.ts +53 -0
  66. package/src/tools/v1/contracts/products/archive-contracts-v1-products.ts +35 -0
  67. package/src/tools/v1/contracts/products/create-contracts-v1-products.ts +141 -0
  68. package/src/tools/v1/contracts/products/list-contracts-v1-products.ts +44 -0
  69. package/src/tools/v1/contracts/products/retrieve-contracts-v1-products.ts +34 -0
  70. package/src/tools/v1/contracts/products/update-contracts-v1-products.ts +153 -0
  71. package/src/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.ts +34 -0
  72. package/src/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.ts +84 -0
  73. package/src/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.ts +43 -0
  74. package/src/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.ts +50 -0
  75. package/src/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.ts +57 -0
  76. package/src/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.ts +41 -0
  77. package/src/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.ts +52 -0
  78. package/src/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.ts +148 -0
  79. package/src/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.ts +139 -0
  80. package/src/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.ts +87 -0
  81. package/src/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.ts +35 -0
  82. package/src/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.ts +86 -0
  83. package/src/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.ts +64 -0
  84. package/src/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.ts +92 -0
  85. package/src/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.ts +41 -0
  86. package/src/tools/v1/contracts/retrieve-v1-contracts.ts +48 -0
  87. package/src/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.ts +99 -0
  88. package/src/tools/v1/contracts/set-usage-filter-v1-contracts.ts +50 -0
  89. package/src/tools/v1/contracts/update-end-date-v1-contracts.ts +50 -0
  90. package/src/tools/v1/credit-grants/create-v1-credit-grants.ts +169 -0
  91. package/src/tools/v1/credit-grants/edit-v1-credit-grants.ts +48 -0
  92. package/src/tools/v1/credit-grants/list-entries-v1-credit-grants.ts +63 -0
  93. package/src/tools/v1/credit-grants/list-v1-credit-grants.ts +73 -0
  94. package/src/tools/v1/credit-grants/void-v1-credit-grants.ts +42 -0
  95. package/src/tools/v1/custom-fields/add-key-v1-custom-fields.ts +61 -0
  96. package/src/tools/v1/custom-fields/delete-values-v1-custom-fields.ts +63 -0
  97. package/src/tools/v1/custom-fields/list-keys-v1-custom-fields.ts +62 -0
  98. package/src/tools/v1/custom-fields/remove-key-v1-custom-fields.ts +57 -0
  99. package/src/tools/v1/custom-fields/set-values-v1-custom-fields.ts +61 -0
  100. package/src/tools/v1/customers/alerts/list-customers-v1-alerts.ts +47 -0
  101. package/src/tools/v1/customers/alerts/reset-customers-v1-alerts.ts +39 -0
  102. package/src/tools/v1/customers/alerts/retrieve-customers-v1-alerts.ts +45 -0
  103. package/src/tools/v1/customers/archive-v1-customers.ts +34 -0
  104. package/src/tools/v1/customers/billing-config/create-customers-v1-billing-config.ts +89 -0
  105. package/src/tools/v1/customers/billing-config/delete-customers-v1-billing-config.ts +48 -0
  106. package/src/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.ts +47 -0
  107. package/src/tools/v1/customers/commits/create-customers-v1-commits.ts +251 -0
  108. package/src/tools/v1/customers/commits/list-customers-v1-commits.ts +74 -0
  109. package/src/tools/v1/customers/commits/update-end-date-customers-v1-commits.ts +52 -0
  110. package/src/tools/v1/customers/create-v1-customers.ts +143 -0
  111. package/src/tools/v1/customers/credits/create-customers-v1-credits.ts +156 -0
  112. package/src/tools/v1/customers/credits/list-customers-v1-credits.ts +74 -0
  113. package/src/tools/v1/customers/credits/update-end-date-customers-v1-credits.ts +46 -0
  114. package/src/tools/v1/customers/invoices/add-charge-customers-v1-invoices.ts +59 -0
  115. package/src/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.ts +78 -0
  116. package/src/tools/v1/customers/invoices/list-customers-v1-invoices.ts +72 -0
  117. package/src/tools/v1/customers/invoices/retrieve-customers-v1-invoices.ts +41 -0
  118. package/src/tools/v1/customers/list-billable-metrics-v1-customers.ts +51 -0
  119. package/src/tools/v1/customers/list-costs-v1-customers.ts +53 -0
  120. package/src/tools/v1/customers/list-v1-customers.ts +62 -0
  121. package/src/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.ts +46 -0
  122. package/src/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.ts +53 -0
  123. package/src/tools/v1/customers/plans/add-customers-v1-plans.ts +138 -0
  124. package/src/tools/v1/customers/plans/end-customers-v1-plans.ts +53 -0
  125. package/src/tools/v1/customers/plans/list-customers-v1-plans.ts +42 -0
  126. package/src/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.ts +46 -0
  127. package/src/tools/v1/customers/retrieve-v1-customers.ts +34 -0
  128. package/src/tools/v1/customers/set-ingest-aliases-v1-customers.ts +41 -0
  129. package/src/tools/v1/customers/set-name-v1-customers.ts +39 -0
  130. package/src/tools/v1/customers/update-config-v1-customers.ts +43 -0
  131. package/src/tools/v1/dashboards/get-embeddable-url-v1-dashboards.ts +120 -0
  132. package/src/tools/v1/invoices/regenerate-v1-invoices.ts +35 -0
  133. package/src/tools/v1/invoices/void-v1-invoices.ts +35 -0
  134. package/src/tools/v1/plans/get-details-v1-plans.ts +34 -0
  135. package/src/tools/v1/plans/list-charges-v1-plans.ts +42 -0
  136. package/src/tools/v1/plans/list-customers-v1-plans.ts +49 -0
  137. package/src/tools/v1/plans/list-v1-plans.ts +39 -0
  138. package/src/tools/v1/pricing-units/list-v1-pricing-units.ts +39 -0
  139. package/src/tools/v1/services/list-v1-services.ts +30 -0
  140. package/src/tools/v1/usage/ingest-v1-usage.ts +57 -0
  141. package/src/tools/v1/usage/list-v1-usage.ts +90 -0
  142. package/src/tools/v1/usage/list-with-groups-v1-usage.ts +83 -0
  143. package/src/tools/v2/contracts/edit-commit-v2-contracts.ts +218 -0
  144. package/src/tools/v2/contracts/edit-credit-v2-contracts.ts +149 -0
  145. package/src/tools/v2/contracts/edit-v2-contracts.ts +2144 -0
  146. package/src/tools/v2/contracts/get-edit-history-v2-contracts.ts +38 -0
  147. package/src/tools/v2/contracts/list-v2-contracts.ts +61 -0
  148. package/src/tools/v2/contracts/retrieve-v2-contracts.ts +53 -0
  149. package/src/tools.ts +1 -0
  150. package/src/tsconfig.json +11 -0
  151. package/tools/index.d.mts +24 -0
  152. package/tools/index.d.mts.map +1 -0
  153. package/tools/index.d.ts +24 -0
  154. package/tools/index.d.ts.map +1 -0
  155. package/tools/index.js +250 -0
  156. package/tools/index.js.map +1 -0
  157. package/tools/index.mjs +243 -0
  158. package/tools/index.mjs.map +1 -0
  159. package/tools/v1/alerts/archive-v1-alerts.d.mts +32 -0
  160. package/tools/v1/alerts/archive-v1-alerts.d.mts.map +1 -0
  161. package/tools/v1/alerts/archive-v1-alerts.d.ts +32 -0
  162. package/tools/v1/alerts/archive-v1-alerts.d.ts.map +1 -0
  163. package/tools/v1/alerts/archive-v1-alerts.js +36 -0
  164. package/tools/v1/alerts/archive-v1-alerts.js.map +1 -0
  165. package/tools/v1/alerts/archive-v1-alerts.mjs +32 -0
  166. package/tools/v1/alerts/archive-v1-alerts.mjs.map +1 -0
  167. package/tools/v1/alerts/create-v1-alerts.d.mts +32 -0
  168. package/tools/v1/alerts/create-v1-alerts.d.mts.map +1 -0
  169. package/tools/v1/alerts/create-v1-alerts.d.ts +32 -0
  170. package/tools/v1/alerts/create-v1-alerts.d.ts.map +1 -0
  171. package/tools/v1/alerts/create-v1-alerts.js +126 -0
  172. package/tools/v1/alerts/create-v1-alerts.js.map +1 -0
  173. package/tools/v1/alerts/create-v1-alerts.mjs +122 -0
  174. package/tools/v1/alerts/create-v1-alerts.mjs.map +1 -0
  175. package/tools/v1/audit-logs/list-v1-audit-logs.d.mts +32 -0
  176. package/tools/v1/audit-logs/list-v1-audit-logs.d.mts.map +1 -0
  177. package/tools/v1/audit-logs/list-v1-audit-logs.d.ts +32 -0
  178. package/tools/v1/audit-logs/list-v1-audit-logs.d.ts.map +1 -0
  179. package/tools/v1/audit-logs/list-v1-audit-logs.js +59 -0
  180. package/tools/v1/audit-logs/list-v1-audit-logs.js.map +1 -0
  181. package/tools/v1/audit-logs/list-v1-audit-logs.mjs +55 -0
  182. package/tools/v1/audit-logs/list-v1-audit-logs.mjs.map +1 -0
  183. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.mts +32 -0
  184. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.mts.map +1 -0
  185. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.ts +32 -0
  186. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.ts.map +1 -0
  187. package/tools/v1/billable-metrics/archive-v1-billable-metrics.js +31 -0
  188. package/tools/v1/billable-metrics/archive-v1-billable-metrics.js.map +1 -0
  189. package/tools/v1/billable-metrics/archive-v1-billable-metrics.mjs +27 -0
  190. package/tools/v1/billable-metrics/archive-v1-billable-metrics.mjs.map +1 -0
  191. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.mts +32 -0
  192. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.mts.map +1 -0
  193. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.ts +32 -0
  194. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.ts.map +1 -0
  195. package/tools/v1/billable-metrics/create-v1-billable-metrics.js +120 -0
  196. package/tools/v1/billable-metrics/create-v1-billable-metrics.js.map +1 -0
  197. package/tools/v1/billable-metrics/create-v1-billable-metrics.mjs +116 -0
  198. package/tools/v1/billable-metrics/create-v1-billable-metrics.mjs.map +1 -0
  199. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.mts +32 -0
  200. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.mts.map +1 -0
  201. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.ts +32 -0
  202. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.ts.map +1 -0
  203. package/tools/v1/billable-metrics/list-v1-billable-metrics.js +40 -0
  204. package/tools/v1/billable-metrics/list-v1-billable-metrics.js.map +1 -0
  205. package/tools/v1/billable-metrics/list-v1-billable-metrics.mjs +36 -0
  206. package/tools/v1/billable-metrics/list-v1-billable-metrics.mjs.map +1 -0
  207. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.mts +32 -0
  208. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.mts.map +1 -0
  209. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.ts +32 -0
  210. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.ts.map +1 -0
  211. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.js +31 -0
  212. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.js.map +1 -0
  213. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.mjs +27 -0
  214. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.mjs.map +1 -0
  215. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.mts +32 -0
  216. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.mts.map +1 -0
  217. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.ts +32 -0
  218. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.ts.map +1 -0
  219. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.js +57 -0
  220. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.js.map +1 -0
  221. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.mjs +53 -0
  222. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.mjs.map +1 -0
  223. package/tools/v1/contracts/amend-v1-contracts.d.mts +32 -0
  224. package/tools/v1/contracts/amend-v1-contracts.d.mts.map +1 -0
  225. package/tools/v1/contracts/amend-v1-contracts.d.ts +32 -0
  226. package/tools/v1/contracts/amend-v1-contracts.d.ts.map +1 -0
  227. package/tools/v1/contracts/amend-v1-contracts.js +872 -0
  228. package/tools/v1/contracts/amend-v1-contracts.js.map +1 -0
  229. package/tools/v1/contracts/amend-v1-contracts.mjs +868 -0
  230. package/tools/v1/contracts/amend-v1-contracts.mjs.map +1 -0
  231. package/tools/v1/contracts/archive-v1-contracts.d.mts +32 -0
  232. package/tools/v1/contracts/archive-v1-contracts.d.mts.map +1 -0
  233. package/tools/v1/contracts/archive-v1-contracts.d.ts +32 -0
  234. package/tools/v1/contracts/archive-v1-contracts.d.ts.map +1 -0
  235. package/tools/v1/contracts/archive-v1-contracts.js +40 -0
  236. package/tools/v1/contracts/archive-v1-contracts.js.map +1 -0
  237. package/tools/v1/contracts/archive-v1-contracts.mjs +36 -0
  238. package/tools/v1/contracts/archive-v1-contracts.mjs.map +1 -0
  239. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.mts +32 -0
  240. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.mts.map +1 -0
  241. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.ts +32 -0
  242. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.ts.map +1 -0
  243. package/tools/v1/contracts/create-historical-invoices-v1-contracts.js +130 -0
  244. package/tools/v1/contracts/create-historical-invoices-v1-contracts.js.map +1 -0
  245. package/tools/v1/contracts/create-historical-invoices-v1-contracts.mjs +126 -0
  246. package/tools/v1/contracts/create-historical-invoices-v1-contracts.mjs.map +1 -0
  247. package/tools/v1/contracts/create-v1-contracts.d.mts +32 -0
  248. package/tools/v1/contracts/create-v1-contracts.d.mts.map +1 -0
  249. package/tools/v1/contracts/create-v1-contracts.d.ts +32 -0
  250. package/tools/v1/contracts/create-v1-contracts.d.ts.map +1 -0
  251. package/tools/v1/contracts/create-v1-contracts.js +1499 -0
  252. package/tools/v1/contracts/create-v1-contracts.js.map +1 -0
  253. package/tools/v1/contracts/create-v1-contracts.mjs +1495 -0
  254. package/tools/v1/contracts/create-v1-contracts.mjs.map +1 -0
  255. package/tools/v1/contracts/list-balances-v1-contracts.d.mts +32 -0
  256. package/tools/v1/contracts/list-balances-v1-contracts.d.mts.map +1 -0
  257. package/tools/v1/contracts/list-balances-v1-contracts.d.ts +32 -0
  258. package/tools/v1/contracts/list-balances-v1-contracts.d.ts.map +1 -0
  259. package/tools/v1/contracts/list-balances-v1-contracts.js +69 -0
  260. package/tools/v1/contracts/list-balances-v1-contracts.js.map +1 -0
  261. package/tools/v1/contracts/list-balances-v1-contracts.mjs +65 -0
  262. package/tools/v1/contracts/list-balances-v1-contracts.mjs.map +1 -0
  263. package/tools/v1/contracts/list-v1-contracts.d.mts +32 -0
  264. package/tools/v1/contracts/list-v1-contracts.d.mts.map +1 -0
  265. package/tools/v1/contracts/list-v1-contracts.d.ts +32 -0
  266. package/tools/v1/contracts/list-v1-contracts.d.ts.map +1 -0
  267. package/tools/v1/contracts/list-v1-contracts.js +53 -0
  268. package/tools/v1/contracts/list-v1-contracts.js.map +1 -0
  269. package/tools/v1/contracts/list-v1-contracts.mjs +49 -0
  270. package/tools/v1/contracts/list-v1-contracts.mjs.map +1 -0
  271. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.mts +32 -0
  272. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.mts.map +1 -0
  273. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.ts +32 -0
  274. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.ts.map +1 -0
  275. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.js +41 -0
  276. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.js.map +1 -0
  277. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.mjs +37 -0
  278. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.mjs.map +1 -0
  279. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.mts +32 -0
  280. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.mts.map +1 -0
  281. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.ts +32 -0
  282. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.ts.map +1 -0
  283. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.js +48 -0
  284. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.js.map +1 -0
  285. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.mjs +44 -0
  286. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.mjs.map +1 -0
  287. package/tools/v1/contracts/products/archive-contracts-v1-products.d.mts +32 -0
  288. package/tools/v1/contracts/products/archive-contracts-v1-products.d.mts.map +1 -0
  289. package/tools/v1/contracts/products/archive-contracts-v1-products.d.ts +32 -0
  290. package/tools/v1/contracts/products/archive-contracts-v1-products.d.ts.map +1 -0
  291. package/tools/v1/contracts/products/archive-contracts-v1-products.js +32 -0
  292. package/tools/v1/contracts/products/archive-contracts-v1-products.js.map +1 -0
  293. package/tools/v1/contracts/products/archive-contracts-v1-products.mjs +28 -0
  294. package/tools/v1/contracts/products/archive-contracts-v1-products.mjs.map +1 -0
  295. package/tools/v1/contracts/products/create-contracts-v1-products.d.mts +32 -0
  296. package/tools/v1/contracts/products/create-contracts-v1-products.d.mts.map +1 -0
  297. package/tools/v1/contracts/products/create-contracts-v1-products.d.ts +32 -0
  298. package/tools/v1/contracts/products/create-contracts-v1-products.d.ts.map +1 -0
  299. package/tools/v1/contracts/products/create-contracts-v1-products.js +132 -0
  300. package/tools/v1/contracts/products/create-contracts-v1-products.js.map +1 -0
  301. package/tools/v1/contracts/products/create-contracts-v1-products.mjs +128 -0
  302. package/tools/v1/contracts/products/create-contracts-v1-products.mjs.map +1 -0
  303. package/tools/v1/contracts/products/list-contracts-v1-products.d.mts +32 -0
  304. package/tools/v1/contracts/products/list-contracts-v1-products.d.mts.map +1 -0
  305. package/tools/v1/contracts/products/list-contracts-v1-products.d.ts +32 -0
  306. package/tools/v1/contracts/products/list-contracts-v1-products.d.ts.map +1 -0
  307. package/tools/v1/contracts/products/list-contracts-v1-products.js +41 -0
  308. package/tools/v1/contracts/products/list-contracts-v1-products.js.map +1 -0
  309. package/tools/v1/contracts/products/list-contracts-v1-products.mjs +37 -0
  310. package/tools/v1/contracts/products/list-contracts-v1-products.mjs.map +1 -0
  311. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.mts +32 -0
  312. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.mts.map +1 -0
  313. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.ts +32 -0
  314. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.ts.map +1 -0
  315. package/tools/v1/contracts/products/retrieve-contracts-v1-products.js +31 -0
  316. package/tools/v1/contracts/products/retrieve-contracts-v1-products.js.map +1 -0
  317. package/tools/v1/contracts/products/retrieve-contracts-v1-products.mjs +27 -0
  318. package/tools/v1/contracts/products/retrieve-contracts-v1-products.mjs.map +1 -0
  319. package/tools/v1/contracts/products/update-contracts-v1-products.d.mts +32 -0
  320. package/tools/v1/contracts/products/update-contracts-v1-products.d.mts.map +1 -0
  321. package/tools/v1/contracts/products/update-contracts-v1-products.d.ts +32 -0
  322. package/tools/v1/contracts/products/update-contracts-v1-products.d.ts.map +1 -0
  323. package/tools/v1/contracts/products/update-contracts-v1-products.js +138 -0
  324. package/tools/v1/contracts/products/update-contracts-v1-products.js.map +1 -0
  325. package/tools/v1/contracts/products/update-contracts-v1-products.mjs +134 -0
  326. package/tools/v1/contracts/products/update-contracts-v1-products.mjs.map +1 -0
  327. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.mts +32 -0
  328. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.mts.map +1 -0
  329. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.ts +32 -0
  330. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.ts.map +1 -0
  331. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.js +31 -0
  332. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.js.map +1 -0
  333. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.mjs +27 -0
  334. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.mjs.map +1 -0
  335. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.mts +32 -0
  336. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.mts.map +1 -0
  337. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.ts +32 -0
  338. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.ts.map +1 -0
  339. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.js +79 -0
  340. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.js.map +1 -0
  341. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.mjs +75 -0
  342. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.mjs.map +1 -0
  343. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.mts +32 -0
  344. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.mts.map +1 -0
  345. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.ts +32 -0
  346. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.ts.map +1 -0
  347. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.js +39 -0
  348. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.js.map +1 -0
  349. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.mjs +35 -0
  350. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.mjs.map +1 -0
  351. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.mts +32 -0
  352. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.mts.map +1 -0
  353. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.ts +32 -0
  354. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.ts.map +1 -0
  355. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.js +45 -0
  356. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.js.map +1 -0
  357. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.mjs +41 -0
  358. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.mjs.map +1 -0
  359. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.mts +32 -0
  360. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.mts.map +1 -0
  361. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.ts +32 -0
  362. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.ts.map +1 -0
  363. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.js +52 -0
  364. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.js.map +1 -0
  365. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.mjs +48 -0
  366. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.mjs.map +1 -0
  367. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.mts +32 -0
  368. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.mts.map +1 -0
  369. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.ts +32 -0
  370. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.ts.map +1 -0
  371. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.js +38 -0
  372. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.js.map +1 -0
  373. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.mjs +34 -0
  374. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.mjs.map +1 -0
  375. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.mts +32 -0
  376. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.mts.map +1 -0
  377. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.ts +32 -0
  378. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.ts.map +1 -0
  379. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.js +49 -0
  380. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.js.map +1 -0
  381. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.mjs +45 -0
  382. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.mjs.map +1 -0
  383. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.mts +32 -0
  384. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.mts.map +1 -0
  385. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.ts +32 -0
  386. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.ts.map +1 -0
  387. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.js +137 -0
  388. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.js.map +1 -0
  389. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.mjs +133 -0
  390. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.mjs.map +1 -0
  391. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.mts +32 -0
  392. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.mts.map +1 -0
  393. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.ts +32 -0
  394. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.ts.map +1 -0
  395. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.js +129 -0
  396. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.js.map +1 -0
  397. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.mjs +125 -0
  398. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.mjs.map +1 -0
  399. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.mts +32 -0
  400. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.mts.map +1 -0
  401. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.ts +32 -0
  402. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.ts.map +1 -0
  403. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.js +79 -0
  404. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.js.map +1 -0
  405. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.mjs +75 -0
  406. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.mjs.map +1 -0
  407. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.mts +32 -0
  408. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.mts.map +1 -0
  409. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.ts +32 -0
  410. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.ts.map +1 -0
  411. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.js +31 -0
  412. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.js.map +1 -0
  413. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.mjs +27 -0
  414. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.mjs.map +1 -0
  415. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.mts +32 -0
  416. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.mts.map +1 -0
  417. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.ts +32 -0
  418. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.ts.map +1 -0
  419. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.js +77 -0
  420. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.js.map +1 -0
  421. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.mjs +73 -0
  422. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.mjs.map +1 -0
  423. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.mts +32 -0
  424. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.mts.map +1 -0
  425. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.ts +32 -0
  426. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.ts.map +1 -0
  427. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.js +60 -0
  428. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.js.map +1 -0
  429. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.mjs +56 -0
  430. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.mjs.map +1 -0
  431. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.mts +32 -0
  432. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.mts.map +1 -0
  433. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.ts +32 -0
  434. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.ts.map +1 -0
  435. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.js +83 -0
  436. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.js.map +1 -0
  437. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.mjs +79 -0
  438. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.mjs.map +1 -0
  439. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.mts +32 -0
  440. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.mts.map +1 -0
  441. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.ts +32 -0
  442. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.ts.map +1 -0
  443. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.js +37 -0
  444. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.js.map +1 -0
  445. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.mjs +33 -0
  446. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.mjs.map +1 -0
  447. package/tools/v1/contracts/retrieve-v1-contracts.d.mts +32 -0
  448. package/tools/v1/contracts/retrieve-v1-contracts.d.mts.map +1 -0
  449. package/tools/v1/contracts/retrieve-v1-contracts.d.ts +32 -0
  450. package/tools/v1/contracts/retrieve-v1-contracts.d.ts.map +1 -0
  451. package/tools/v1/contracts/retrieve-v1-contracts.js +42 -0
  452. package/tools/v1/contracts/retrieve-v1-contracts.js.map +1 -0
  453. package/tools/v1/contracts/retrieve-v1-contracts.mjs +38 -0
  454. package/tools/v1/contracts/retrieve-v1-contracts.mjs.map +1 -0
  455. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.mts +32 -0
  456. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.mts.map +1 -0
  457. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.ts +32 -0
  458. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.ts.map +1 -0
  459. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.js +93 -0
  460. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.js.map +1 -0
  461. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.mjs +89 -0
  462. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.mjs.map +1 -0
  463. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.mts +32 -0
  464. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.mts.map +1 -0
  465. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.ts +32 -0
  466. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.ts.map +1 -0
  467. package/tools/v1/contracts/set-usage-filter-v1-contracts.js +47 -0
  468. package/tools/v1/contracts/set-usage-filter-v1-contracts.js.map +1 -0
  469. package/tools/v1/contracts/set-usage-filter-v1-contracts.mjs +43 -0
  470. package/tools/v1/contracts/set-usage-filter-v1-contracts.mjs.map +1 -0
  471. package/tools/v1/contracts/update-end-date-v1-contracts.d.mts +32 -0
  472. package/tools/v1/contracts/update-end-date-v1-contracts.d.mts.map +1 -0
  473. package/tools/v1/contracts/update-end-date-v1-contracts.d.ts +32 -0
  474. package/tools/v1/contracts/update-end-date-v1-contracts.d.ts.map +1 -0
  475. package/tools/v1/contracts/update-end-date-v1-contracts.js +45 -0
  476. package/tools/v1/contracts/update-end-date-v1-contracts.js.map +1 -0
  477. package/tools/v1/contracts/update-end-date-v1-contracts.mjs +41 -0
  478. package/tools/v1/contracts/update-end-date-v1-contracts.mjs.map +1 -0
  479. package/tools/v1/credit-grants/create-v1-credit-grants.d.mts +32 -0
  480. package/tools/v1/credit-grants/create-v1-credit-grants.d.mts.map +1 -0
  481. package/tools/v1/credit-grants/create-v1-credit-grants.d.ts +32 -0
  482. package/tools/v1/credit-grants/create-v1-credit-grants.d.ts.map +1 -0
  483. package/tools/v1/credit-grants/create-v1-credit-grants.js +162 -0
  484. package/tools/v1/credit-grants/create-v1-credit-grants.js.map +1 -0
  485. package/tools/v1/credit-grants/create-v1-credit-grants.mjs +158 -0
  486. package/tools/v1/credit-grants/create-v1-credit-grants.mjs.map +1 -0
  487. package/tools/v1/credit-grants/edit-v1-credit-grants.d.mts +32 -0
  488. package/tools/v1/credit-grants/edit-v1-credit-grants.d.mts.map +1 -0
  489. package/tools/v1/credit-grants/edit-v1-credit-grants.d.ts +32 -0
  490. package/tools/v1/credit-grants/edit-v1-credit-grants.d.ts.map +1 -0
  491. package/tools/v1/credit-grants/edit-v1-credit-grants.js +45 -0
  492. package/tools/v1/credit-grants/edit-v1-credit-grants.js.map +1 -0
  493. package/tools/v1/credit-grants/edit-v1-credit-grants.mjs +41 -0
  494. package/tools/v1/credit-grants/edit-v1-credit-grants.mjs.map +1 -0
  495. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.mts +32 -0
  496. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.mts.map +1 -0
  497. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.ts +32 -0
  498. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.ts.map +1 -0
  499. package/tools/v1/credit-grants/list-entries-v1-credit-grants.js +56 -0
  500. package/tools/v1/credit-grants/list-entries-v1-credit-grants.js.map +1 -0
  501. package/tools/v1/credit-grants/list-entries-v1-credit-grants.mjs +52 -0
  502. package/tools/v1/credit-grants/list-entries-v1-credit-grants.mjs.map +1 -0
  503. package/tools/v1/credit-grants/list-v1-credit-grants.d.mts +32 -0
  504. package/tools/v1/credit-grants/list-v1-credit-grants.d.mts.map +1 -0
  505. package/tools/v1/credit-grants/list-v1-credit-grants.d.ts +32 -0
  506. package/tools/v1/credit-grants/list-v1-credit-grants.d.ts.map +1 -0
  507. package/tools/v1/credit-grants/list-v1-credit-grants.js +67 -0
  508. package/tools/v1/credit-grants/list-v1-credit-grants.js.map +1 -0
  509. package/tools/v1/credit-grants/list-v1-credit-grants.mjs +63 -0
  510. package/tools/v1/credit-grants/list-v1-credit-grants.mjs.map +1 -0
  511. package/tools/v1/credit-grants/void-v1-credit-grants.d.mts +32 -0
  512. package/tools/v1/credit-grants/void-v1-credit-grants.d.mts.map +1 -0
  513. package/tools/v1/credit-grants/void-v1-credit-grants.d.ts +32 -0
  514. package/tools/v1/credit-grants/void-v1-credit-grants.d.ts.map +1 -0
  515. package/tools/v1/credit-grants/void-v1-credit-grants.js +39 -0
  516. package/tools/v1/credit-grants/void-v1-credit-grants.js.map +1 -0
  517. package/tools/v1/credit-grants/void-v1-credit-grants.mjs +35 -0
  518. package/tools/v1/credit-grants/void-v1-credit-grants.mjs.map +1 -0
  519. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.mts +32 -0
  520. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.mts.map +1 -0
  521. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.ts +32 -0
  522. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.ts.map +1 -0
  523. package/tools/v1/custom-fields/add-key-v1-custom-fields.js +57 -0
  524. package/tools/v1/custom-fields/add-key-v1-custom-fields.js.map +1 -0
  525. package/tools/v1/custom-fields/add-key-v1-custom-fields.mjs +53 -0
  526. package/tools/v1/custom-fields/add-key-v1-custom-fields.mjs.map +1 -0
  527. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.mts +32 -0
  528. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.mts.map +1 -0
  529. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.ts +32 -0
  530. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.ts.map +1 -0
  531. package/tools/v1/custom-fields/delete-values-v1-custom-fields.js +60 -0
  532. package/tools/v1/custom-fields/delete-values-v1-custom-fields.js.map +1 -0
  533. package/tools/v1/custom-fields/delete-values-v1-custom-fields.mjs +56 -0
  534. package/tools/v1/custom-fields/delete-values-v1-custom-fields.mjs.map +1 -0
  535. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.mts +32 -0
  536. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.mts.map +1 -0
  537. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.ts +32 -0
  538. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.ts.map +1 -0
  539. package/tools/v1/custom-fields/list-keys-v1-custom-fields.js +59 -0
  540. package/tools/v1/custom-fields/list-keys-v1-custom-fields.js.map +1 -0
  541. package/tools/v1/custom-fields/list-keys-v1-custom-fields.mjs +55 -0
  542. package/tools/v1/custom-fields/list-keys-v1-custom-fields.mjs.map +1 -0
  543. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.mts +32 -0
  544. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.mts.map +1 -0
  545. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.ts +32 -0
  546. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.ts.map +1 -0
  547. package/tools/v1/custom-fields/remove-key-v1-custom-fields.js +54 -0
  548. package/tools/v1/custom-fields/remove-key-v1-custom-fields.js.map +1 -0
  549. package/tools/v1/custom-fields/remove-key-v1-custom-fields.mjs +50 -0
  550. package/tools/v1/custom-fields/remove-key-v1-custom-fields.mjs.map +1 -0
  551. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.mts +32 -0
  552. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.mts.map +1 -0
  553. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.ts +32 -0
  554. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.ts.map +1 -0
  555. package/tools/v1/custom-fields/set-values-v1-custom-fields.js +57 -0
  556. package/tools/v1/custom-fields/set-values-v1-custom-fields.js.map +1 -0
  557. package/tools/v1/custom-fields/set-values-v1-custom-fields.mjs +53 -0
  558. package/tools/v1/custom-fields/set-values-v1-custom-fields.mjs.map +1 -0
  559. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.mts +32 -0
  560. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.mts.map +1 -0
  561. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.ts +32 -0
  562. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.ts.map +1 -0
  563. package/tools/v1/customers/alerts/list-customers-v1-alerts.js +44 -0
  564. package/tools/v1/customers/alerts/list-customers-v1-alerts.js.map +1 -0
  565. package/tools/v1/customers/alerts/list-customers-v1-alerts.mjs +40 -0
  566. package/tools/v1/customers/alerts/list-customers-v1-alerts.mjs.map +1 -0
  567. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.mts +32 -0
  568. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.mts.map +1 -0
  569. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.ts +32 -0
  570. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.ts.map +1 -0
  571. package/tools/v1/customers/alerts/reset-customers-v1-alerts.js +36 -0
  572. package/tools/v1/customers/alerts/reset-customers-v1-alerts.js.map +1 -0
  573. package/tools/v1/customers/alerts/reset-customers-v1-alerts.mjs +32 -0
  574. package/tools/v1/customers/alerts/reset-customers-v1-alerts.mjs.map +1 -0
  575. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.mts +32 -0
  576. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.mts.map +1 -0
  577. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.ts +32 -0
  578. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.ts.map +1 -0
  579. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.js +41 -0
  580. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.js.map +1 -0
  581. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.mjs +37 -0
  582. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.mjs.map +1 -0
  583. package/tools/v1/customers/archive-v1-customers.d.mts +32 -0
  584. package/tools/v1/customers/archive-v1-customers.d.mts.map +1 -0
  585. package/tools/v1/customers/archive-v1-customers.d.ts +32 -0
  586. package/tools/v1/customers/archive-v1-customers.d.ts.map +1 -0
  587. package/tools/v1/customers/archive-v1-customers.js +31 -0
  588. package/tools/v1/customers/archive-v1-customers.js.map +1 -0
  589. package/tools/v1/customers/archive-v1-customers.mjs +27 -0
  590. package/tools/v1/customers/archive-v1-customers.mjs.map +1 -0
  591. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.mts +32 -0
  592. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.mts.map +1 -0
  593. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.ts +32 -0
  594. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.ts.map +1 -0
  595. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.js +85 -0
  596. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.js.map +1 -0
  597. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.mjs +81 -0
  598. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.mjs.map +1 -0
  599. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.mts +32 -0
  600. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.mts.map +1 -0
  601. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.ts +32 -0
  602. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.ts.map +1 -0
  603. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.js +44 -0
  604. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.js.map +1 -0
  605. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.mjs +40 -0
  606. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.mjs.map +1 -0
  607. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.mts +32 -0
  608. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.mts.map +1 -0
  609. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.ts +32 -0
  610. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.ts.map +1 -0
  611. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.js +44 -0
  612. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.js.map +1 -0
  613. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.mjs +40 -0
  614. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.mjs.map +1 -0
  615. package/tools/v1/customers/commits/create-customers-v1-commits.d.mts +32 -0
  616. package/tools/v1/customers/commits/create-customers-v1-commits.d.mts.map +1 -0
  617. package/tools/v1/customers/commits/create-customers-v1-commits.d.ts +32 -0
  618. package/tools/v1/customers/commits/create-customers-v1-commits.d.ts.map +1 -0
  619. package/tools/v1/customers/commits/create-customers-v1-commits.js +230 -0
  620. package/tools/v1/customers/commits/create-customers-v1-commits.js.map +1 -0
  621. package/tools/v1/customers/commits/create-customers-v1-commits.mjs +226 -0
  622. package/tools/v1/customers/commits/create-customers-v1-commits.mjs.map +1 -0
  623. package/tools/v1/customers/commits/list-customers-v1-commits.d.mts +32 -0
  624. package/tools/v1/customers/commits/list-customers-v1-commits.d.mts.map +1 -0
  625. package/tools/v1/customers/commits/list-customers-v1-commits.d.ts +32 -0
  626. package/tools/v1/customers/commits/list-customers-v1-commits.d.ts.map +1 -0
  627. package/tools/v1/customers/commits/list-customers-v1-commits.js +69 -0
  628. package/tools/v1/customers/commits/list-customers-v1-commits.js.map +1 -0
  629. package/tools/v1/customers/commits/list-customers-v1-commits.mjs +65 -0
  630. package/tools/v1/customers/commits/list-customers-v1-commits.mjs.map +1 -0
  631. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.mts +32 -0
  632. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.mts.map +1 -0
  633. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.ts +32 -0
  634. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.ts.map +1 -0
  635. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.js +46 -0
  636. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.js.map +1 -0
  637. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.mjs +42 -0
  638. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.mjs.map +1 -0
  639. package/tools/v1/customers/create-v1-customers.d.mts +32 -0
  640. package/tools/v1/customers/create-v1-customers.d.mts.map +1 -0
  641. package/tools/v1/customers/create-v1-customers.d.ts +32 -0
  642. package/tools/v1/customers/create-v1-customers.d.ts.map +1 -0
  643. package/tools/v1/customers/create-v1-customers.js +136 -0
  644. package/tools/v1/customers/create-v1-customers.js.map +1 -0
  645. package/tools/v1/customers/create-v1-customers.mjs +132 -0
  646. package/tools/v1/customers/create-v1-customers.mjs.map +1 -0
  647. package/tools/v1/customers/credits/create-customers-v1-credits.d.mts +32 -0
  648. package/tools/v1/customers/credits/create-customers-v1-credits.d.mts.map +1 -0
  649. package/tools/v1/customers/credits/create-customers-v1-credits.d.ts +32 -0
  650. package/tools/v1/customers/credits/create-customers-v1-credits.d.ts.map +1 -0
  651. package/tools/v1/customers/credits/create-customers-v1-credits.js +146 -0
  652. package/tools/v1/customers/credits/create-customers-v1-credits.js.map +1 -0
  653. package/tools/v1/customers/credits/create-customers-v1-credits.mjs +142 -0
  654. package/tools/v1/customers/credits/create-customers-v1-credits.mjs.map +1 -0
  655. package/tools/v1/customers/credits/list-customers-v1-credits.d.mts +32 -0
  656. package/tools/v1/customers/credits/list-customers-v1-credits.d.mts.map +1 -0
  657. package/tools/v1/customers/credits/list-customers-v1-credits.d.ts +32 -0
  658. package/tools/v1/customers/credits/list-customers-v1-credits.d.ts.map +1 -0
  659. package/tools/v1/customers/credits/list-customers-v1-credits.js +69 -0
  660. package/tools/v1/customers/credits/list-customers-v1-credits.js.map +1 -0
  661. package/tools/v1/customers/credits/list-customers-v1-credits.mjs +65 -0
  662. package/tools/v1/customers/credits/list-customers-v1-credits.mjs.map +1 -0
  663. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.mts +32 -0
  664. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.mts.map +1 -0
  665. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.ts +32 -0
  666. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.ts.map +1 -0
  667. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.js +41 -0
  668. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.js.map +1 -0
  669. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.mjs +37 -0
  670. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.mjs.map +1 -0
  671. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.mts +32 -0
  672. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.mts.map +1 -0
  673. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.ts +32 -0
  674. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.ts.map +1 -0
  675. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.js +54 -0
  676. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.js.map +1 -0
  677. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.mjs +50 -0
  678. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.mjs.map +1 -0
  679. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.mts +32 -0
  680. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.mts.map +1 -0
  681. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.ts +32 -0
  682. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.ts.map +1 -0
  683. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.js +71 -0
  684. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.js.map +1 -0
  685. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.mjs +67 -0
  686. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.mjs.map +1 -0
  687. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.mts +32 -0
  688. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.mts.map +1 -0
  689. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.ts +32 -0
  690. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.ts.map +1 -0
  691. package/tools/v1/customers/invoices/list-customers-v1-invoices.js +66 -0
  692. package/tools/v1/customers/invoices/list-customers-v1-invoices.js.map +1 -0
  693. package/tools/v1/customers/invoices/list-customers-v1-invoices.mjs +62 -0
  694. package/tools/v1/customers/invoices/list-customers-v1-invoices.mjs.map +1 -0
  695. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.mts +32 -0
  696. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.mts.map +1 -0
  697. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.ts +32 -0
  698. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.ts.map +1 -0
  699. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.js +38 -0
  700. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.js.map +1 -0
  701. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.mjs +34 -0
  702. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.mjs.map +1 -0
  703. package/tools/v1/customers/list-billable-metrics-v1-customers.d.mts +32 -0
  704. package/tools/v1/customers/list-billable-metrics-v1-customers.d.mts.map +1 -0
  705. package/tools/v1/customers/list-billable-metrics-v1-customers.d.ts +32 -0
  706. package/tools/v1/customers/list-billable-metrics-v1-customers.d.ts.map +1 -0
  707. package/tools/v1/customers/list-billable-metrics-v1-customers.js +47 -0
  708. package/tools/v1/customers/list-billable-metrics-v1-customers.js.map +1 -0
  709. package/tools/v1/customers/list-billable-metrics-v1-customers.mjs +43 -0
  710. package/tools/v1/customers/list-billable-metrics-v1-customers.mjs.map +1 -0
  711. package/tools/v1/customers/list-costs-v1-customers.d.mts +32 -0
  712. package/tools/v1/customers/list-costs-v1-customers.d.mts.map +1 -0
  713. package/tools/v1/customers/list-costs-v1-customers.d.ts +32 -0
  714. package/tools/v1/customers/list-costs-v1-customers.d.ts.map +1 -0
  715. package/tools/v1/customers/list-costs-v1-customers.js +49 -0
  716. package/tools/v1/customers/list-costs-v1-customers.js.map +1 -0
  717. package/tools/v1/customers/list-costs-v1-customers.mjs +45 -0
  718. package/tools/v1/customers/list-costs-v1-customers.mjs.map +1 -0
  719. package/tools/v1/customers/list-v1-customers.d.mts +32 -0
  720. package/tools/v1/customers/list-v1-customers.d.mts.map +1 -0
  721. package/tools/v1/customers/list-v1-customers.d.ts +32 -0
  722. package/tools/v1/customers/list-v1-customers.d.ts.map +1 -0
  723. package/tools/v1/customers/list-v1-customers.js +58 -0
  724. package/tools/v1/customers/list-v1-customers.js.map +1 -0
  725. package/tools/v1/customers/list-v1-customers.mjs +54 -0
  726. package/tools/v1/customers/list-v1-customers.mjs.map +1 -0
  727. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.mts +32 -0
  728. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.mts.map +1 -0
  729. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.ts +32 -0
  730. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.ts.map +1 -0
  731. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.js +41 -0
  732. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.js.map +1 -0
  733. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.mjs +37 -0
  734. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.mjs.map +1 -0
  735. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.mts +32 -0
  736. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.mts.map +1 -0
  737. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.ts +32 -0
  738. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.ts.map +1 -0
  739. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.js +48 -0
  740. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.js.map +1 -0
  741. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.mjs +44 -0
  742. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.mjs.map +1 -0
  743. package/tools/v1/customers/plans/add-customers-v1-plans.d.mts +32 -0
  744. package/tools/v1/customers/plans/add-customers-v1-plans.d.mts.map +1 -0
  745. package/tools/v1/customers/plans/add-customers-v1-plans.d.ts +32 -0
  746. package/tools/v1/customers/plans/add-customers-v1-plans.d.ts.map +1 -0
  747. package/tools/v1/customers/plans/add-customers-v1-plans.js +126 -0
  748. package/tools/v1/customers/plans/add-customers-v1-plans.js.map +1 -0
  749. package/tools/v1/customers/plans/add-customers-v1-plans.mjs +122 -0
  750. package/tools/v1/customers/plans/add-customers-v1-plans.mjs.map +1 -0
  751. package/tools/v1/customers/plans/end-customers-v1-plans.d.mts +32 -0
  752. package/tools/v1/customers/plans/end-customers-v1-plans.d.mts.map +1 -0
  753. package/tools/v1/customers/plans/end-customers-v1-plans.d.ts +32 -0
  754. package/tools/v1/customers/plans/end-customers-v1-plans.d.ts.map +1 -0
  755. package/tools/v1/customers/plans/end-customers-v1-plans.js +47 -0
  756. package/tools/v1/customers/plans/end-customers-v1-plans.js.map +1 -0
  757. package/tools/v1/customers/plans/end-customers-v1-plans.mjs +43 -0
  758. package/tools/v1/customers/plans/end-customers-v1-plans.mjs.map +1 -0
  759. package/tools/v1/customers/plans/list-customers-v1-plans.d.mts +32 -0
  760. package/tools/v1/customers/plans/list-customers-v1-plans.d.mts.map +1 -0
  761. package/tools/v1/customers/plans/list-customers-v1-plans.d.ts +32 -0
  762. package/tools/v1/customers/plans/list-customers-v1-plans.d.ts.map +1 -0
  763. package/tools/v1/customers/plans/list-customers-v1-plans.js +39 -0
  764. package/tools/v1/customers/plans/list-customers-v1-plans.js.map +1 -0
  765. package/tools/v1/customers/plans/list-customers-v1-plans.mjs +35 -0
  766. package/tools/v1/customers/plans/list-customers-v1-plans.mjs.map +1 -0
  767. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.mts +32 -0
  768. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.mts.map +1 -0
  769. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.ts +32 -0
  770. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.ts.map +1 -0
  771. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.js +42 -0
  772. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.js.map +1 -0
  773. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.mjs +38 -0
  774. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.mjs.map +1 -0
  775. package/tools/v1/customers/retrieve-v1-customers.d.mts +32 -0
  776. package/tools/v1/customers/retrieve-v1-customers.d.mts.map +1 -0
  777. package/tools/v1/customers/retrieve-v1-customers.d.ts +32 -0
  778. package/tools/v1/customers/retrieve-v1-customers.d.ts.map +1 -0
  779. package/tools/v1/customers/retrieve-v1-customers.js +31 -0
  780. package/tools/v1/customers/retrieve-v1-customers.js.map +1 -0
  781. package/tools/v1/customers/retrieve-v1-customers.mjs +27 -0
  782. package/tools/v1/customers/retrieve-v1-customers.mjs.map +1 -0
  783. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.mts +32 -0
  784. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.mts.map +1 -0
  785. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.ts +32 -0
  786. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.ts.map +1 -0
  787. package/tools/v1/customers/set-ingest-aliases-v1-customers.js +37 -0
  788. package/tools/v1/customers/set-ingest-aliases-v1-customers.js.map +1 -0
  789. package/tools/v1/customers/set-ingest-aliases-v1-customers.mjs +33 -0
  790. package/tools/v1/customers/set-ingest-aliases-v1-customers.mjs.map +1 -0
  791. package/tools/v1/customers/set-name-v1-customers.d.mts +32 -0
  792. package/tools/v1/customers/set-name-v1-customers.d.mts.map +1 -0
  793. package/tools/v1/customers/set-name-v1-customers.d.ts +32 -0
  794. package/tools/v1/customers/set-name-v1-customers.d.ts.map +1 -0
  795. package/tools/v1/customers/set-name-v1-customers.js +35 -0
  796. package/tools/v1/customers/set-name-v1-customers.js.map +1 -0
  797. package/tools/v1/customers/set-name-v1-customers.mjs +31 -0
  798. package/tools/v1/customers/set-name-v1-customers.mjs.map +1 -0
  799. package/tools/v1/customers/update-config-v1-customers.d.mts +32 -0
  800. package/tools/v1/customers/update-config-v1-customers.d.mts.map +1 -0
  801. package/tools/v1/customers/update-config-v1-customers.d.ts +32 -0
  802. package/tools/v1/customers/update-config-v1-customers.d.ts.map +1 -0
  803. package/tools/v1/customers/update-config-v1-customers.js +39 -0
  804. package/tools/v1/customers/update-config-v1-customers.js.map +1 -0
  805. package/tools/v1/customers/update-config-v1-customers.mjs +35 -0
  806. package/tools/v1/customers/update-config-v1-customers.mjs.map +1 -0
  807. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.mts +32 -0
  808. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.mts.map +1 -0
  809. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.ts +32 -0
  810. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.ts.map +1 -0
  811. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.js +115 -0
  812. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.js.map +1 -0
  813. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.mjs +111 -0
  814. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.mjs.map +1 -0
  815. package/tools/v1/invoices/regenerate-v1-invoices.d.mts +32 -0
  816. package/tools/v1/invoices/regenerate-v1-invoices.d.mts.map +1 -0
  817. package/tools/v1/invoices/regenerate-v1-invoices.d.ts +32 -0
  818. package/tools/v1/invoices/regenerate-v1-invoices.d.ts.map +1 -0
  819. package/tools/v1/invoices/regenerate-v1-invoices.js +32 -0
  820. package/tools/v1/invoices/regenerate-v1-invoices.js.map +1 -0
  821. package/tools/v1/invoices/regenerate-v1-invoices.mjs +28 -0
  822. package/tools/v1/invoices/regenerate-v1-invoices.mjs.map +1 -0
  823. package/tools/v1/invoices/void-v1-invoices.d.mts +32 -0
  824. package/tools/v1/invoices/void-v1-invoices.d.mts.map +1 -0
  825. package/tools/v1/invoices/void-v1-invoices.d.ts +32 -0
  826. package/tools/v1/invoices/void-v1-invoices.d.ts.map +1 -0
  827. package/tools/v1/invoices/void-v1-invoices.js +32 -0
  828. package/tools/v1/invoices/void-v1-invoices.js.map +1 -0
  829. package/tools/v1/invoices/void-v1-invoices.mjs +28 -0
  830. package/tools/v1/invoices/void-v1-invoices.mjs.map +1 -0
  831. package/tools/v1/plans/get-details-v1-plans.d.mts +32 -0
  832. package/tools/v1/plans/get-details-v1-plans.d.mts.map +1 -0
  833. package/tools/v1/plans/get-details-v1-plans.d.ts +32 -0
  834. package/tools/v1/plans/get-details-v1-plans.d.ts.map +1 -0
  835. package/tools/v1/plans/get-details-v1-plans.js +31 -0
  836. package/tools/v1/plans/get-details-v1-plans.js.map +1 -0
  837. package/tools/v1/plans/get-details-v1-plans.mjs +27 -0
  838. package/tools/v1/plans/get-details-v1-plans.mjs.map +1 -0
  839. package/tools/v1/plans/list-charges-v1-plans.d.mts +32 -0
  840. package/tools/v1/plans/list-charges-v1-plans.d.mts.map +1 -0
  841. package/tools/v1/plans/list-charges-v1-plans.d.ts +32 -0
  842. package/tools/v1/plans/list-charges-v1-plans.d.ts.map +1 -0
  843. package/tools/v1/plans/list-charges-v1-plans.js +39 -0
  844. package/tools/v1/plans/list-charges-v1-plans.js.map +1 -0
  845. package/tools/v1/plans/list-charges-v1-plans.mjs +35 -0
  846. package/tools/v1/plans/list-charges-v1-plans.mjs.map +1 -0
  847. package/tools/v1/plans/list-customers-v1-plans.d.mts +32 -0
  848. package/tools/v1/plans/list-customers-v1-plans.d.mts.map +1 -0
  849. package/tools/v1/plans/list-customers-v1-plans.d.ts +32 -0
  850. package/tools/v1/plans/list-customers-v1-plans.d.ts.map +1 -0
  851. package/tools/v1/plans/list-customers-v1-plans.js +44 -0
  852. package/tools/v1/plans/list-customers-v1-plans.js.map +1 -0
  853. package/tools/v1/plans/list-customers-v1-plans.mjs +40 -0
  854. package/tools/v1/plans/list-customers-v1-plans.mjs.map +1 -0
  855. package/tools/v1/plans/list-v1-plans.d.mts +32 -0
  856. package/tools/v1/plans/list-v1-plans.d.mts.map +1 -0
  857. package/tools/v1/plans/list-v1-plans.d.ts +32 -0
  858. package/tools/v1/plans/list-v1-plans.d.ts.map +1 -0
  859. package/tools/v1/plans/list-v1-plans.js +36 -0
  860. package/tools/v1/plans/list-v1-plans.js.map +1 -0
  861. package/tools/v1/plans/list-v1-plans.mjs +32 -0
  862. package/tools/v1/plans/list-v1-plans.mjs.map +1 -0
  863. package/tools/v1/pricing-units/list-v1-pricing-units.d.mts +32 -0
  864. package/tools/v1/pricing-units/list-v1-pricing-units.d.mts.map +1 -0
  865. package/tools/v1/pricing-units/list-v1-pricing-units.d.ts +32 -0
  866. package/tools/v1/pricing-units/list-v1-pricing-units.d.ts.map +1 -0
  867. package/tools/v1/pricing-units/list-v1-pricing-units.js +36 -0
  868. package/tools/v1/pricing-units/list-v1-pricing-units.js.map +1 -0
  869. package/tools/v1/pricing-units/list-v1-pricing-units.mjs +32 -0
  870. package/tools/v1/pricing-units/list-v1-pricing-units.mjs.map +1 -0
  871. package/tools/v1/services/list-v1-services.d.mts +32 -0
  872. package/tools/v1/services/list-v1-services.d.mts.map +1 -0
  873. package/tools/v1/services/list-v1-services.d.ts +32 -0
  874. package/tools/v1/services/list-v1-services.d.ts.map +1 -0
  875. package/tools/v1/services/list-v1-services.js +26 -0
  876. package/tools/v1/services/list-v1-services.js.map +1 -0
  877. package/tools/v1/services/list-v1-services.mjs +22 -0
  878. package/tools/v1/services/list-v1-services.mjs.map +1 -0
  879. package/tools/v1/usage/ingest-v1-usage.d.mts +32 -0
  880. package/tools/v1/usage/ingest-v1-usage.d.mts.map +1 -0
  881. package/tools/v1/usage/ingest-v1-usage.d.ts +32 -0
  882. package/tools/v1/usage/ingest-v1-usage.d.ts.map +1 -0
  883. package/tools/v1/usage/ingest-v1-usage.js +53 -0
  884. package/tools/v1/usage/ingest-v1-usage.js.map +1 -0
  885. package/tools/v1/usage/ingest-v1-usage.mjs +49 -0
  886. package/tools/v1/usage/ingest-v1-usage.mjs.map +1 -0
  887. package/tools/v1/usage/list-v1-usage.d.mts +32 -0
  888. package/tools/v1/usage/list-v1-usage.d.mts.map +1 -0
  889. package/tools/v1/usage/list-v1-usage.d.ts +32 -0
  890. package/tools/v1/usage/list-v1-usage.d.ts.map +1 -0
  891. package/tools/v1/usage/list-v1-usage.js +82 -0
  892. package/tools/v1/usage/list-v1-usage.js.map +1 -0
  893. package/tools/v1/usage/list-v1-usage.mjs +78 -0
  894. package/tools/v1/usage/list-v1-usage.mjs.map +1 -0
  895. package/tools/v1/usage/list-with-groups-v1-usage.d.mts +32 -0
  896. package/tools/v1/usage/list-with-groups-v1-usage.d.mts.map +1 -0
  897. package/tools/v1/usage/list-with-groups-v1-usage.d.ts +32 -0
  898. package/tools/v1/usage/list-with-groups-v1-usage.d.ts.map +1 -0
  899. package/tools/v1/usage/list-with-groups-v1-usage.js +76 -0
  900. package/tools/v1/usage/list-with-groups-v1-usage.js.map +1 -0
  901. package/tools/v1/usage/list-with-groups-v1-usage.mjs +72 -0
  902. package/tools/v1/usage/list-with-groups-v1-usage.mjs.map +1 -0
  903. package/tools/v2/contracts/edit-commit-v2-contracts.d.mts +32 -0
  904. package/tools/v2/contracts/edit-commit-v2-contracts.d.mts.map +1 -0
  905. package/tools/v2/contracts/edit-commit-v2-contracts.d.ts +32 -0
  906. package/tools/v2/contracts/edit-commit-v2-contracts.d.ts.map +1 -0
  907. package/tools/v2/contracts/edit-commit-v2-contracts.js +210 -0
  908. package/tools/v2/contracts/edit-commit-v2-contracts.js.map +1 -0
  909. package/tools/v2/contracts/edit-commit-v2-contracts.mjs +206 -0
  910. package/tools/v2/contracts/edit-commit-v2-contracts.mjs.map +1 -0
  911. package/tools/v2/contracts/edit-credit-v2-contracts.d.mts +32 -0
  912. package/tools/v2/contracts/edit-credit-v2-contracts.d.mts.map +1 -0
  913. package/tools/v2/contracts/edit-credit-v2-contracts.d.ts +32 -0
  914. package/tools/v2/contracts/edit-credit-v2-contracts.d.ts.map +1 -0
  915. package/tools/v2/contracts/edit-credit-v2-contracts.js +141 -0
  916. package/tools/v2/contracts/edit-credit-v2-contracts.js.map +1 -0
  917. package/tools/v2/contracts/edit-credit-v2-contracts.mjs +137 -0
  918. package/tools/v2/contracts/edit-credit-v2-contracts.mjs.map +1 -0
  919. package/tools/v2/contracts/edit-v2-contracts.d.mts +32 -0
  920. package/tools/v2/contracts/edit-v2-contracts.d.mts.map +1 -0
  921. package/tools/v2/contracts/edit-v2-contracts.d.ts +32 -0
  922. package/tools/v2/contracts/edit-v2-contracts.d.ts.map +1 -0
  923. package/tools/v2/contracts/edit-v2-contracts.js +2024 -0
  924. package/tools/v2/contracts/edit-v2-contracts.js.map +1 -0
  925. package/tools/v2/contracts/edit-v2-contracts.mjs +2020 -0
  926. package/tools/v2/contracts/edit-v2-contracts.mjs.map +1 -0
  927. package/tools/v2/contracts/get-edit-history-v2-contracts.d.mts +32 -0
  928. package/tools/v2/contracts/get-edit-history-v2-contracts.d.mts.map +1 -0
  929. package/tools/v2/contracts/get-edit-history-v2-contracts.d.ts +32 -0
  930. package/tools/v2/contracts/get-edit-history-v2-contracts.d.ts.map +1 -0
  931. package/tools/v2/contracts/get-edit-history-v2-contracts.js +34 -0
  932. package/tools/v2/contracts/get-edit-history-v2-contracts.js.map +1 -0
  933. package/tools/v2/contracts/get-edit-history-v2-contracts.mjs +30 -0
  934. package/tools/v2/contracts/get-edit-history-v2-contracts.mjs.map +1 -0
  935. package/tools/v2/contracts/list-v2-contracts.d.mts +32 -0
  936. package/tools/v2/contracts/list-v2-contracts.d.mts.map +1 -0
  937. package/tools/v2/contracts/list-v2-contracts.d.ts +32 -0
  938. package/tools/v2/contracts/list-v2-contracts.d.ts.map +1 -0
  939. package/tools/v2/contracts/list-v2-contracts.js +53 -0
  940. package/tools/v2/contracts/list-v2-contracts.js.map +1 -0
  941. package/tools/v2/contracts/list-v2-contracts.mjs +49 -0
  942. package/tools/v2/contracts/list-v2-contracts.mjs.map +1 -0
  943. package/tools/v2/contracts/retrieve-v2-contracts.d.mts +32 -0
  944. package/tools/v2/contracts/retrieve-v2-contracts.d.mts.map +1 -0
  945. package/tools/v2/contracts/retrieve-v2-contracts.d.ts +32 -0
  946. package/tools/v2/contracts/retrieve-v2-contracts.d.ts.map +1 -0
  947. package/tools/v2/contracts/retrieve-v2-contracts.js +47 -0
  948. package/tools/v2/contracts/retrieve-v2-contracts.js.map +1 -0
  949. package/tools/v2/contracts/retrieve-v2-contracts.mjs +43 -0
  950. package/tools/v2/contracts/retrieve-v2-contracts.mjs.map +1 -0
  951. package/tools.d.mts +2 -0
  952. package/tools.d.mts.map +1 -0
  953. package/tools.d.ts +2 -0
  954. package/tools.d.ts.map +1 -0
  955. package/tools.js +18 -0
  956. package/tools.js.map +1 -0
  957. package/tools.mjs +2 -0
  958. package/tools.mjs.map +1 -0
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Metronome
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,350 @@
1
+ # Metronome Node MCP Server
2
+
3
+ It is generated with [Stainless](https://www.stainless.com/).
4
+
5
+ ## Installation
6
+
7
+ ### Direct invocation
8
+
9
+ You can run the MCP Server directly via `npx`:
10
+
11
+ ```sh
12
+ export METRONOME_BEARER_TOKEN="My Bearer Token"
13
+ export METRONOME_WEBHOOK_SECRET="My Webhook Secret"
14
+ npx -y @metronome/mcp@latest
15
+ ```
16
+
17
+ ### Via MCP Client
18
+
19
+ There is a partial list of existing clients at [modelcontextprotocol.io](https://modelcontextprotocol.io/clients). If you already
20
+ have a client, consult their documentation to install the MCP server.
21
+
22
+ For clients with a configuration JSON, it might look something like this:
23
+
24
+ ```json
25
+ {
26
+ "mcpServers": {
27
+ "metronome_sdk_api": {
28
+ "command": "npx",
29
+ "args": ["-y", "@metronome/mcp", "--client=claude", "--tools=dynamic"],
30
+ "env": {
31
+ "METRONOME_BEARER_TOKEN": "My Bearer Token",
32
+ "METRONOME_WEBHOOK_SECRET": "My Webhook Secret"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ ```
38
+
39
+ ## Exposing endpoints to your MCP Client
40
+
41
+ There are two ways to expose endpoints as tools in the MCP server:
42
+
43
+ 1. Exposing one tool per endpoint, and filtering as necessary
44
+ 2. Exposing a set of tools to dynamically discover and invoke endpoints from the API
45
+
46
+ ### Filtering endpoints and tools
47
+
48
+ You can run the package on the command line to discover and filter the set of tools that are exposed by the
49
+ MCP Server. This can be helpful for large APIs where including all endpoints at once is too much for your AI's
50
+ context window.
51
+
52
+ You can filter by multiple aspects:
53
+
54
+ - `--tool` includes a specific tool by name
55
+ - `--resource` includes all tools under a specific resource, and can have wildcards, e.g. `my.resource*`
56
+ - `--operation` includes just read (get/list) or just write operations
57
+
58
+ ### Dynamic tools
59
+
60
+ If you specify `--tools=dynamic` to the MCP server, instead of exposing one tool per endpoint in the API, it will
61
+ expose the following tools:
62
+
63
+ 1. `list_api_endpoints` - Discovers available endpoints, with optional filtering by search query
64
+ 2. `get_api_endpoint_schema` - Gets detailed schema information for a specific endpoint
65
+ 3. `invoke_api_endpoint` - Executes any endpoint with the appropriate parameters
66
+
67
+ This allows you to have the full set of API endpoints available to your MCP Client, while not requiring that all
68
+ of their schemas be loaded into context at once. Instead, the LLM will automatically use these tools together to
69
+ search for, look up, and invoke endpoints dynamically. However, due to the indirect nature of the schemas, it
70
+ can struggle to provide the correct properties a bit more than when tools are imported explicitly. Therefore,
71
+ you can opt-in to explicit tools, the dynamic tools, or both.
72
+
73
+ See more information with `--help`.
74
+
75
+ All of these command-line options can be repeated, combined together, and have corresponding exclusion versions (e.g. `--no-tool`).
76
+
77
+ Use `--list` to see the list of available tools, or see below.
78
+
79
+ ### Specifying the MCP Client
80
+
81
+ Different clients have varying abilities to handle arbitrary tools and schemas.
82
+
83
+ You can specify the client you are using with the `--client` argument, and the MCP server will automatically
84
+ serve tools and schemas that are more compatible with that client.
85
+
86
+ - `--client=<type>`: Set all capabilities based on a known MCP client
87
+
88
+ - Valid values: `openai-agents`, `claude`, `claude-code`, `cursor`
89
+ - Example: `--client=cursor`
90
+
91
+ Additionally, if you have a client not on the above list, or the client has gotten better
92
+ over time, you can manually enable or disable certain capabilities:
93
+
94
+ - `--capability=<name>`: Specify individual client capabilities
95
+ - Available capabilities:
96
+ - `top-level-unions`: Enable support for top-level unions in tool schemas
97
+ - `valid-json`: Enable JSON string parsing for arguments
98
+ - `refs`: Enable support for $ref pointers in schemas
99
+ - `unions`: Enable support for union types (anyOf) in schemas
100
+ - `formats`: Enable support for format validations in schemas (e.g. date-time, email)
101
+ - `tool-name-length=N`: Set maximum tool name length to N characters
102
+ - Example: `--capability=top-level-unions --capability=tool-name-length=40`
103
+ - Example: `--capability=top-level-unions,tool-name-length=40`
104
+
105
+ ### Examples
106
+
107
+ 1. Filter for read operations on cards:
108
+
109
+ ```bash
110
+ --resource=cards --operation=read
111
+ ```
112
+
113
+ 2. Exclude specific tools while including others:
114
+
115
+ ```bash
116
+ --resource=cards --no-tool=create_cards
117
+ ```
118
+
119
+ 3. Configure for Cursor client with custom max tool name length:
120
+
121
+ ```bash
122
+ --client=cursor --capability=tool-name-length=40
123
+ ```
124
+
125
+ 4. Complex filtering with multiple criteria:
126
+
127
+ ```bash
128
+ --resource=cards,accounts --operation=read --tag=kyc --no-tool=create_cards
129
+ ```
130
+
131
+ ## Importing the tools and server individually
132
+
133
+ ```js
134
+ // Import the server, generated endpoints, or the init function
135
+ import { server, endpoints, init } from "@metronome/mcp/server";
136
+
137
+ // import a specific tool
138
+ import retrieveV2Contracts from "@metronome/mcp/tools/v2/contracts/retrieve-v2-contracts";
139
+
140
+ // initialize the server and all endpoints
141
+ init({ server, endpoints });
142
+
143
+ // manually start server
144
+ const transport = new StdioServerTransport();
145
+ await server.connect(transport);
146
+
147
+ // or initialize your own server with specific tools
148
+ const myServer = new McpServer(...);
149
+
150
+ // define your own endpoint
151
+ const myCustomEndpoint = {
152
+ tool: {
153
+ name: 'my_custom_tool',
154
+ description: 'My custom tool',
155
+ inputSchema: zodToJsonSchema(z.object({ a_property: z.string() })),
156
+ },
157
+ handler: async (client: client, args: any) => {
158
+ return { myResponse: 'Hello world!' };
159
+ })
160
+ };
161
+
162
+ // initialize the server with your custom endpoints
163
+ init({ server: myServer, endpoints: [retrieveV2Contracts, myCustomEndpoint] });
164
+ ```
165
+
166
+ ## Available Tools
167
+
168
+ The following tools are available in this MCP server.
169
+
170
+ ### Resource `v2.contracts`:
171
+
172
+ - `retrieve_v2_contracts` (`write`): Get a specific contract. New clients should use this endpoint rather than the v1 endpoint.
173
+ - `list_v2_contracts` (`write`): List all contracts for a customer. New clients should use this endpoint rather than the v1 endpoint.
174
+ - `edit_v2_contracts` (`write`): Edit a contract. Contract editing must be enabled to use this endpoint.
175
+ - `edit_commit_v2_contracts` (`write`): Edit a customer or contract commit. Contract commits can only be edited using this endpoint if contract editing is enabled.
176
+ - `edit_credit_v2_contracts` (`write`): Edit a customer or contract credit. Contract credits can only be edited using this endpoint if contract editing is enabled.
177
+ - `get_edit_history_v2_contracts` (`write`): Get the edit history of a specific contract. Contract editing must be enabled to use this endpoint.
178
+
179
+ ### Resource `v1.alerts`:
180
+
181
+ - `create_v1_alerts` (`write`): Create a new alert
182
+ - `archive_v1_alerts` (`write`): Archive an existing alert
183
+
184
+ ### Resource `v1.plans`:
185
+
186
+ - `list_v1_plans` (`read`): List all available plans.
187
+ - `get_details_v1_plans` (`read`): Fetch high level details of a specific plan.
188
+ - `list_charges_v1_plans` (`read`): Fetches a list of charges of a specific plan.
189
+ - `list_customers_v1_plans` (`read`): Fetches a list of customers on a specific plan (by default, only currently active plans are included)
190
+
191
+ ### Resource `v1.credit_grants`:
192
+
193
+ - `create_v1_credit_grants` (`write`): Create a new credit grant
194
+ - `list_v1_credit_grants` (`write`): List credit grants. This list does not included voided grants.
195
+ - `edit_v1_credit_grants` (`write`): Edit an existing credit grant
196
+ - `list_entries_v1_credit_grants` (`write`): Fetches a list of credit ledger entries. Returns lists of ledgers per customer. Ledger entries are returned in chronological order. Ledger entries associated with voided credit grants are not included.
197
+ - `void_v1_credit_grants` (`write`): Void a credit grant
198
+
199
+ ### Resource `v1.pricing_units`:
200
+
201
+ - `list_v1_pricing_units` (`read`): List all pricing units (known in the API by the legacy term "credit types").
202
+
203
+ ### Resource `v1.customers`:
204
+
205
+ - `create_v1_customers` (`write`): Create a new customer
206
+ - `retrieve_v1_customers` (`read`): Get a customer by Metronome ID.
207
+ - `list_v1_customers` (`read`): List all customers.
208
+ - `archive_v1_customers` (`write`): Archive a customer
209
+ - `list_billable_metrics_v1_customers` (`read`): Get all billable metrics for a given customer.
210
+ - `list_costs_v1_customers` (`read`): Fetch daily pending costs for the specified customer, broken down by credit type and line items. Note: this is not supported for customers whose plan includes a UNIQUE-type billable metric.
211
+ - `set_ingest_aliases_v1_customers` (`write`): Sets the ingest aliases for a customer. Ingest aliases can be used in the `customer_id` field when sending usage events to Metronome. This call is idempotent. It fully replaces the set of ingest aliases for the given customer.
212
+ - `set_name_v1_customers` (`write`): Updates the specified customer's name.
213
+ - `update_config_v1_customers` (`write`): Updates the specified customer's config.
214
+
215
+ ### Resource `v1.customers.alerts`:
216
+
217
+ - `retrieve_customers_v1_alerts` (`write`): Get the customer alert status and alert information for the specified customer and alert
218
+ - `list_customers_v1_alerts` (`write`): Fetch all customer alert statuses and alert information for a customer
219
+ - `reset_customers_v1_alerts` (`write`): Reset state for an alert by customer id and force re-evaluation
220
+
221
+ ### Resource `v1.customers.plans`:
222
+
223
+ - `list_customers_v1_plans` (`read`): List the given customer's plans in reverse-chronological order.
224
+ - `add_customers_v1_plans` (`write`): Associate an existing customer with a plan for a specified date range. See the [price adjustments documentation](https://plans-docs.metronome.com/pricing/managing-plans/#price-adjustments) for details on the price adjustments.
225
+ - `end_customers_v1_plans` (`write`): Change the end date of a customer's plan.
226
+ - `list_price_adjustments_customers_v1_plans` (`read`): Lists a customer plans adjustments. See the [price adjustments documentation](https://plans-docs.metronome.com/pricing/managing-plans/#price-adjustments) for details.
227
+
228
+ ### Resource `v1.customers.invoices`:
229
+
230
+ - `retrieve_customers_v1_invoices` (`read`): Fetch a specific invoice for a given customer.
231
+ - `list_customers_v1_invoices` (`read`): List all invoices for a given customer, optionally filtered by status, date range, and/or credit type.
232
+ - `add_charge_customers_v1_invoices` (`write`): Add a one time charge to the specified invoice
233
+ - `list_breakdowns_customers_v1_invoices` (`read`): List daily or hourly invoice breakdowns for a given customer, optionally filtered by status, date range, and/or credit type.
234
+ Important considerations:
235
+ - If we receive backdated usage after an invoice has been finalized, the backdated usage will be included in the response and usage numbers may differ.
236
+
237
+ ### Resource `v1.customers.billing_config`:
238
+
239
+ - `create_customers_v1_billing_config` (`write`): Set the billing configuration for a given customer.
240
+ - `retrieve_customers_v1_billing_config` (`read`): Fetch the billing configuration for the given customer.
241
+ - `delete_customers_v1_billing_config` (`write`): Delete the billing configuration for a given customer. Note: this is unsupported for Azure and AWS Marketplace customers.
242
+
243
+ ### Resource `v1.customers.commits`:
244
+
245
+ - `create_customers_v1_commits` (`write`): Create a new commit at the customer level.
246
+ - `list_customers_v1_commits` (`write`): List commits.
247
+ - `update_end_date_customers_v1_commits` (`write`): Pull forward the end date of a prepaid commit. Use the "edit a commit" endpoint to extend the end date of a prepaid commit, or to make other edits to the commit.
248
+
249
+ ### Resource `v1.customers.credits`:
250
+
251
+ - `create_customers_v1_credits` (`write`): Create a new credit at the customer level.
252
+ - `list_customers_v1_credits` (`write`): List credits.
253
+ - `update_end_date_customers_v1_credits` (`write`): Pull forward the end date of a credit. Use the "edit a credit" endpoint to extend the end date of a credit, or to make other edits to the credit.
254
+
255
+ ### Resource `v1.customers.named_schedules`:
256
+
257
+ - `retrieve_customers_v1_named_schedules` (`write`): Get a named schedule for the given customer. This endpoint's availability is dependent on your client's configuration.
258
+ - `update_customers_v1_named_schedules` (`write`): Update a named schedule for the given customer. This endpoint's availability is dependent on your client's configuration.
259
+
260
+ ### Resource `v1.dashboards`:
261
+
262
+ - `get_embeddable_url_v1_dashboards` (`write`): Retrieve an embeddable dashboard url for a customer. The dashboard can be embedded using an iframe in a website. This will show information such as usage data and customer invoices.
263
+
264
+ ### Resource `v1.usage`:
265
+
266
+ - `list_v1_usage` (`write`): Fetch aggregated usage data for multiple customers and billable-metrics, broken into intervals of the specified length.
267
+ - `ingest_v1_usage` (`write`): Send usage events to Metronome. The body of this request is expected to be a JSON array of between 1 and 100 usage events. Compressed request bodies are supported with a `Content-Encoding: gzip` header. See [Getting usage into Metronome](https://docs.metronome.com/connect-metronome/) to learn more about usage events.
268
+ - `list_with_groups_v1_usage` (`write`): Fetch aggregated usage data for the specified customer, billable-metric, and optional group, broken into intervals of the specified length.
269
+
270
+ ### Resource `v1.audit_logs`:
271
+
272
+ - `list_v1_audit_logs` (`read`): Retrieves a range of audit logs. If no further audit logs are currently available, the data array will be empty. As new audit logs are created, subsequent requests using the same next_page value will be in the returned data array, ensuring a continuous and uninterrupted reading of audit logs.
273
+
274
+ ### Resource `v1.custom_fields`:
275
+
276
+ - `add_key_v1_custom_fields` (`write`): Add a key to the allow list for a given entity. There is a 100 character limit on custom field keys.
277
+ - `delete_values_v1_custom_fields` (`write`): Deletes one or more custom fields on an instance of a Metronome entity.
278
+ - `list_keys_v1_custom_fields` (`write`): List all active custom field keys, optionally filtered by entity type.
279
+ - `remove_key_v1_custom_fields` (`write`): Remove a key from the allow list for a given entity.
280
+ - `set_values_v1_custom_fields` (`write`): Sets one or more custom fields on an instance of a Metronome entity. If a key/value pair passed in this request matches one already set on the entity, its value will be overwritten. Any key/value pairs that exist on the entity that do not match those passed in this request will remain untouched. This endpoint is transactional and will update all key/value pairs or no key/value pairs. Partial updates are not supported. There is a 200 character limit on custom field values.
281
+
282
+ ### Resource `v1.billable_metrics`:
283
+
284
+ - `create_v1_billable_metrics` (`write`): Creates a new Billable Metric.
285
+ - `retrieve_v1_billable_metrics` (`read`): Get a billable metric.
286
+ - `list_v1_billable_metrics` (`read`): List all billable metrics.
287
+ - `archive_v1_billable_metrics` (`write`): Archive an existing billable metric.
288
+
289
+ ### Resource `v1.services`:
290
+
291
+ - `list_v1_services` (`read`): Fetches a list of services used by Metronome and the associated IP addresses. IP addresses are not necessarily unique between services. In most cases, IP addresses will appear in the list at least 30 days before they are used for the first time.
292
+
293
+ ### Resource `v1.invoices`:
294
+
295
+ - `regenerate_v1_invoices` (`write`): Regenerate a voided contract invoice
296
+ - `void_v1_invoices` (`write`): Void an invoice
297
+
298
+ ### Resource `v1.contracts`:
299
+
300
+ - `create_v1_contracts` (`write`): Create a new contract
301
+ - `retrieve_v1_contracts` (`write`): This is the v1 endpoint to get a contract. New clients should implement using the v2 endpoint.
302
+ - `list_v1_contracts` (`write`): This is the v1 endpoint to list all contracts for a customer. New clients should implement using the v2 endpoint.
303
+ - `add_manual_balance_entry_v1_contracts` (`write`): Add a manual balance entry
304
+ - `amend_v1_contracts` (`write`): Amendments will be replaced by Contract editing. New clients should implement using the editContract endpoint. Read more about the migration to contract editing [here](https://docs.metronome.com/migrate-amendments-to-edits/) and reach out to your Metronome representative for more details. Once contract editing is enabled, access to this endpoint will be removed.
305
+ - `archive_v1_contracts` (`write`): Archive a contract
306
+ - `create_historical_invoices_v1_contracts` (`write`): Creates historical usage invoices for a contract
307
+ - `list_balances_v1_contracts` (`write`): List balances (commits and credits).
308
+ - `retrieve_rate_schedule_v1_contracts` (`write`): Get the rate schedule for the rate card on a given contract.
309
+ - `retrieve_subscription_quantity_history_v1_contracts` (`write`): Fetch the quantity and price for a subscription over time. End-point does not return future scheduled changes.
310
+ - `schedule_pro_services_invoice_v1_contracts` (`write`): Create a new scheduled invoice for Professional Services terms on a contract. This endpoint's availability is dependent on your client's configuration.
311
+ - `set_usage_filter_v1_contracts` (`write`): Set usage filter for a contract
312
+ - `update_end_date_v1_contracts` (`write`): Update the end date of a contract
313
+
314
+ ### Resource `v1.contracts.products`:
315
+
316
+ - `create_contracts_v1_products` (`write`): Create a new product
317
+ - `retrieve_contracts_v1_products` (`write`): Get a specific product
318
+ - `update_contracts_v1_products` (`write`): Update a product
319
+ - `list_contracts_v1_products` (`write`): List products
320
+ - `archive_contracts_v1_products` (`write`): Archive a product
321
+
322
+ ### Resource `v1.contracts.rateCards`:
323
+
324
+ - `create_contracts_v1_rate_cards` (`write`): Create a new rate card
325
+ - `retrieve_contracts_v1_rate_cards` (`write`): Get a specific rate card NOTE: Use `/contract-pricing/rate-cards/getRates` to retrieve rate card rates.
326
+ - `update_contracts_v1_rate_cards` (`write`): Update a rate card
327
+ - `list_contracts_v1_rate_cards` (`write`): List rate cards NOTE: Use `/contract-pricing/rate-cards/getRates` to retrieve rate card rates.
328
+ - `archive_contracts_v1_rate_cards` (`write`): Archive a rate card
329
+ - `retrieve_rate_schedule_contracts_v1_rate_cards` (`write`): Get all rates for a rate card from starting_at (either in perpetuity or until ending_before, if provided)
330
+
331
+ ### Resource `v1.contracts.rateCards.product_orders`:
332
+
333
+ - `update_rate_cards_contracts_v1_product_orders` (`write`): Updates ordering of specified products
334
+ - `set_rate_cards_contracts_v1_product_orders` (`write`): Sets the ordering of products within a rate card
335
+
336
+ ### Resource `v1.contracts.rateCards.rates`:
337
+
338
+ - `list_rate_cards_contracts_v1_rates` (`write`): Get all rates for a rate card at a point in time
339
+ - `add_rate_cards_contracts_v1_rates` (`write`): Add a new rate
340
+ - `add_many_rate_cards_contracts_v1_rates` (`write`): Add new rates
341
+
342
+ ### Resource `v1.contracts.rateCards.named_schedules`:
343
+
344
+ - `retrieve_rate_cards_contracts_v1_named_schedules` (`write`): Get a named schedule for the given contract. This endpoint's availability is dependent on your client's configuration.
345
+ - `update_rate_cards_contracts_v1_named_schedules` (`write`): Update a named schedule for the given contract. This endpoint's availability is dependent on your client's configuration.
346
+
347
+ ### Resource `v1.contracts.named_schedules`:
348
+
349
+ - `retrieve_contracts_v1_named_schedules` (`write`): Get a named schedule for the given rate card. This endpoint's availability is dependent on your client's configuration.
350
+ - `update_contracts_v1_named_schedules` (`write`): Update a named schedule for the given rate card. This endpoint's availability is dependent on your client's configuration.
package/compat.d.mts ADDED
@@ -0,0 +1,54 @@
1
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
2
+ import { Endpoint } from "./tools.mjs";
3
+ export interface ClientCapabilities {
4
+ topLevelUnions: boolean;
5
+ validJson: boolean;
6
+ refs: boolean;
7
+ unions: boolean;
8
+ formats: boolean;
9
+ toolNameLength: number | undefined;
10
+ }
11
+ export declare const defaultClientCapabilities: ClientCapabilities;
12
+ /**
13
+ * Attempts to parse strings into JSON objects
14
+ */
15
+ export declare function parseEmbeddedJSON(args: Record<string, unknown>, schema: Record<string, unknown>): Record<string, unknown>;
16
+ export type JSONSchema = {
17
+ type?: string;
18
+ properties?: Record<string, JSONSchema>;
19
+ required?: string[];
20
+ anyOf?: JSONSchema[];
21
+ $ref?: string;
22
+ $defs?: Record<string, JSONSchema>;
23
+ [key: string]: any;
24
+ };
25
+ /**
26
+ * Truncates tool names to the specified length while ensuring uniqueness.
27
+ * If truncation would cause duplicate names, appends a number to make them unique.
28
+ */
29
+ export declare function truncateToolNames(names: string[], maxLength: number): Map<string, string>;
30
+ /**
31
+ * Removes top-level unions from a tool by splitting it into multiple tools,
32
+ * one for each variant in the union.
33
+ */
34
+ export declare function removeTopLevelUnions(tool: Tool): Tool[];
35
+ declare function findUsedDefs(schema: JSONSchema, defs: Record<string, JSONSchema>, visited?: Set<string>): Record<string, JSONSchema>;
36
+ export { findUsedDefs };
37
+ /**
38
+ * Inlines all $refs in a schema, eliminating $defs.
39
+ * If a circular reference is detected, the circular property is removed.
40
+ */
41
+ export declare function inlineRefs(schema: JSONSchema): JSONSchema;
42
+ /**
43
+ * Removes anyOf fields from a schema, using only the first variant.
44
+ */
45
+ export declare function removeAnyOf(schema: JSONSchema): JSONSchema;
46
+ /**
47
+ * Removes format fields from a schema and appends them to the description.
48
+ */
49
+ export declare function removeFormats(schema: JSONSchema, formatsCapability: boolean): JSONSchema;
50
+ /**
51
+ * Applies all compatibility transformations to the endpoints based on the provided capabilities.
52
+ */
53
+ export declare function applyCompatibilityTransformations(endpoints: Endpoint[], capabilities: ClientCapabilities): Endpoint[];
54
+ //# sourceMappingURL=compat.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compat.d.mts","sourceRoot":"","sources":["src/compat.ts"],"names":[],"mappings":"OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE;AAEnB,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;CACpC;AAED,eAAO,MAAM,yBAAyB,EAAE,kBAOvC,CAAC;AAEF;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,2BAqB/F;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,UAAU,EAAE,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,SAAS,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAwCzF;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,EAAE,CAyCvD;AAED,iBAAS,YAAY,CACnB,MAAM,EAAE,UAAU,EAClB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,EAChC,OAAO,GAAE,GAAG,CAAC,MAAM,CAAa,GAC/B,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CA6B5B;AAGD,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB;;;GAGG;AACH,wBAAgB,UAAU,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CAazD;AAoED;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CA0C1D;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,OAAO,GAAG,UAAU,CAkCxF;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAC/C,SAAS,EAAE,QAAQ,EAAE,EACrB,YAAY,EAAE,kBAAkB,GAC/B,QAAQ,EAAE,CAiEZ"}
package/compat.d.ts ADDED
@@ -0,0 +1,54 @@
1
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
2
+ import { Endpoint } from "./tools.js";
3
+ export interface ClientCapabilities {
4
+ topLevelUnions: boolean;
5
+ validJson: boolean;
6
+ refs: boolean;
7
+ unions: boolean;
8
+ formats: boolean;
9
+ toolNameLength: number | undefined;
10
+ }
11
+ export declare const defaultClientCapabilities: ClientCapabilities;
12
+ /**
13
+ * Attempts to parse strings into JSON objects
14
+ */
15
+ export declare function parseEmbeddedJSON(args: Record<string, unknown>, schema: Record<string, unknown>): Record<string, unknown>;
16
+ export type JSONSchema = {
17
+ type?: string;
18
+ properties?: Record<string, JSONSchema>;
19
+ required?: string[];
20
+ anyOf?: JSONSchema[];
21
+ $ref?: string;
22
+ $defs?: Record<string, JSONSchema>;
23
+ [key: string]: any;
24
+ };
25
+ /**
26
+ * Truncates tool names to the specified length while ensuring uniqueness.
27
+ * If truncation would cause duplicate names, appends a number to make them unique.
28
+ */
29
+ export declare function truncateToolNames(names: string[], maxLength: number): Map<string, string>;
30
+ /**
31
+ * Removes top-level unions from a tool by splitting it into multiple tools,
32
+ * one for each variant in the union.
33
+ */
34
+ export declare function removeTopLevelUnions(tool: Tool): Tool[];
35
+ declare function findUsedDefs(schema: JSONSchema, defs: Record<string, JSONSchema>, visited?: Set<string>): Record<string, JSONSchema>;
36
+ export { findUsedDefs };
37
+ /**
38
+ * Inlines all $refs in a schema, eliminating $defs.
39
+ * If a circular reference is detected, the circular property is removed.
40
+ */
41
+ export declare function inlineRefs(schema: JSONSchema): JSONSchema;
42
+ /**
43
+ * Removes anyOf fields from a schema, using only the first variant.
44
+ */
45
+ export declare function removeAnyOf(schema: JSONSchema): JSONSchema;
46
+ /**
47
+ * Removes format fields from a schema and appends them to the description.
48
+ */
49
+ export declare function removeFormats(schema: JSONSchema, formatsCapability: boolean): JSONSchema;
50
+ /**
51
+ * Applies all compatibility transformations to the endpoints based on the provided capabilities.
52
+ */
53
+ export declare function applyCompatibilityTransformations(endpoints: Endpoint[], capabilities: ClientCapabilities): Endpoint[];
54
+ //# sourceMappingURL=compat.d.ts.map