@metronome/mcp 2.2.0 → 3.4.1

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 (1181) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +16 -1323
  3. package/auth.d.mts +6 -0
  4. package/auth.d.mts.map +1 -0
  5. package/auth.d.ts +6 -0
  6. package/auth.d.ts.map +1 -0
  7. package/auth.js +37 -0
  8. package/auth.js.map +1 -0
  9. package/{headers.js → auth.mjs} +16 -6
  10. package/auth.mjs.map +1 -0
  11. package/code-tool-paths.cjs +6 -0
  12. package/code-tool-paths.cjs.map +1 -0
  13. package/code-tool-paths.d.cts +2 -0
  14. package/code-tool-paths.d.cts.map +1 -0
  15. package/code-tool-types.d.mts +7 -9
  16. package/code-tool-types.d.mts.map +1 -1
  17. package/code-tool-types.d.ts +7 -9
  18. package/code-tool-types.d.ts.map +1 -1
  19. package/code-tool-worker.d.mts +5 -0
  20. package/code-tool-worker.d.mts.map +1 -0
  21. package/code-tool-worker.d.ts +5 -0
  22. package/code-tool-worker.d.ts.map +1 -0
  23. package/code-tool-worker.js +341 -0
  24. package/code-tool-worker.js.map +1 -0
  25. package/code-tool-worker.mjs +336 -0
  26. package/code-tool-worker.mjs.map +1 -0
  27. package/code-tool.d.mts +12 -45
  28. package/code-tool.d.mts.map +1 -1
  29. package/code-tool.d.ts +12 -45
  30. package/code-tool.d.ts.map +1 -1
  31. package/code-tool.js +319 -31
  32. package/code-tool.js.map +1 -1
  33. package/code-tool.mjs +283 -31
  34. package/code-tool.mjs.map +1 -1
  35. package/docs-search-tool.d.mts +10 -3
  36. package/docs-search-tool.d.mts.map +1 -1
  37. package/docs-search-tool.d.ts +10 -3
  38. package/docs-search-tool.d.ts.map +1 -1
  39. package/docs-search-tool.js +29 -6
  40. package/docs-search-tool.js.map +1 -1
  41. package/docs-search-tool.mjs +29 -6
  42. package/docs-search-tool.mjs.map +1 -1
  43. package/http.d.mts +6 -3
  44. package/http.d.mts.map +1 -1
  45. package/http.d.ts +6 -3
  46. package/http.d.ts.map +1 -1
  47. package/http.js +71 -51
  48. package/http.js.map +1 -1
  49. package/http.mjs +71 -51
  50. package/http.mjs.map +1 -1
  51. package/index.js +19 -50
  52. package/index.js.map +1 -1
  53. package/index.mjs +19 -50
  54. package/index.mjs.map +1 -1
  55. package/instructions.d.mts +2 -0
  56. package/instructions.d.mts.map +1 -0
  57. package/instructions.d.ts +2 -0
  58. package/instructions.d.ts.map +1 -0
  59. package/instructions.js +46 -0
  60. package/instructions.js.map +1 -0
  61. package/instructions.mjs +43 -0
  62. package/instructions.mjs.map +1 -0
  63. package/logger.d.mts +7 -0
  64. package/logger.d.mts.map +1 -0
  65. package/logger.d.ts +7 -0
  66. package/logger.d.ts.map +1 -0
  67. package/logger.js +29 -0
  68. package/logger.js.map +1 -0
  69. package/logger.mjs +22 -0
  70. package/logger.mjs.map +1 -0
  71. package/methods.d.mts +10 -0
  72. package/methods.d.mts.map +1 -0
  73. package/methods.d.ts +10 -0
  74. package/methods.d.ts.map +1 -0
  75. package/methods.js +767 -0
  76. package/methods.js.map +1 -0
  77. package/methods.mjs +763 -0
  78. package/methods.mjs.map +1 -0
  79. package/options.d.mts +9 -9
  80. package/options.d.mts.map +1 -1
  81. package/options.d.ts +9 -9
  82. package/options.d.ts.map +1 -1
  83. package/options.js +54 -359
  84. package/options.js.map +1 -1
  85. package/options.mjs +54 -359
  86. package/options.mjs.map +1 -1
  87. package/package.json +83 -60
  88. package/server.d.mts +10 -16
  89. package/server.d.mts.map +1 -1
  90. package/server.d.ts +10 -16
  91. package/server.d.ts.map +1 -1
  92. package/server.js +85 -101
  93. package/server.js.map +1 -1
  94. package/server.mjs +84 -96
  95. package/server.mjs.map +1 -1
  96. package/src/{headers.ts → auth.ts} +18 -1
  97. package/src/code-tool-paths.cts +3 -0
  98. package/src/code-tool-types.ts +8 -9
  99. package/src/code-tool-worker.ts +387 -0
  100. package/src/code-tool.ts +367 -37
  101. package/src/docs-search-tool.ts +48 -7
  102. package/src/http.ts +87 -55
  103. package/src/index.ts +22 -63
  104. package/src/instructions.ts +65 -0
  105. package/src/logger.ts +28 -0
  106. package/src/methods.ts +788 -0
  107. package/src/options.ts +72 -384
  108. package/src/server.ts +97 -116
  109. package/src/stdio.ts +6 -5
  110. package/src/{tools/types.ts → types.ts} +13 -5
  111. package/src/util.ts +25 -0
  112. package/stdio.d.mts +1 -1
  113. package/stdio.d.mts.map +1 -1
  114. package/stdio.d.ts +1 -1
  115. package/stdio.d.ts.map +1 -1
  116. package/stdio.js +5 -4
  117. package/stdio.js.map +1 -1
  118. package/stdio.mjs +5 -4
  119. package/stdio.mjs.map +1 -1
  120. package/{tools/types.d.mts → types.d.mts} +9 -2
  121. package/types.d.mts.map +1 -0
  122. package/{tools/types.d.ts → types.d.ts} +9 -2
  123. package/types.d.ts.map +1 -0
  124. package/types.js.map +1 -0
  125. package/types.mjs.map +1 -0
  126. package/util.d.mts +4 -0
  127. package/util.d.mts.map +1 -0
  128. package/util.d.ts +4 -0
  129. package/util.d.ts.map +1 -0
  130. package/util.js +30 -0
  131. package/util.js.map +1 -0
  132. package/util.mjs +24 -0
  133. package/util.mjs.map +1 -0
  134. package/compat.d.mts +0 -58
  135. package/compat.d.mts.map +0 -1
  136. package/compat.d.ts +0 -58
  137. package/compat.d.ts.map +0 -1
  138. package/compat.js +0 -387
  139. package/compat.js.map +0 -1
  140. package/compat.mjs +0 -378
  141. package/compat.mjs.map +0 -1
  142. package/dynamic-tools.d.mts +0 -12
  143. package/dynamic-tools.d.mts.map +0 -1
  144. package/dynamic-tools.d.ts +0 -12
  145. package/dynamic-tools.d.ts.map +0 -1
  146. package/dynamic-tools.js +0 -135
  147. package/dynamic-tools.js.map +0 -1
  148. package/dynamic-tools.mjs +0 -132
  149. package/dynamic-tools.mjs.map +0 -1
  150. package/filtering.d.mts +0 -3
  151. package/filtering.d.mts.map +0 -1
  152. package/filtering.d.ts +0 -3
  153. package/filtering.d.ts.map +0 -1
  154. package/filtering.js +0 -24
  155. package/filtering.js.map +0 -1
  156. package/filtering.mjs +0 -16
  157. package/filtering.mjs.map +0 -1
  158. package/headers.d.mts +0 -4
  159. package/headers.d.mts.map +0 -1
  160. package/headers.d.ts +0 -4
  161. package/headers.d.ts.map +0 -1
  162. package/headers.js.map +0 -1
  163. package/headers.mjs +0 -18
  164. package/headers.mjs.map +0 -1
  165. package/src/compat.ts +0 -483
  166. package/src/dynamic-tools.ts +0 -159
  167. package/src/filtering.ts +0 -18
  168. package/src/tools/index.ts +0 -289
  169. package/src/tools/v1/alerts/archive-v1-alerts.ts +0 -57
  170. package/src/tools/v1/alerts/create-v1-alerts.ts +0 -179
  171. package/src/tools/v1/audit-logs/list-v1-audit-logs.ts +0 -86
  172. package/src/tools/v1/billable-metrics/archive-v1-billable-metrics.ts +0 -52
  173. package/src/tools/v1/billable-metrics/create-v1-billable-metrics.ts +0 -150
  174. package/src/tools/v1/billable-metrics/list-v1-billable-metrics.ts +0 -64
  175. package/src/tools/v1/billable-metrics/retrieve-v1-billable-metrics.ts +0 -54
  176. package/src/tools/v1/contracts/add-manual-balance-entry-v1-contracts.ts +0 -72
  177. package/src/tools/v1/contracts/amend-v1-contracts.ts +0 -1030
  178. package/src/tools/v1/contracts/archive-v1-contracts.ts +0 -61
  179. package/src/tools/v1/contracts/create-historical-invoices-v1-contracts.ts +0 -148
  180. package/src/tools/v1/contracts/create-v1-contracts.ts +0 -1780
  181. package/src/tools/v1/contracts/list-balances-v1-contracts.ts +0 -93
  182. package/src/tools/v1/contracts/list-v1-contracts.ts +0 -71
  183. package/src/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.ts +0 -65
  184. package/src/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.ts +0 -58
  185. package/src/tools/v1/contracts/products/archive-contracts-v1-products.ts +0 -55
  186. package/src/tools/v1/contracts/products/create-contracts-v1-products.ts +0 -164
  187. package/src/tools/v1/contracts/products/list-contracts-v1-products.ts +0 -63
  188. package/src/tools/v1/contracts/products/retrieve-contracts-v1-products.ts +0 -54
  189. package/src/tools/v1/contracts/products/update-contracts-v1-products.ts +0 -171
  190. package/src/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.ts +0 -54
  191. package/src/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.ts +0 -106
  192. package/src/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.ts +0 -62
  193. package/src/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.ts +0 -69
  194. package/src/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.ts +0 -62
  195. package/src/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.ts +0 -61
  196. package/src/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.ts +0 -72
  197. package/src/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.ts +0 -173
  198. package/src/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.ts +0 -164
  199. package/src/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.ts +0 -107
  200. package/src/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.ts +0 -54
  201. package/src/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.ts +0 -106
  202. package/src/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.ts +0 -84
  203. package/src/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.ts +0 -113
  204. package/src/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.ts +0 -60
  205. package/src/tools/v1/contracts/retrieve-v1-contracts.ts +0 -58
  206. package/src/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.ts +0 -109
  207. package/src/tools/v1/contracts/set-usage-filter-v1-contracts.ts +0 -55
  208. package/src/tools/v1/contracts/update-end-date-v1-contracts.ts +0 -68
  209. package/src/tools/v1/credit-grants/create-v1-credit-grants.ts +0 -188
  210. package/src/tools/v1/credit-grants/edit-v1-credit-grants.ts +0 -66
  211. package/src/tools/v1/credit-grants/list-entries-v1-credit-grants.ts +0 -86
  212. package/src/tools/v1/credit-grants/list-v1-credit-grants.ts +0 -92
  213. package/src/tools/v1/credit-grants/void-v1-credit-grants.ts +0 -60
  214. package/src/tools/v1/custom-fields/add-key-v1-custom-fields.ts +0 -65
  215. package/src/tools/v1/custom-fields/delete-values-v1-custom-fields.ts +0 -68
  216. package/src/tools/v1/custom-fields/list-keys-v1-custom-fields.ts +0 -81
  217. package/src/tools/v1/custom-fields/remove-key-v1-custom-fields.ts +0 -62
  218. package/src/tools/v1/custom-fields/set-values-v1-custom-fields.ts +0 -67
  219. package/src/tools/v1/customers/alerts/list-customers-v1-alerts.ts +0 -67
  220. package/src/tools/v1/customers/alerts/reset-customers-v1-alerts.ts +0 -44
  221. package/src/tools/v1/customers/alerts/retrieve-customers-v1-alerts.ts +0 -91
  222. package/src/tools/v1/customers/archive-v1-customers.ts +0 -52
  223. package/src/tools/v1/customers/billing-config/create-customers-v1-billing-config.ts +0 -108
  224. package/src/tools/v1/customers/billing-config/delete-customers-v1-billing-config.ts +0 -55
  225. package/src/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.ts +0 -70
  226. package/src/tools/v1/customers/commits/create-customers-v1-commits.ts +0 -274
  227. package/src/tools/v1/customers/commits/list-customers-v1-commits.ts +0 -90
  228. package/src/tools/v1/customers/commits/update-end-date-customers-v1-commits.ts +0 -71
  229. package/src/tools/v1/customers/create-v1-customers.ts +0 -215
  230. package/src/tools/v1/customers/credits/create-customers-v1-credits.ts +0 -182
  231. package/src/tools/v1/customers/credits/list-customers-v1-credits.ts +0 -90
  232. package/src/tools/v1/customers/credits/update-end-date-customers-v1-credits.ts +0 -65
  233. package/src/tools/v1/customers/invoices/add-charge-customers-v1-invoices.ts +0 -87
  234. package/src/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.ts +0 -91
  235. package/src/tools/v1/customers/invoices/list-customers-v1-invoices.ts +0 -85
  236. package/src/tools/v1/customers/invoices/retrieve-customers-v1-invoices.ts +0 -54
  237. package/src/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.ts +0 -43
  238. package/src/tools/v1/customers/list-billable-metrics-v1-customers.ts +0 -72
  239. package/src/tools/v1/customers/list-costs-v1-customers.ts +0 -73
  240. package/src/tools/v1/customers/list-v1-customers.ts +0 -83
  241. package/src/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.ts +0 -65
  242. package/src/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.ts +0 -58
  243. package/src/tools/v1/customers/plans/add-customers-v1-plans.ts +0 -155
  244. package/src/tools/v1/customers/plans/end-customers-v1-plans.ts +0 -71
  245. package/src/tools/v1/customers/plans/list-customers-v1-plans.ts +0 -63
  246. package/src/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.ts +0 -66
  247. package/src/tools/v1/customers/preview-events-v1-customers.ts +0 -82
  248. package/src/tools/v1/customers/retrieve-billing-configurations-v1-customers.ts +0 -57
  249. package/src/tools/v1/customers/retrieve-v1-customers.ts +0 -54
  250. package/src/tools/v1/customers/set-billing-configurations-v1-customers.ts +0 -101
  251. package/src/tools/v1/customers/set-ingest-aliases-v1-customers.ts +0 -45
  252. package/src/tools/v1/customers/set-name-v1-customers.ts +0 -57
  253. package/src/tools/v1/customers/update-config-v1-customers.ts +0 -48
  254. package/src/tools/v1/dashboards/get-embeddable-url-v1-dashboards.ts +0 -141
  255. package/src/tools/v1/invoices/regenerate-v1-invoices.ts +0 -53
  256. package/src/tools/v1/invoices/void-v1-invoices.ts +0 -53
  257. package/src/tools/v1/payments/attempt-v1-payments.ts +0 -55
  258. package/src/tools/v1/payments/cancel-v1-payments.ts +0 -55
  259. package/src/tools/v1/payments/list-v1-payments.ts +0 -76
  260. package/src/tools/v1/plans/get-details-v1-plans.ts +0 -54
  261. package/src/tools/v1/plans/list-charges-v1-plans.ts +0 -63
  262. package/src/tools/v1/plans/list-customers-v1-plans.ts +0 -69
  263. package/src/tools/v1/plans/list-v1-plans.ts +0 -60
  264. package/src/tools/v1/pricing-units/list-v1-pricing-units.ts +0 -60
  265. package/src/tools/v1/services/list-v1-services.ts +0 -51
  266. package/src/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.ts +0 -67
  267. package/src/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.ts +0 -55
  268. package/src/tools/v1/settings/upsert-avalara-credentials-v1-settings.ts +0 -77
  269. package/src/tools/v1/usage/ingest-v1-usage.ts +0 -62
  270. package/src/tools/v1/usage/list-v1-usage.ts +0 -108
  271. package/src/tools/v1/usage/list-with-groups-v1-usage.ts +0 -101
  272. package/src/tools/v1/usage/search-v1-usage.ts +0 -56
  273. package/src/tools/v2/contracts/edit-commit-v2-contracts.ts +0 -306
  274. package/src/tools/v2/contracts/edit-credit-v2-contracts.ts +0 -238
  275. package/src/tools/v2/contracts/edit-v2-contracts.ts +0 -2336
  276. package/src/tools/v2/contracts/get-edit-history-v2-contracts.ts +0 -48
  277. package/src/tools/v2/contracts/list-v2-contracts.ts +0 -71
  278. package/src/tools/v2/contracts/retrieve-v2-contracts.ts +0 -64
  279. package/src/tools.ts +0 -1
  280. package/tools/index.d.mts +0 -10
  281. package/tools/index.d.mts.map +0 -1
  282. package/tools/index.d.ts +0 -10
  283. package/tools/index.d.ts.map +0 -1
  284. package/tools/index.js +0 -273
  285. package/tools/index.js.map +0 -1
  286. package/tools/index.mjs +0 -266
  287. package/tools/index.mjs.map +0 -1
  288. package/tools/types.d.mts.map +0 -1
  289. package/tools/types.d.ts.map +0 -1
  290. package/tools/types.js.map +0 -1
  291. package/tools/types.mjs.map +0 -1
  292. package/tools/v1/alerts/archive-v1-alerts.d.mts +0 -51
  293. package/tools/v1/alerts/archive-v1-alerts.d.mts.map +0 -1
  294. package/tools/v1/alerts/archive-v1-alerts.d.ts +0 -51
  295. package/tools/v1/alerts/archive-v1-alerts.d.ts.map +0 -1
  296. package/tools/v1/alerts/archive-v1-alerts.js +0 -57
  297. package/tools/v1/alerts/archive-v1-alerts.js.map +0 -1
  298. package/tools/v1/alerts/archive-v1-alerts.mjs +0 -50
  299. package/tools/v1/alerts/archive-v1-alerts.mjs.map +0 -1
  300. package/tools/v1/alerts/create-v1-alerts.d.mts +0 -51
  301. package/tools/v1/alerts/create-v1-alerts.d.mts.map +0 -1
  302. package/tools/v1/alerts/create-v1-alerts.d.ts +0 -51
  303. package/tools/v1/alerts/create-v1-alerts.d.ts.map +0 -1
  304. package/tools/v1/alerts/create-v1-alerts.js +0 -167
  305. package/tools/v1/alerts/create-v1-alerts.js.map +0 -1
  306. package/tools/v1/alerts/create-v1-alerts.mjs +0 -160
  307. package/tools/v1/alerts/create-v1-alerts.mjs.map +0 -1
  308. package/tools/v1/audit-logs/list-v1-audit-logs.d.mts +0 -51
  309. package/tools/v1/audit-logs/list-v1-audit-logs.d.mts.map +0 -1
  310. package/tools/v1/audit-logs/list-v1-audit-logs.d.ts +0 -51
  311. package/tools/v1/audit-logs/list-v1-audit-logs.d.ts.map +0 -1
  312. package/tools/v1/audit-logs/list-v1-audit-logs.js +0 -83
  313. package/tools/v1/audit-logs/list-v1-audit-logs.js.map +0 -1
  314. package/tools/v1/audit-logs/list-v1-audit-logs.mjs +0 -76
  315. package/tools/v1/audit-logs/list-v1-audit-logs.mjs.map +0 -1
  316. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.mts +0 -51
  317. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.mts.map +0 -1
  318. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.ts +0 -51
  319. package/tools/v1/billable-metrics/archive-v1-billable-metrics.d.ts.map +0 -1
  320. package/tools/v1/billable-metrics/archive-v1-billable-metrics.js +0 -52
  321. package/tools/v1/billable-metrics/archive-v1-billable-metrics.js.map +0 -1
  322. package/tools/v1/billable-metrics/archive-v1-billable-metrics.mjs +0 -45
  323. package/tools/v1/billable-metrics/archive-v1-billable-metrics.mjs.map +0 -1
  324. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.mts +0 -51
  325. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.mts.map +0 -1
  326. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.ts +0 -51
  327. package/tools/v1/billable-metrics/create-v1-billable-metrics.d.ts.map +0 -1
  328. package/tools/v1/billable-metrics/create-v1-billable-metrics.js +0 -141
  329. package/tools/v1/billable-metrics/create-v1-billable-metrics.js.map +0 -1
  330. package/tools/v1/billable-metrics/create-v1-billable-metrics.mjs +0 -134
  331. package/tools/v1/billable-metrics/create-v1-billable-metrics.mjs.map +0 -1
  332. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.mts +0 -51
  333. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.mts.map +0 -1
  334. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.ts +0 -51
  335. package/tools/v1/billable-metrics/list-v1-billable-metrics.d.ts.map +0 -1
  336. package/tools/v1/billable-metrics/list-v1-billable-metrics.js +0 -64
  337. package/tools/v1/billable-metrics/list-v1-billable-metrics.js.map +0 -1
  338. package/tools/v1/billable-metrics/list-v1-billable-metrics.mjs +0 -57
  339. package/tools/v1/billable-metrics/list-v1-billable-metrics.mjs.map +0 -1
  340. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.mts +0 -51
  341. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.mts.map +0 -1
  342. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.ts +0 -51
  343. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.d.ts.map +0 -1
  344. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.js +0 -54
  345. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.js.map +0 -1
  346. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.mjs +0 -47
  347. package/tools/v1/billable-metrics/retrieve-v1-billable-metrics.mjs.map +0 -1
  348. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.mts +0 -51
  349. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.mts.map +0 -1
  350. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.ts +0 -51
  351. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.d.ts.map +0 -1
  352. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.js +0 -66
  353. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.js.map +0 -1
  354. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.mjs +0 -62
  355. package/tools/v1/contracts/add-manual-balance-entry-v1-contracts.mjs.map +0 -1
  356. package/tools/v1/contracts/amend-v1-contracts.d.mts +0 -51
  357. package/tools/v1/contracts/amend-v1-contracts.d.mts.map +0 -1
  358. package/tools/v1/contracts/amend-v1-contracts.d.ts +0 -51
  359. package/tools/v1/contracts/amend-v1-contracts.d.ts.map +0 -1
  360. package/tools/v1/contracts/amend-v1-contracts.js +0 -971
  361. package/tools/v1/contracts/amend-v1-contracts.js.map +0 -1
  362. package/tools/v1/contracts/amend-v1-contracts.mjs +0 -964
  363. package/tools/v1/contracts/amend-v1-contracts.mjs.map +0 -1
  364. package/tools/v1/contracts/archive-v1-contracts.d.mts +0 -51
  365. package/tools/v1/contracts/archive-v1-contracts.d.mts.map +0 -1
  366. package/tools/v1/contracts/archive-v1-contracts.d.ts +0 -51
  367. package/tools/v1/contracts/archive-v1-contracts.d.ts.map +0 -1
  368. package/tools/v1/contracts/archive-v1-contracts.js +0 -61
  369. package/tools/v1/contracts/archive-v1-contracts.js.map +0 -1
  370. package/tools/v1/contracts/archive-v1-contracts.mjs +0 -54
  371. package/tools/v1/contracts/archive-v1-contracts.mjs.map +0 -1
  372. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.mts +0 -51
  373. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.mts.map +0 -1
  374. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.ts +0 -51
  375. package/tools/v1/contracts/create-historical-invoices-v1-contracts.d.ts.map +0 -1
  376. package/tools/v1/contracts/create-historical-invoices-v1-contracts.js +0 -149
  377. package/tools/v1/contracts/create-historical-invoices-v1-contracts.js.map +0 -1
  378. package/tools/v1/contracts/create-historical-invoices-v1-contracts.mjs +0 -142
  379. package/tools/v1/contracts/create-historical-invoices-v1-contracts.mjs.map +0 -1
  380. package/tools/v1/contracts/create-v1-contracts.d.mts +0 -51
  381. package/tools/v1/contracts/create-v1-contracts.d.mts.map +0 -1
  382. package/tools/v1/contracts/create-v1-contracts.d.ts +0 -51
  383. package/tools/v1/contracts/create-v1-contracts.d.ts.map +0 -1
  384. package/tools/v1/contracts/create-v1-contracts.js +0 -1670
  385. package/tools/v1/contracts/create-v1-contracts.js.map +0 -1
  386. package/tools/v1/contracts/create-v1-contracts.mjs +0 -1663
  387. package/tools/v1/contracts/create-v1-contracts.mjs.map +0 -1
  388. package/tools/v1/contracts/list-balances-v1-contracts.d.mts +0 -51
  389. package/tools/v1/contracts/list-balances-v1-contracts.d.mts.map +0 -1
  390. package/tools/v1/contracts/list-balances-v1-contracts.d.ts +0 -51
  391. package/tools/v1/contracts/list-balances-v1-contracts.d.ts.map +0 -1
  392. package/tools/v1/contracts/list-balances-v1-contracts.js +0 -93
  393. package/tools/v1/contracts/list-balances-v1-contracts.js.map +0 -1
  394. package/tools/v1/contracts/list-balances-v1-contracts.mjs +0 -86
  395. package/tools/v1/contracts/list-balances-v1-contracts.mjs.map +0 -1
  396. package/tools/v1/contracts/list-v1-contracts.d.mts +0 -51
  397. package/tools/v1/contracts/list-v1-contracts.d.mts.map +0 -1
  398. package/tools/v1/contracts/list-v1-contracts.d.ts +0 -51
  399. package/tools/v1/contracts/list-v1-contracts.d.ts.map +0 -1
  400. package/tools/v1/contracts/list-v1-contracts.js +0 -68
  401. package/tools/v1/contracts/list-v1-contracts.js.map +0 -1
  402. package/tools/v1/contracts/list-v1-contracts.mjs +0 -61
  403. package/tools/v1/contracts/list-v1-contracts.mjs.map +0 -1
  404. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.mts +0 -51
  405. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.mts.map +0 -1
  406. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.ts +0 -51
  407. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.d.ts.map +0 -1
  408. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.js +0 -62
  409. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.js.map +0 -1
  410. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.mjs +0 -55
  411. package/tools/v1/contracts/named-schedules/retrieve-contracts-v1-named-schedules.mjs.map +0 -1
  412. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.mts +0 -51
  413. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.mts.map +0 -1
  414. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.ts +0 -51
  415. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.d.ts.map +0 -1
  416. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.js +0 -53
  417. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.js.map +0 -1
  418. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.mjs +0 -49
  419. package/tools/v1/contracts/named-schedules/update-contracts-v1-named-schedules.mjs.map +0 -1
  420. package/tools/v1/contracts/products/archive-contracts-v1-products.d.mts +0 -51
  421. package/tools/v1/contracts/products/archive-contracts-v1-products.d.mts.map +0 -1
  422. package/tools/v1/contracts/products/archive-contracts-v1-products.d.ts +0 -51
  423. package/tools/v1/contracts/products/archive-contracts-v1-products.d.ts.map +0 -1
  424. package/tools/v1/contracts/products/archive-contracts-v1-products.js +0 -53
  425. package/tools/v1/contracts/products/archive-contracts-v1-products.js.map +0 -1
  426. package/tools/v1/contracts/products/archive-contracts-v1-products.mjs +0 -46
  427. package/tools/v1/contracts/products/archive-contracts-v1-products.mjs.map +0 -1
  428. package/tools/v1/contracts/products/create-contracts-v1-products.d.mts +0 -51
  429. package/tools/v1/contracts/products/create-contracts-v1-products.d.mts.map +0 -1
  430. package/tools/v1/contracts/products/create-contracts-v1-products.d.ts +0 -51
  431. package/tools/v1/contracts/products/create-contracts-v1-products.d.ts.map +0 -1
  432. package/tools/v1/contracts/products/create-contracts-v1-products.js +0 -158
  433. package/tools/v1/contracts/products/create-contracts-v1-products.js.map +0 -1
  434. package/tools/v1/contracts/products/create-contracts-v1-products.mjs +0 -151
  435. package/tools/v1/contracts/products/create-contracts-v1-products.mjs.map +0 -1
  436. package/tools/v1/contracts/products/list-contracts-v1-products.d.mts +0 -51
  437. package/tools/v1/contracts/products/list-contracts-v1-products.d.mts.map +0 -1
  438. package/tools/v1/contracts/products/list-contracts-v1-products.d.ts +0 -51
  439. package/tools/v1/contracts/products/list-contracts-v1-products.d.ts.map +0 -1
  440. package/tools/v1/contracts/products/list-contracts-v1-products.js +0 -63
  441. package/tools/v1/contracts/products/list-contracts-v1-products.js.map +0 -1
  442. package/tools/v1/contracts/products/list-contracts-v1-products.mjs +0 -56
  443. package/tools/v1/contracts/products/list-contracts-v1-products.mjs.map +0 -1
  444. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.mts +0 -51
  445. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.mts.map +0 -1
  446. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.ts +0 -51
  447. package/tools/v1/contracts/products/retrieve-contracts-v1-products.d.ts.map +0 -1
  448. package/tools/v1/contracts/products/retrieve-contracts-v1-products.js +0 -52
  449. package/tools/v1/contracts/products/retrieve-contracts-v1-products.js.map +0 -1
  450. package/tools/v1/contracts/products/retrieve-contracts-v1-products.mjs +0 -45
  451. package/tools/v1/contracts/products/retrieve-contracts-v1-products.mjs.map +0 -1
  452. package/tools/v1/contracts/products/update-contracts-v1-products.d.mts +0 -51
  453. package/tools/v1/contracts/products/update-contracts-v1-products.d.mts.map +0 -1
  454. package/tools/v1/contracts/products/update-contracts-v1-products.d.ts +0 -51
  455. package/tools/v1/contracts/products/update-contracts-v1-products.d.ts.map +0 -1
  456. package/tools/v1/contracts/products/update-contracts-v1-products.js +0 -159
  457. package/tools/v1/contracts/products/update-contracts-v1-products.js.map +0 -1
  458. package/tools/v1/contracts/products/update-contracts-v1-products.mjs +0 -152
  459. package/tools/v1/contracts/products/update-contracts-v1-products.mjs.map +0 -1
  460. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.mts +0 -51
  461. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.mts.map +0 -1
  462. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.ts +0 -51
  463. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.d.ts.map +0 -1
  464. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.js +0 -52
  465. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.js.map +0 -1
  466. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.mjs +0 -45
  467. package/tools/v1/contracts/rate-cards/archive-contracts-v1-rate-cards.mjs.map +0 -1
  468. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.mts +0 -51
  469. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.mts.map +0 -1
  470. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.ts +0 -51
  471. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.d.ts.map +0 -1
  472. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.js +0 -102
  473. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.js.map +0 -1
  474. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.mjs +0 -95
  475. package/tools/v1/contracts/rate-cards/create-contracts-v1-rate-cards.mjs.map +0 -1
  476. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.mts +0 -51
  477. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.mts.map +0 -1
  478. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.ts +0 -51
  479. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.d.ts.map +0 -1
  480. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.js +0 -62
  481. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.js.map +0 -1
  482. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.mjs +0 -55
  483. package/tools/v1/contracts/rate-cards/list-contracts-v1-rate-cards.mjs.map +0 -1
  484. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.mts +0 -51
  485. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.mts.map +0 -1
  486. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.ts +0 -51
  487. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.d.ts.map +0 -1
  488. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.js +0 -66
  489. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.js.map +0 -1
  490. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.mjs +0 -59
  491. package/tools/v1/contracts/rate-cards/named-schedules/retrieve-rate-cards-contracts-v1-named-schedules.mjs.map +0 -1
  492. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.mts +0 -51
  493. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.mts.map +0 -1
  494. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.ts +0 -51
  495. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.d.ts.map +0 -1
  496. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.js +0 -57
  497. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.js.map +0 -1
  498. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.mjs +0 -53
  499. package/tools/v1/contracts/rate-cards/named-schedules/update-rate-cards-contracts-v1-named-schedules.mjs.map +0 -1
  500. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.mts +0 -51
  501. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.mts.map +0 -1
  502. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.ts +0 -51
  503. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.d.ts.map +0 -1
  504. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.js +0 -59
  505. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.js.map +0 -1
  506. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.mjs +0 -52
  507. package/tools/v1/contracts/rate-cards/product-orders/set-rate-cards-contracts-v1-product-orders.mjs.map +0 -1
  508. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.mts +0 -51
  509. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.mts.map +0 -1
  510. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.ts +0 -51
  511. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.d.ts.map +0 -1
  512. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.js +0 -70
  513. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.js.map +0 -1
  514. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.mjs +0 -63
  515. package/tools/v1/contracts/rate-cards/product-orders/update-rate-cards-contracts-v1-product-orders.mjs.map +0 -1
  516. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.mts +0 -51
  517. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.mts.map +0 -1
  518. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.ts +0 -51
  519. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.d.ts.map +0 -1
  520. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.js +0 -163
  521. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.js.map +0 -1
  522. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.mjs +0 -156
  523. package/tools/v1/contracts/rate-cards/rates/add-many-rate-cards-contracts-v1-rates.mjs.map +0 -1
  524. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.mts +0 -51
  525. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.mts.map +0 -1
  526. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.ts +0 -51
  527. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.d.ts.map +0 -1
  528. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.js +0 -155
  529. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.js.map +0 -1
  530. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.mjs +0 -148
  531. package/tools/v1/contracts/rate-cards/rates/add-rate-cards-contracts-v1-rates.mjs.map +0 -1
  532. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.mts +0 -51
  533. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.mts.map +0 -1
  534. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.ts +0 -51
  535. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.d.ts.map +0 -1
  536. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.js +0 -102
  537. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.js.map +0 -1
  538. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.mjs +0 -95
  539. package/tools/v1/contracts/rate-cards/rates/list-rate-cards-contracts-v1-rates.mjs.map +0 -1
  540. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.mts +0 -51
  541. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.mts.map +0 -1
  542. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.ts +0 -51
  543. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.d.ts.map +0 -1
  544. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.js +0 -52
  545. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.js.map +0 -1
  546. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.mjs +0 -45
  547. package/tools/v1/contracts/rate-cards/retrieve-contracts-v1-rate-cards.mjs.map +0 -1
  548. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.mts +0 -51
  549. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.mts.map +0 -1
  550. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.ts +0 -51
  551. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.d.ts.map +0 -1
  552. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.js +0 -99
  553. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.js.map +0 -1
  554. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.mjs +0 -92
  555. package/tools/v1/contracts/rate-cards/retrieve-rate-schedule-contracts-v1-rate-cards.mjs.map +0 -1
  556. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.mts +0 -51
  557. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.mts.map +0 -1
  558. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.ts +0 -51
  559. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.d.ts.map +0 -1
  560. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.js +0 -81
  561. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.js.map +0 -1
  562. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.mjs +0 -74
  563. package/tools/v1/contracts/rate-cards/update-contracts-v1-rate-cards.mjs.map +0 -1
  564. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.mts +0 -51
  565. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.mts.map +0 -1
  566. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.ts +0 -51
  567. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.d.ts.map +0 -1
  568. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.js +0 -105
  569. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.js.map +0 -1
  570. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.mjs +0 -98
  571. package/tools/v1/contracts/retrieve-rate-schedule-v1-contracts.mjs.map +0 -1
  572. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.mts +0 -51
  573. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.mts.map +0 -1
  574. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.ts +0 -51
  575. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.d.ts.map +0 -1
  576. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.js +0 -58
  577. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.js.map +0 -1
  578. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.mjs +0 -51
  579. package/tools/v1/contracts/retrieve-subscription-quantity-history-v1-contracts.mjs.map +0 -1
  580. package/tools/v1/contracts/retrieve-v1-contracts.d.mts +0 -51
  581. package/tools/v1/contracts/retrieve-v1-contracts.d.mts.map +0 -1
  582. package/tools/v1/contracts/retrieve-v1-contracts.d.ts +0 -51
  583. package/tools/v1/contracts/retrieve-v1-contracts.d.ts.map +0 -1
  584. package/tools/v1/contracts/retrieve-v1-contracts.js +0 -57
  585. package/tools/v1/contracts/retrieve-v1-contracts.js.map +0 -1
  586. package/tools/v1/contracts/retrieve-v1-contracts.mjs +0 -50
  587. package/tools/v1/contracts/retrieve-v1-contracts.mjs.map +0 -1
  588. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.mts +0 -51
  589. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.mts.map +0 -1
  590. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.ts +0 -51
  591. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.d.ts.map +0 -1
  592. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.js +0 -108
  593. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.js.map +0 -1
  594. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.mjs +0 -101
  595. package/tools/v1/contracts/schedule-pro-services-invoice-v1-contracts.mjs.map +0 -1
  596. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.mts +0 -51
  597. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.mts.map +0 -1
  598. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.ts +0 -51
  599. package/tools/v1/contracts/set-usage-filter-v1-contracts.d.ts.map +0 -1
  600. package/tools/v1/contracts/set-usage-filter-v1-contracts.js +0 -51
  601. package/tools/v1/contracts/set-usage-filter-v1-contracts.js.map +0 -1
  602. package/tools/v1/contracts/set-usage-filter-v1-contracts.mjs +0 -47
  603. package/tools/v1/contracts/set-usage-filter-v1-contracts.mjs.map +0 -1
  604. package/tools/v1/contracts/update-end-date-v1-contracts.d.mts +0 -51
  605. package/tools/v1/contracts/update-end-date-v1-contracts.d.mts.map +0 -1
  606. package/tools/v1/contracts/update-end-date-v1-contracts.d.ts +0 -51
  607. package/tools/v1/contracts/update-end-date-v1-contracts.d.ts.map +0 -1
  608. package/tools/v1/contracts/update-end-date-v1-contracts.js +0 -66
  609. package/tools/v1/contracts/update-end-date-v1-contracts.js.map +0 -1
  610. package/tools/v1/contracts/update-end-date-v1-contracts.mjs +0 -59
  611. package/tools/v1/contracts/update-end-date-v1-contracts.mjs.map +0 -1
  612. package/tools/v1/credit-grants/create-v1-credit-grants.d.mts +0 -51
  613. package/tools/v1/credit-grants/create-v1-credit-grants.d.mts.map +0 -1
  614. package/tools/v1/credit-grants/create-v1-credit-grants.d.ts +0 -51
  615. package/tools/v1/credit-grants/create-v1-credit-grants.d.ts.map +0 -1
  616. package/tools/v1/credit-grants/create-v1-credit-grants.js +0 -184
  617. package/tools/v1/credit-grants/create-v1-credit-grants.js.map +0 -1
  618. package/tools/v1/credit-grants/create-v1-credit-grants.mjs +0 -177
  619. package/tools/v1/credit-grants/create-v1-credit-grants.mjs.map +0 -1
  620. package/tools/v1/credit-grants/edit-v1-credit-grants.d.mts +0 -51
  621. package/tools/v1/credit-grants/edit-v1-credit-grants.d.mts.map +0 -1
  622. package/tools/v1/credit-grants/edit-v1-credit-grants.d.ts +0 -51
  623. package/tools/v1/credit-grants/edit-v1-credit-grants.d.ts.map +0 -1
  624. package/tools/v1/credit-grants/edit-v1-credit-grants.js +0 -66
  625. package/tools/v1/credit-grants/edit-v1-credit-grants.js.map +0 -1
  626. package/tools/v1/credit-grants/edit-v1-credit-grants.mjs +0 -59
  627. package/tools/v1/credit-grants/edit-v1-credit-grants.mjs.map +0 -1
  628. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.mts +0 -51
  629. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.mts.map +0 -1
  630. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.ts +0 -51
  631. package/tools/v1/credit-grants/list-entries-v1-credit-grants.d.ts.map +0 -1
  632. package/tools/v1/credit-grants/list-entries-v1-credit-grants.js +0 -83
  633. package/tools/v1/credit-grants/list-entries-v1-credit-grants.js.map +0 -1
  634. package/tools/v1/credit-grants/list-entries-v1-credit-grants.mjs +0 -76
  635. package/tools/v1/credit-grants/list-entries-v1-credit-grants.mjs.map +0 -1
  636. package/tools/v1/credit-grants/list-v1-credit-grants.d.mts +0 -51
  637. package/tools/v1/credit-grants/list-v1-credit-grants.d.mts.map +0 -1
  638. package/tools/v1/credit-grants/list-v1-credit-grants.d.ts +0 -51
  639. package/tools/v1/credit-grants/list-v1-credit-grants.d.ts.map +0 -1
  640. package/tools/v1/credit-grants/list-v1-credit-grants.js +0 -89
  641. package/tools/v1/credit-grants/list-v1-credit-grants.js.map +0 -1
  642. package/tools/v1/credit-grants/list-v1-credit-grants.mjs +0 -82
  643. package/tools/v1/credit-grants/list-v1-credit-grants.mjs.map +0 -1
  644. package/tools/v1/credit-grants/void-v1-credit-grants.d.mts +0 -51
  645. package/tools/v1/credit-grants/void-v1-credit-grants.d.mts.map +0 -1
  646. package/tools/v1/credit-grants/void-v1-credit-grants.d.ts +0 -51
  647. package/tools/v1/credit-grants/void-v1-credit-grants.d.ts.map +0 -1
  648. package/tools/v1/credit-grants/void-v1-credit-grants.js +0 -60
  649. package/tools/v1/credit-grants/void-v1-credit-grants.js.map +0 -1
  650. package/tools/v1/credit-grants/void-v1-credit-grants.mjs +0 -53
  651. package/tools/v1/credit-grants/void-v1-credit-grants.mjs.map +0 -1
  652. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.mts +0 -51
  653. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.mts.map +0 -1
  654. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.ts +0 -51
  655. package/tools/v1/custom-fields/add-key-v1-custom-fields.d.ts.map +0 -1
  656. package/tools/v1/custom-fields/add-key-v1-custom-fields.js +0 -61
  657. package/tools/v1/custom-fields/add-key-v1-custom-fields.js.map +0 -1
  658. package/tools/v1/custom-fields/add-key-v1-custom-fields.mjs +0 -57
  659. package/tools/v1/custom-fields/add-key-v1-custom-fields.mjs.map +0 -1
  660. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.mts +0 -51
  661. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.mts.map +0 -1
  662. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.ts +0 -51
  663. package/tools/v1/custom-fields/delete-values-v1-custom-fields.d.ts.map +0 -1
  664. package/tools/v1/custom-fields/delete-values-v1-custom-fields.js +0 -64
  665. package/tools/v1/custom-fields/delete-values-v1-custom-fields.js.map +0 -1
  666. package/tools/v1/custom-fields/delete-values-v1-custom-fields.mjs +0 -60
  667. package/tools/v1/custom-fields/delete-values-v1-custom-fields.mjs.map +0 -1
  668. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.mts +0 -51
  669. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.mts.map +0 -1
  670. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.ts +0 -51
  671. package/tools/v1/custom-fields/list-keys-v1-custom-fields.d.ts.map +0 -1
  672. package/tools/v1/custom-fields/list-keys-v1-custom-fields.js +0 -81
  673. package/tools/v1/custom-fields/list-keys-v1-custom-fields.js.map +0 -1
  674. package/tools/v1/custom-fields/list-keys-v1-custom-fields.mjs +0 -74
  675. package/tools/v1/custom-fields/list-keys-v1-custom-fields.mjs.map +0 -1
  676. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.mts +0 -51
  677. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.mts.map +0 -1
  678. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.ts +0 -51
  679. package/tools/v1/custom-fields/remove-key-v1-custom-fields.d.ts.map +0 -1
  680. package/tools/v1/custom-fields/remove-key-v1-custom-fields.js +0 -58
  681. package/tools/v1/custom-fields/remove-key-v1-custom-fields.js.map +0 -1
  682. package/tools/v1/custom-fields/remove-key-v1-custom-fields.mjs +0 -54
  683. package/tools/v1/custom-fields/remove-key-v1-custom-fields.mjs.map +0 -1
  684. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.mts +0 -51
  685. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.mts.map +0 -1
  686. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.ts +0 -51
  687. package/tools/v1/custom-fields/set-values-v1-custom-fields.d.ts.map +0 -1
  688. package/tools/v1/custom-fields/set-values-v1-custom-fields.js +0 -63
  689. package/tools/v1/custom-fields/set-values-v1-custom-fields.js.map +0 -1
  690. package/tools/v1/custom-fields/set-values-v1-custom-fields.mjs +0 -59
  691. package/tools/v1/custom-fields/set-values-v1-custom-fields.mjs.map +0 -1
  692. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.mts +0 -51
  693. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.mts.map +0 -1
  694. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.ts +0 -51
  695. package/tools/v1/customers/alerts/list-customers-v1-alerts.d.ts.map +0 -1
  696. package/tools/v1/customers/alerts/list-customers-v1-alerts.js +0 -66
  697. package/tools/v1/customers/alerts/list-customers-v1-alerts.js.map +0 -1
  698. package/tools/v1/customers/alerts/list-customers-v1-alerts.mjs +0 -59
  699. package/tools/v1/customers/alerts/list-customers-v1-alerts.mjs.map +0 -1
  700. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.mts +0 -51
  701. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.mts.map +0 -1
  702. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.ts +0 -51
  703. package/tools/v1/customers/alerts/reset-customers-v1-alerts.d.ts.map +0 -1
  704. package/tools/v1/customers/alerts/reset-customers-v1-alerts.js +0 -40
  705. package/tools/v1/customers/alerts/reset-customers-v1-alerts.js.map +0 -1
  706. package/tools/v1/customers/alerts/reset-customers-v1-alerts.mjs +0 -36
  707. package/tools/v1/customers/alerts/reset-customers-v1-alerts.mjs.map +0 -1
  708. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.mts +0 -51
  709. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.mts.map +0 -1
  710. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.ts +0 -51
  711. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.d.ts.map +0 -1
  712. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.js +0 -88
  713. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.js.map +0 -1
  714. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.mjs +0 -81
  715. package/tools/v1/customers/alerts/retrieve-customers-v1-alerts.mjs.map +0 -1
  716. package/tools/v1/customers/archive-v1-customers.d.mts +0 -51
  717. package/tools/v1/customers/archive-v1-customers.d.mts.map +0 -1
  718. package/tools/v1/customers/archive-v1-customers.d.ts +0 -51
  719. package/tools/v1/customers/archive-v1-customers.d.ts.map +0 -1
  720. package/tools/v1/customers/archive-v1-customers.js +0 -52
  721. package/tools/v1/customers/archive-v1-customers.js.map +0 -1
  722. package/tools/v1/customers/archive-v1-customers.mjs +0 -45
  723. package/tools/v1/customers/archive-v1-customers.mjs.map +0 -1
  724. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.mts +0 -51
  725. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.mts.map +0 -1
  726. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.ts +0 -51
  727. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.d.ts.map +0 -1
  728. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.js +0 -102
  729. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.js.map +0 -1
  730. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.mjs +0 -98
  731. package/tools/v1/customers/billing-config/create-customers-v1-billing-config.mjs.map +0 -1
  732. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.mts +0 -51
  733. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.mts.map +0 -1
  734. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.ts +0 -51
  735. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.d.ts.map +0 -1
  736. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.js +0 -51
  737. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.js.map +0 -1
  738. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.mjs +0 -47
  739. package/tools/v1/customers/billing-config/delete-customers-v1-billing-config.mjs.map +0 -1
  740. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.mts +0 -51
  741. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.mts.map +0 -1
  742. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.ts +0 -51
  743. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.d.ts.map +0 -1
  744. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.js +0 -68
  745. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.js.map +0 -1
  746. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.mjs +0 -61
  747. package/tools/v1/customers/billing-config/retrieve-customers-v1-billing-config.mjs.map +0 -1
  748. package/tools/v1/customers/commits/create-customers-v1-commits.d.mts +0 -51
  749. package/tools/v1/customers/commits/create-customers-v1-commits.d.mts.map +0 -1
  750. package/tools/v1/customers/commits/create-customers-v1-commits.d.ts +0 -51
  751. package/tools/v1/customers/commits/create-customers-v1-commits.d.ts.map +0 -1
  752. package/tools/v1/customers/commits/create-customers-v1-commits.js +0 -256
  753. package/tools/v1/customers/commits/create-customers-v1-commits.js.map +0 -1
  754. package/tools/v1/customers/commits/create-customers-v1-commits.mjs +0 -249
  755. package/tools/v1/customers/commits/create-customers-v1-commits.mjs.map +0 -1
  756. package/tools/v1/customers/commits/list-customers-v1-commits.d.mts +0 -51
  757. package/tools/v1/customers/commits/list-customers-v1-commits.d.mts.map +0 -1
  758. package/tools/v1/customers/commits/list-customers-v1-commits.d.ts +0 -51
  759. package/tools/v1/customers/commits/list-customers-v1-commits.d.ts.map +0 -1
  760. package/tools/v1/customers/commits/list-customers-v1-commits.js +0 -89
  761. package/tools/v1/customers/commits/list-customers-v1-commits.js.map +0 -1
  762. package/tools/v1/customers/commits/list-customers-v1-commits.mjs +0 -82
  763. package/tools/v1/customers/commits/list-customers-v1-commits.mjs.map +0 -1
  764. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.mts +0 -51
  765. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.mts.map +0 -1
  766. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.ts +0 -51
  767. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.d.ts.map +0 -1
  768. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.js +0 -67
  769. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.js.map +0 -1
  770. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.mjs +0 -60
  771. package/tools/v1/customers/commits/update-end-date-customers-v1-commits.mjs.map +0 -1
  772. package/tools/v1/customers/create-v1-customers.d.mts +0 -51
  773. package/tools/v1/customers/create-v1-customers.d.mts.map +0 -1
  774. package/tools/v1/customers/create-v1-customers.d.ts +0 -51
  775. package/tools/v1/customers/create-v1-customers.d.ts.map +0 -1
  776. package/tools/v1/customers/create-v1-customers.js +0 -206
  777. package/tools/v1/customers/create-v1-customers.js.map +0 -1
  778. package/tools/v1/customers/create-v1-customers.mjs +0 -199
  779. package/tools/v1/customers/create-v1-customers.mjs.map +0 -1
  780. package/tools/v1/customers/credits/create-customers-v1-credits.d.mts +0 -51
  781. package/tools/v1/customers/credits/create-customers-v1-credits.d.mts.map +0 -1
  782. package/tools/v1/customers/credits/create-customers-v1-credits.d.ts +0 -51
  783. package/tools/v1/customers/credits/create-customers-v1-credits.d.ts.map +0 -1
  784. package/tools/v1/customers/credits/create-customers-v1-credits.js +0 -175
  785. package/tools/v1/customers/credits/create-customers-v1-credits.js.map +0 -1
  786. package/tools/v1/customers/credits/create-customers-v1-credits.mjs +0 -168
  787. package/tools/v1/customers/credits/create-customers-v1-credits.mjs.map +0 -1
  788. package/tools/v1/customers/credits/list-customers-v1-credits.d.mts +0 -51
  789. package/tools/v1/customers/credits/list-customers-v1-credits.d.mts.map +0 -1
  790. package/tools/v1/customers/credits/list-customers-v1-credits.d.ts +0 -51
  791. package/tools/v1/customers/credits/list-customers-v1-credits.d.ts.map +0 -1
  792. package/tools/v1/customers/credits/list-customers-v1-credits.js +0 -89
  793. package/tools/v1/customers/credits/list-customers-v1-credits.js.map +0 -1
  794. package/tools/v1/customers/credits/list-customers-v1-credits.mjs +0 -82
  795. package/tools/v1/customers/credits/list-customers-v1-credits.mjs.map +0 -1
  796. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.mts +0 -51
  797. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.mts.map +0 -1
  798. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.ts +0 -51
  799. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.d.ts.map +0 -1
  800. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.js +0 -62
  801. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.js.map +0 -1
  802. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.mjs +0 -55
  803. package/tools/v1/customers/credits/update-end-date-customers-v1-credits.mjs.map +0 -1
  804. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.mts +0 -51
  805. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.mts.map +0 -1
  806. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.ts +0 -51
  807. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.d.ts.map +0 -1
  808. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.js +0 -83
  809. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.js.map +0 -1
  810. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.mjs +0 -76
  811. package/tools/v1/customers/invoices/add-charge-customers-v1-invoices.mjs.map +0 -1
  812. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.mts +0 -51
  813. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.mts.map +0 -1
  814. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.ts +0 -51
  815. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.d.ts.map +0 -1
  816. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.js +0 -89
  817. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.js.map +0 -1
  818. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.mjs +0 -82
  819. package/tools/v1/customers/invoices/list-breakdowns-customers-v1-invoices.mjs.map +0 -1
  820. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.mts +0 -51
  821. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.mts.map +0 -1
  822. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.ts +0 -51
  823. package/tools/v1/customers/invoices/list-customers-v1-invoices.d.ts.map +0 -1
  824. package/tools/v1/customers/invoices/list-customers-v1-invoices.js +0 -84
  825. package/tools/v1/customers/invoices/list-customers-v1-invoices.js.map +0 -1
  826. package/tools/v1/customers/invoices/list-customers-v1-invoices.mjs +0 -77
  827. package/tools/v1/customers/invoices/list-customers-v1-invoices.mjs.map +0 -1
  828. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.mts +0 -51
  829. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.mts.map +0 -1
  830. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.ts +0 -51
  831. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.d.ts.map +0 -1
  832. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.js +0 -55
  833. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.js.map +0 -1
  834. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.mjs +0 -48
  835. package/tools/v1/customers/invoices/retrieve-customers-v1-invoices.mjs.map +0 -1
  836. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.d.mts +0 -51
  837. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.d.mts.map +0 -1
  838. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.d.ts +0 -51
  839. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.d.ts.map +0 -1
  840. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.js +0 -39
  841. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.js.map +0 -1
  842. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.mjs +0 -35
  843. package/tools/v1/customers/invoices/retrieve-pdf-customers-v1-invoices.mjs.map +0 -1
  844. package/tools/v1/customers/list-billable-metrics-v1-customers.d.mts +0 -51
  845. package/tools/v1/customers/list-billable-metrics-v1-customers.d.mts.map +0 -1
  846. package/tools/v1/customers/list-billable-metrics-v1-customers.d.ts +0 -51
  847. package/tools/v1/customers/list-billable-metrics-v1-customers.d.ts.map +0 -1
  848. package/tools/v1/customers/list-billable-metrics-v1-customers.js +0 -71
  849. package/tools/v1/customers/list-billable-metrics-v1-customers.js.map +0 -1
  850. package/tools/v1/customers/list-billable-metrics-v1-customers.mjs +0 -64
  851. package/tools/v1/customers/list-billable-metrics-v1-customers.mjs.map +0 -1
  852. package/tools/v1/customers/list-costs-v1-customers.d.mts +0 -51
  853. package/tools/v1/customers/list-costs-v1-customers.d.mts.map +0 -1
  854. package/tools/v1/customers/list-costs-v1-customers.d.ts +0 -51
  855. package/tools/v1/customers/list-costs-v1-customers.d.ts.map +0 -1
  856. package/tools/v1/customers/list-costs-v1-customers.js +0 -73
  857. package/tools/v1/customers/list-costs-v1-customers.js.map +0 -1
  858. package/tools/v1/customers/list-costs-v1-customers.mjs +0 -66
  859. package/tools/v1/customers/list-costs-v1-customers.mjs.map +0 -1
  860. package/tools/v1/customers/list-v1-customers.d.mts +0 -51
  861. package/tools/v1/customers/list-v1-customers.d.mts.map +0 -1
  862. package/tools/v1/customers/list-v1-customers.d.ts +0 -51
  863. package/tools/v1/customers/list-v1-customers.d.ts.map +0 -1
  864. package/tools/v1/customers/list-v1-customers.js +0 -82
  865. package/tools/v1/customers/list-v1-customers.js.map +0 -1
  866. package/tools/v1/customers/list-v1-customers.mjs +0 -75
  867. package/tools/v1/customers/list-v1-customers.mjs.map +0 -1
  868. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.mts +0 -51
  869. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.mts.map +0 -1
  870. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.ts +0 -51
  871. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.d.ts.map +0 -1
  872. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.js +0 -62
  873. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.js.map +0 -1
  874. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.mjs +0 -55
  875. package/tools/v1/customers/named-schedules/retrieve-customers-v1-named-schedules.mjs.map +0 -1
  876. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.mts +0 -51
  877. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.mts.map +0 -1
  878. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.ts +0 -51
  879. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.d.ts.map +0 -1
  880. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.js +0 -53
  881. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.js.map +0 -1
  882. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.mjs +0 -49
  883. package/tools/v1/customers/named-schedules/update-customers-v1-named-schedules.mjs.map +0 -1
  884. package/tools/v1/customers/plans/add-customers-v1-plans.d.mts +0 -51
  885. package/tools/v1/customers/plans/add-customers-v1-plans.d.mts.map +0 -1
  886. package/tools/v1/customers/plans/add-customers-v1-plans.d.ts +0 -51
  887. package/tools/v1/customers/plans/add-customers-v1-plans.d.ts.map +0 -1
  888. package/tools/v1/customers/plans/add-customers-v1-plans.js +0 -147
  889. package/tools/v1/customers/plans/add-customers-v1-plans.js.map +0 -1
  890. package/tools/v1/customers/plans/add-customers-v1-plans.mjs +0 -140
  891. package/tools/v1/customers/plans/add-customers-v1-plans.mjs.map +0 -1
  892. package/tools/v1/customers/plans/end-customers-v1-plans.d.mts +0 -51
  893. package/tools/v1/customers/plans/end-customers-v1-plans.d.mts.map +0 -1
  894. package/tools/v1/customers/plans/end-customers-v1-plans.d.ts +0 -51
  895. package/tools/v1/customers/plans/end-customers-v1-plans.d.ts.map +0 -1
  896. package/tools/v1/customers/plans/end-customers-v1-plans.js +0 -68
  897. package/tools/v1/customers/plans/end-customers-v1-plans.js.map +0 -1
  898. package/tools/v1/customers/plans/end-customers-v1-plans.mjs +0 -61
  899. package/tools/v1/customers/plans/end-customers-v1-plans.mjs.map +0 -1
  900. package/tools/v1/customers/plans/list-customers-v1-plans.d.mts +0 -51
  901. package/tools/v1/customers/plans/list-customers-v1-plans.d.mts.map +0 -1
  902. package/tools/v1/customers/plans/list-customers-v1-plans.d.ts +0 -51
  903. package/tools/v1/customers/plans/list-customers-v1-plans.d.ts.map +0 -1
  904. package/tools/v1/customers/plans/list-customers-v1-plans.js +0 -63
  905. package/tools/v1/customers/plans/list-customers-v1-plans.js.map +0 -1
  906. package/tools/v1/customers/plans/list-customers-v1-plans.mjs +0 -56
  907. package/tools/v1/customers/plans/list-customers-v1-plans.mjs.map +0 -1
  908. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.mts +0 -51
  909. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.mts.map +0 -1
  910. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.ts +0 -51
  911. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.d.ts.map +0 -1
  912. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.js +0 -66
  913. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.js.map +0 -1
  914. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.mjs +0 -59
  915. package/tools/v1/customers/plans/list-price-adjustments-customers-v1-plans.mjs.map +0 -1
  916. package/tools/v1/customers/preview-events-v1-customers.d.mts +0 -51
  917. package/tools/v1/customers/preview-events-v1-customers.d.mts.map +0 -1
  918. package/tools/v1/customers/preview-events-v1-customers.d.ts +0 -51
  919. package/tools/v1/customers/preview-events-v1-customers.d.ts.map +0 -1
  920. package/tools/v1/customers/preview-events-v1-customers.js +0 -80
  921. package/tools/v1/customers/preview-events-v1-customers.js.map +0 -1
  922. package/tools/v1/customers/preview-events-v1-customers.mjs +0 -73
  923. package/tools/v1/customers/preview-events-v1-customers.mjs.map +0 -1
  924. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.d.mts +0 -51
  925. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.d.mts.map +0 -1
  926. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.d.ts +0 -51
  927. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.d.ts.map +0 -1
  928. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.js +0 -55
  929. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.js.map +0 -1
  930. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.mjs +0 -48
  931. package/tools/v1/customers/retrieve-billing-configurations-v1-customers.mjs.map +0 -1
  932. package/tools/v1/customers/retrieve-v1-customers.d.mts +0 -51
  933. package/tools/v1/customers/retrieve-v1-customers.d.mts.map +0 -1
  934. package/tools/v1/customers/retrieve-v1-customers.d.ts +0 -51
  935. package/tools/v1/customers/retrieve-v1-customers.d.ts.map +0 -1
  936. package/tools/v1/customers/retrieve-v1-customers.js +0 -54
  937. package/tools/v1/customers/retrieve-v1-customers.js.map +0 -1
  938. package/tools/v1/customers/retrieve-v1-customers.mjs +0 -47
  939. package/tools/v1/customers/retrieve-v1-customers.mjs.map +0 -1
  940. package/tools/v1/customers/set-billing-configurations-v1-customers.d.mts +0 -51
  941. package/tools/v1/customers/set-billing-configurations-v1-customers.d.mts.map +0 -1
  942. package/tools/v1/customers/set-billing-configurations-v1-customers.d.ts +0 -51
  943. package/tools/v1/customers/set-billing-configurations-v1-customers.d.ts.map +0 -1
  944. package/tools/v1/customers/set-billing-configurations-v1-customers.js +0 -95
  945. package/tools/v1/customers/set-billing-configurations-v1-customers.js.map +0 -1
  946. package/tools/v1/customers/set-billing-configurations-v1-customers.mjs +0 -88
  947. package/tools/v1/customers/set-billing-configurations-v1-customers.mjs.map +0 -1
  948. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.mts +0 -51
  949. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.mts.map +0 -1
  950. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.ts +0 -51
  951. package/tools/v1/customers/set-ingest-aliases-v1-customers.d.ts.map +0 -1
  952. package/tools/v1/customers/set-ingest-aliases-v1-customers.js +0 -41
  953. package/tools/v1/customers/set-ingest-aliases-v1-customers.js.map +0 -1
  954. package/tools/v1/customers/set-ingest-aliases-v1-customers.mjs +0 -37
  955. package/tools/v1/customers/set-ingest-aliases-v1-customers.mjs.map +0 -1
  956. package/tools/v1/customers/set-name-v1-customers.d.mts +0 -51
  957. package/tools/v1/customers/set-name-v1-customers.d.mts.map +0 -1
  958. package/tools/v1/customers/set-name-v1-customers.d.ts +0 -51
  959. package/tools/v1/customers/set-name-v1-customers.d.ts.map +0 -1
  960. package/tools/v1/customers/set-name-v1-customers.js +0 -56
  961. package/tools/v1/customers/set-name-v1-customers.js.map +0 -1
  962. package/tools/v1/customers/set-name-v1-customers.mjs +0 -49
  963. package/tools/v1/customers/set-name-v1-customers.mjs.map +0 -1
  964. package/tools/v1/customers/update-config-v1-customers.d.mts +0 -51
  965. package/tools/v1/customers/update-config-v1-customers.d.mts.map +0 -1
  966. package/tools/v1/customers/update-config-v1-customers.d.ts +0 -51
  967. package/tools/v1/customers/update-config-v1-customers.d.ts.map +0 -1
  968. package/tools/v1/customers/update-config-v1-customers.js +0 -43
  969. package/tools/v1/customers/update-config-v1-customers.js.map +0 -1
  970. package/tools/v1/customers/update-config-v1-customers.mjs +0 -39
  971. package/tools/v1/customers/update-config-v1-customers.mjs.map +0 -1
  972. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.mts +0 -51
  973. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.mts.map +0 -1
  974. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.ts +0 -51
  975. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.d.ts.map +0 -1
  976. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.js +0 -138
  977. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.js.map +0 -1
  978. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.mjs +0 -131
  979. package/tools/v1/dashboards/get-embeddable-url-v1-dashboards.mjs.map +0 -1
  980. package/tools/v1/invoices/regenerate-v1-invoices.d.mts +0 -51
  981. package/tools/v1/invoices/regenerate-v1-invoices.d.mts.map +0 -1
  982. package/tools/v1/invoices/regenerate-v1-invoices.d.ts +0 -51
  983. package/tools/v1/invoices/regenerate-v1-invoices.d.ts.map +0 -1
  984. package/tools/v1/invoices/regenerate-v1-invoices.js +0 -53
  985. package/tools/v1/invoices/regenerate-v1-invoices.js.map +0 -1
  986. package/tools/v1/invoices/regenerate-v1-invoices.mjs +0 -46
  987. package/tools/v1/invoices/regenerate-v1-invoices.mjs.map +0 -1
  988. package/tools/v1/invoices/void-v1-invoices.d.mts +0 -51
  989. package/tools/v1/invoices/void-v1-invoices.d.mts.map +0 -1
  990. package/tools/v1/invoices/void-v1-invoices.d.ts +0 -51
  991. package/tools/v1/invoices/void-v1-invoices.d.ts.map +0 -1
  992. package/tools/v1/invoices/void-v1-invoices.js +0 -53
  993. package/tools/v1/invoices/void-v1-invoices.js.map +0 -1
  994. package/tools/v1/invoices/void-v1-invoices.mjs +0 -46
  995. package/tools/v1/invoices/void-v1-invoices.mjs.map +0 -1
  996. package/tools/v1/payments/attempt-v1-payments.d.mts +0 -51
  997. package/tools/v1/payments/attempt-v1-payments.d.mts.map +0 -1
  998. package/tools/v1/payments/attempt-v1-payments.d.ts +0 -51
  999. package/tools/v1/payments/attempt-v1-payments.d.ts.map +0 -1
  1000. package/tools/v1/payments/attempt-v1-payments.js +0 -55
  1001. package/tools/v1/payments/attempt-v1-payments.js.map +0 -1
  1002. package/tools/v1/payments/attempt-v1-payments.mjs +0 -48
  1003. package/tools/v1/payments/attempt-v1-payments.mjs.map +0 -1
  1004. package/tools/v1/payments/cancel-v1-payments.d.mts +0 -51
  1005. package/tools/v1/payments/cancel-v1-payments.d.mts.map +0 -1
  1006. package/tools/v1/payments/cancel-v1-payments.d.ts +0 -51
  1007. package/tools/v1/payments/cancel-v1-payments.d.ts.map +0 -1
  1008. package/tools/v1/payments/cancel-v1-payments.js +0 -55
  1009. package/tools/v1/payments/cancel-v1-payments.js.map +0 -1
  1010. package/tools/v1/payments/cancel-v1-payments.mjs +0 -48
  1011. package/tools/v1/payments/cancel-v1-payments.mjs.map +0 -1
  1012. package/tools/v1/payments/list-v1-payments.d.mts +0 -51
  1013. package/tools/v1/payments/list-v1-payments.d.mts.map +0 -1
  1014. package/tools/v1/payments/list-v1-payments.d.ts +0 -51
  1015. package/tools/v1/payments/list-v1-payments.d.ts.map +0 -1
  1016. package/tools/v1/payments/list-v1-payments.js +0 -76
  1017. package/tools/v1/payments/list-v1-payments.js.map +0 -1
  1018. package/tools/v1/payments/list-v1-payments.mjs +0 -69
  1019. package/tools/v1/payments/list-v1-payments.mjs.map +0 -1
  1020. package/tools/v1/plans/get-details-v1-plans.d.mts +0 -51
  1021. package/tools/v1/plans/get-details-v1-plans.d.mts.map +0 -1
  1022. package/tools/v1/plans/get-details-v1-plans.d.ts +0 -51
  1023. package/tools/v1/plans/get-details-v1-plans.d.ts.map +0 -1
  1024. package/tools/v1/plans/get-details-v1-plans.js +0 -54
  1025. package/tools/v1/plans/get-details-v1-plans.js.map +0 -1
  1026. package/tools/v1/plans/get-details-v1-plans.mjs +0 -47
  1027. package/tools/v1/plans/get-details-v1-plans.mjs.map +0 -1
  1028. package/tools/v1/plans/list-charges-v1-plans.d.mts +0 -51
  1029. package/tools/v1/plans/list-charges-v1-plans.d.mts.map +0 -1
  1030. package/tools/v1/plans/list-charges-v1-plans.d.ts +0 -51
  1031. package/tools/v1/plans/list-charges-v1-plans.d.ts.map +0 -1
  1032. package/tools/v1/plans/list-charges-v1-plans.js +0 -63
  1033. package/tools/v1/plans/list-charges-v1-plans.js.map +0 -1
  1034. package/tools/v1/plans/list-charges-v1-plans.mjs +0 -56
  1035. package/tools/v1/plans/list-charges-v1-plans.mjs.map +0 -1
  1036. package/tools/v1/plans/list-customers-v1-plans.d.mts +0 -51
  1037. package/tools/v1/plans/list-customers-v1-plans.d.mts.map +0 -1
  1038. package/tools/v1/plans/list-customers-v1-plans.d.ts +0 -51
  1039. package/tools/v1/plans/list-customers-v1-plans.d.ts.map +0 -1
  1040. package/tools/v1/plans/list-customers-v1-plans.js +0 -68
  1041. package/tools/v1/plans/list-customers-v1-plans.js.map +0 -1
  1042. package/tools/v1/plans/list-customers-v1-plans.mjs +0 -61
  1043. package/tools/v1/plans/list-customers-v1-plans.mjs.map +0 -1
  1044. package/tools/v1/plans/list-v1-plans.d.mts +0 -51
  1045. package/tools/v1/plans/list-v1-plans.d.mts.map +0 -1
  1046. package/tools/v1/plans/list-v1-plans.d.ts +0 -51
  1047. package/tools/v1/plans/list-v1-plans.d.ts.map +0 -1
  1048. package/tools/v1/plans/list-v1-plans.js +0 -60
  1049. package/tools/v1/plans/list-v1-plans.js.map +0 -1
  1050. package/tools/v1/plans/list-v1-plans.mjs +0 -53
  1051. package/tools/v1/plans/list-v1-plans.mjs.map +0 -1
  1052. package/tools/v1/pricing-units/list-v1-pricing-units.d.mts +0 -51
  1053. package/tools/v1/pricing-units/list-v1-pricing-units.d.mts.map +0 -1
  1054. package/tools/v1/pricing-units/list-v1-pricing-units.d.ts +0 -51
  1055. package/tools/v1/pricing-units/list-v1-pricing-units.d.ts.map +0 -1
  1056. package/tools/v1/pricing-units/list-v1-pricing-units.js +0 -60
  1057. package/tools/v1/pricing-units/list-v1-pricing-units.js.map +0 -1
  1058. package/tools/v1/pricing-units/list-v1-pricing-units.mjs +0 -53
  1059. package/tools/v1/pricing-units/list-v1-pricing-units.mjs.map +0 -1
  1060. package/tools/v1/services/list-v1-services.d.mts +0 -51
  1061. package/tools/v1/services/list-v1-services.d.mts.map +0 -1
  1062. package/tools/v1/services/list-v1-services.d.ts +0 -51
  1063. package/tools/v1/services/list-v1-services.d.ts.map +0 -1
  1064. package/tools/v1/services/list-v1-services.js +0 -51
  1065. package/tools/v1/services/list-v1-services.js.map +0 -1
  1066. package/tools/v1/services/list-v1-services.mjs +0 -44
  1067. package/tools/v1/services/list-v1-services.mjs.map +0 -1
  1068. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.d.mts +0 -51
  1069. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.d.mts.map +0 -1
  1070. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.d.ts +0 -51
  1071. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.d.ts.map +0 -1
  1072. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.js +0 -64
  1073. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.js.map +0 -1
  1074. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.mjs +0 -57
  1075. package/tools/v1/settings/billing-providers/create-settings-v1-billing-providers.mjs.map +0 -1
  1076. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.d.mts +0 -51
  1077. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.d.mts.map +0 -1
  1078. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.d.ts +0 -51
  1079. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.d.ts.map +0 -1
  1080. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.js +0 -53
  1081. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.js.map +0 -1
  1082. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.mjs +0 -46
  1083. package/tools/v1/settings/billing-providers/list-settings-v1-billing-providers.mjs.map +0 -1
  1084. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.d.mts +0 -51
  1085. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.d.mts.map +0 -1
  1086. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.d.ts +0 -51
  1087. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.d.ts.map +0 -1
  1088. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.js +0 -73
  1089. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.js.map +0 -1
  1090. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.mjs +0 -66
  1091. package/tools/v1/settings/upsert-avalara-credentials-v1-settings.mjs.map +0 -1
  1092. package/tools/v1/usage/ingest-v1-usage.d.mts +0 -51
  1093. package/tools/v1/usage/ingest-v1-usage.d.mts.map +0 -1
  1094. package/tools/v1/usage/ingest-v1-usage.d.ts +0 -51
  1095. package/tools/v1/usage/ingest-v1-usage.d.ts.map +0 -1
  1096. package/tools/v1/usage/ingest-v1-usage.js +0 -58
  1097. package/tools/v1/usage/ingest-v1-usage.js.map +0 -1
  1098. package/tools/v1/usage/ingest-v1-usage.mjs +0 -54
  1099. package/tools/v1/usage/ingest-v1-usage.mjs.map +0 -1
  1100. package/tools/v1/usage/list-v1-usage.d.mts +0 -51
  1101. package/tools/v1/usage/list-v1-usage.d.mts.map +0 -1
  1102. package/tools/v1/usage/list-v1-usage.d.ts +0 -51
  1103. package/tools/v1/usage/list-v1-usage.d.ts.map +0 -1
  1104. package/tools/v1/usage/list-v1-usage.js +0 -104
  1105. package/tools/v1/usage/list-v1-usage.js.map +0 -1
  1106. package/tools/v1/usage/list-v1-usage.mjs +0 -97
  1107. package/tools/v1/usage/list-v1-usage.mjs.map +0 -1
  1108. package/tools/v1/usage/list-with-groups-v1-usage.d.mts +0 -51
  1109. package/tools/v1/usage/list-with-groups-v1-usage.d.mts.map +0 -1
  1110. package/tools/v1/usage/list-with-groups-v1-usage.d.ts +0 -51
  1111. package/tools/v1/usage/list-with-groups-v1-usage.d.ts.map +0 -1
  1112. package/tools/v1/usage/list-with-groups-v1-usage.js +0 -98
  1113. package/tools/v1/usage/list-with-groups-v1-usage.js.map +0 -1
  1114. package/tools/v1/usage/list-with-groups-v1-usage.mjs +0 -91
  1115. package/tools/v1/usage/list-with-groups-v1-usage.mjs.map +0 -1
  1116. package/tools/v1/usage/search-v1-usage.d.mts +0 -51
  1117. package/tools/v1/usage/search-v1-usage.d.mts.map +0 -1
  1118. package/tools/v1/usage/search-v1-usage.d.ts +0 -51
  1119. package/tools/v1/usage/search-v1-usage.d.ts.map +0 -1
  1120. package/tools/v1/usage/search-v1-usage.js +0 -56
  1121. package/tools/v1/usage/search-v1-usage.js.map +0 -1
  1122. package/tools/v1/usage/search-v1-usage.mjs +0 -49
  1123. package/tools/v1/usage/search-v1-usage.mjs.map +0 -1
  1124. package/tools/v2/contracts/edit-commit-v2-contracts.d.mts +0 -51
  1125. package/tools/v2/contracts/edit-commit-v2-contracts.d.mts.map +0 -1
  1126. package/tools/v2/contracts/edit-commit-v2-contracts.d.ts +0 -51
  1127. package/tools/v2/contracts/edit-commit-v2-contracts.d.ts.map +0 -1
  1128. package/tools/v2/contracts/edit-commit-v2-contracts.js +0 -301
  1129. package/tools/v2/contracts/edit-commit-v2-contracts.js.map +0 -1
  1130. package/tools/v2/contracts/edit-commit-v2-contracts.mjs +0 -294
  1131. package/tools/v2/contracts/edit-commit-v2-contracts.mjs.map +0 -1
  1132. package/tools/v2/contracts/edit-credit-v2-contracts.d.mts +0 -51
  1133. package/tools/v2/contracts/edit-credit-v2-contracts.d.mts.map +0 -1
  1134. package/tools/v2/contracts/edit-credit-v2-contracts.d.ts +0 -51
  1135. package/tools/v2/contracts/edit-credit-v2-contracts.d.ts.map +0 -1
  1136. package/tools/v2/contracts/edit-credit-v2-contracts.js +0 -233
  1137. package/tools/v2/contracts/edit-credit-v2-contracts.js.map +0 -1
  1138. package/tools/v2/contracts/edit-credit-v2-contracts.mjs +0 -226
  1139. package/tools/v2/contracts/edit-credit-v2-contracts.mjs.map +0 -1
  1140. package/tools/v2/contracts/edit-v2-contracts.d.mts +0 -51
  1141. package/tools/v2/contracts/edit-v2-contracts.d.mts.map +0 -1
  1142. package/tools/v2/contracts/edit-v2-contracts.d.ts +0 -51
  1143. package/tools/v2/contracts/edit-v2-contracts.d.ts.map +0 -1
  1144. package/tools/v2/contracts/edit-v2-contracts.js +0 -2214
  1145. package/tools/v2/contracts/edit-v2-contracts.js.map +0 -1
  1146. package/tools/v2/contracts/edit-v2-contracts.mjs +0 -2207
  1147. package/tools/v2/contracts/edit-v2-contracts.mjs.map +0 -1
  1148. package/tools/v2/contracts/get-edit-history-v2-contracts.d.mts +0 -51
  1149. package/tools/v2/contracts/get-edit-history-v2-contracts.d.mts.map +0 -1
  1150. package/tools/v2/contracts/get-edit-history-v2-contracts.d.ts +0 -51
  1151. package/tools/v2/contracts/get-edit-history-v2-contracts.d.ts.map +0 -1
  1152. package/tools/v2/contracts/get-edit-history-v2-contracts.js +0 -49
  1153. package/tools/v2/contracts/get-edit-history-v2-contracts.js.map +0 -1
  1154. package/tools/v2/contracts/get-edit-history-v2-contracts.mjs +0 -42
  1155. package/tools/v2/contracts/get-edit-history-v2-contracts.mjs.map +0 -1
  1156. package/tools/v2/contracts/list-v2-contracts.d.mts +0 -51
  1157. package/tools/v2/contracts/list-v2-contracts.d.mts.map +0 -1
  1158. package/tools/v2/contracts/list-v2-contracts.d.ts +0 -51
  1159. package/tools/v2/contracts/list-v2-contracts.d.ts.map +0 -1
  1160. package/tools/v2/contracts/list-v2-contracts.js +0 -68
  1161. package/tools/v2/contracts/list-v2-contracts.js.map +0 -1
  1162. package/tools/v2/contracts/list-v2-contracts.mjs +0 -61
  1163. package/tools/v2/contracts/list-v2-contracts.mjs.map +0 -1
  1164. package/tools/v2/contracts/retrieve-v2-contracts.d.mts +0 -51
  1165. package/tools/v2/contracts/retrieve-v2-contracts.d.mts.map +0 -1
  1166. package/tools/v2/contracts/retrieve-v2-contracts.d.ts +0 -51
  1167. package/tools/v2/contracts/retrieve-v2-contracts.d.ts.map +0 -1
  1168. package/tools/v2/contracts/retrieve-v2-contracts.js +0 -62
  1169. package/tools/v2/contracts/retrieve-v2-contracts.js.map +0 -1
  1170. package/tools/v2/contracts/retrieve-v2-contracts.mjs +0 -55
  1171. package/tools/v2/contracts/retrieve-v2-contracts.mjs.map +0 -1
  1172. package/tools.d.mts +0 -2
  1173. package/tools.d.mts.map +0 -1
  1174. package/tools.d.ts +0 -2
  1175. package/tools.d.ts.map +0 -1
  1176. package/tools.js +0 -18
  1177. package/tools.js.map +0 -1
  1178. package/tools.mjs +0 -2
  1179. package/tools.mjs.map +0 -1
  1180. /package/{tools/types.js → types.js} +0 -0
  1181. /package/{tools/types.mjs → types.mjs} +0 -0
@@ -1,68 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { isJqError, maybeFilter } from '@metronome/mcp/filtering';
4
- import { Metadata, asErrorResult, asTextContentResult } from '@metronome/mcp/tools/types';
5
-
6
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
7
- import Metronome from '@metronome/sdk';
8
-
9
- export const metadata: Metadata = {
10
- resource: 'v1.contracts',
11
- operation: 'write',
12
- tags: [],
13
- httpMethod: 'post',
14
- httpPath: '/v1/contracts/updateEndDate',
15
- operationId: 'updateContractEndDate-v1',
16
- };
17
-
18
- export const tool: Tool = {
19
- name: 'update_end_date_v1_contracts',
20
- description:
21
- "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate or add an end date to a contract. Ending a contract early will impact draft usage statements, truncate any terms, and remove upcoming scheduled invoices. Moving the date into the future will only extend the contract length. Terms and scheduled invoices are not extended. In-advance subscriptions will not be extended. Use this if a contract's end date has changed or if a perpetual contract ends.\n\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/contract_update_end_date_response',\n $defs: {\n contract_update_end_date_response: {\n type: 'object',\n properties: {\n data: {\n $ref: '#/$defs/id'\n }\n },\n required: [ 'data'\n ]\n },\n id: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n }\n },\n required: [ 'id'\n ]\n }\n }\n}\n```",
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- contract_id: {
26
- type: 'string',
27
- description: 'ID of the contract to update',
28
- },
29
- customer_id: {
30
- type: 'string',
31
- description: 'ID of the customer whose contract is to be updated',
32
- },
33
- allow_ending_before_finalized_invoice: {
34
- type: 'boolean',
35
- description:
36
- 'If true, allows setting the contract end date earlier than the end_timestamp of existing finalized invoices. Finalized invoices will be unchanged; if you want to incorporate the new end date, you can void and regenerate finalized usage invoices. Defaults to true.',
37
- },
38
- ending_before: {
39
- type: 'string',
40
- description:
41
- 'RFC 3339 timestamp indicating when the contract will end (exclusive). If not provided, the contract will be updated to be open-ended.',
42
- format: 'date-time',
43
- },
44
- jq_filter: {
45
- type: 'string',
46
- title: 'jq Filter',
47
- description:
48
- 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
49
- },
50
- },
51
- required: ['contract_id', 'customer_id'],
52
- },
53
- annotations: {},
54
- };
55
-
56
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
57
- const { jq_filter, ...body } = args as any;
58
- try {
59
- return asTextContentResult(await maybeFilter(jq_filter, await client.v1.contracts.updateEndDate(body)));
60
- } catch (error) {
61
- if (error instanceof Metronome.APIError || isJqError(error)) {
62
- return asErrorResult(error.message);
63
- }
64
- throw error;
65
- }
66
- };
67
-
68
- export default { metadata, tool, handler };
@@ -1,188 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { isJqError, maybeFilter } from '@metronome/mcp/filtering';
4
- import { Metadata, asErrorResult, asTextContentResult } from '@metronome/mcp/tools/types';
5
-
6
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
7
- import Metronome from '@metronome/sdk';
8
-
9
- export const metadata: Metadata = {
10
- resource: 'v1.credit_grants',
11
- operation: 'write',
12
- tags: [],
13
- httpMethod: 'post',
14
- httpPath: '/v1/credits/createGrant',
15
- operationId: 'createGrant-v1',
16
- };
17
-
18
- export const tool: Tool = {
19
- name: 'create_v1_credit_grants',
20
- description:
21
- "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a new credit grant. This is a Plans (deprecated) endpoint. New clients should implement using Contracts.\n\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/credit_grant_create_response',\n $defs: {\n credit_grant_create_response: {\n type: 'object',\n properties: {\n data: {\n $ref: '#/$defs/id'\n }\n },\n required: [ 'data'\n ]\n },\n id: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n }\n },\n required: [ 'id'\n ]\n }\n }\n}\n```",
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- customer_id: {
26
- type: 'string',
27
- description: 'the Metronome ID of the customer',
28
- },
29
- expires_at: {
30
- type: 'string',
31
- description: 'The credit grant will only apply to usage or charges dated before this timestamp',
32
- format: 'date-time',
33
- },
34
- grant_amount: {
35
- type: 'object',
36
- description: 'the amount of credits granted',
37
- properties: {
38
- amount: {
39
- type: 'number',
40
- },
41
- credit_type_id: {
42
- type: 'string',
43
- description: 'the ID of the pricing unit to be used. Defaults to USD (cents) if not passed.',
44
- },
45
- },
46
- required: ['amount', 'credit_type_id'],
47
- },
48
- name: {
49
- type: 'string',
50
- description: 'the name of the credit grant as it will appear on invoices',
51
- },
52
- paid_amount: {
53
- type: 'object',
54
- description: 'the amount paid for this credit grant',
55
- properties: {
56
- amount: {
57
- type: 'number',
58
- },
59
- credit_type_id: {
60
- type: 'string',
61
- description: 'the ID of the pricing unit to be used. Defaults to USD (cents) if not passed.',
62
- },
63
- },
64
- required: ['amount', 'credit_type_id'],
65
- },
66
- priority: {
67
- type: 'number',
68
- },
69
- credit_grant_type: {
70
- type: 'string',
71
- },
72
- custom_fields: {
73
- type: 'object',
74
- description: 'Custom fields to attach to the credit grant.',
75
- additionalProperties: true,
76
- },
77
- effective_at: {
78
- type: 'string',
79
- description: 'The credit grant will only apply to usage or charges dated on or after this timestamp',
80
- format: 'date-time',
81
- },
82
- invoice_date: {
83
- type: 'string',
84
- description: 'The date to issue an invoice for the paid_amount.',
85
- format: 'date-time',
86
- },
87
- product_ids: {
88
- type: 'array',
89
- description:
90
- 'The product(s) which these credits will be applied to. (If unspecified, the credits will be applied to charges for all products.). The array ordering specified here will be used to determine the order in which credits will be applied to invoice line items',
91
- items: {
92
- type: 'string',
93
- },
94
- },
95
- reason: {
96
- type: 'string',
97
- },
98
- rollover_settings: {
99
- type: 'object',
100
- description:
101
- 'Configure a rollover for this credit grant so if it expires it rolls over a configured amount to a new credit grant. This feature is currently opt-in only. Contact Metronome to be added to the beta.',
102
- properties: {
103
- expires_at: {
104
- type: 'string',
105
- description: 'The date to expire the rollover credits.',
106
- format: 'date-time',
107
- },
108
- priority: {
109
- type: 'number',
110
- description:
111
- 'The priority to give the rollover credit grant that gets created when a rollover happens.',
112
- },
113
- rollover_amount: {
114
- anyOf: [
115
- {
116
- $ref: '#/$defs/rollover_amount_max_percentage',
117
- },
118
- {
119
- $ref: '#/$defs/rollover_amount_max_amount',
120
- },
121
- ],
122
- description: 'Specify how much to rollover to the rollover credit grant',
123
- },
124
- },
125
- required: ['expires_at', 'priority', 'rollover_amount'],
126
- },
127
- uniqueness_key: {
128
- type: 'string',
129
- description:
130
- 'Prevents the creation of duplicates. If a request to create a record is made with a previously used uniqueness key, a new record will not be created and the request will fail with a 409 error.',
131
- },
132
- jq_filter: {
133
- type: 'string',
134
- title: 'jq Filter',
135
- description:
136
- 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
137
- },
138
- },
139
- required: ['customer_id', 'expires_at', 'grant_amount', 'name', 'paid_amount', 'priority'],
140
- $defs: {
141
- rollover_amount_max_percentage: {
142
- type: 'object',
143
- properties: {
144
- type: {
145
- type: 'string',
146
- description: 'Rollover up to a percentage of the original credit grant amount.',
147
- enum: ['MAX_PERCENTAGE'],
148
- },
149
- value: {
150
- type: 'number',
151
- description: 'The maximum percentage (0-1) of the original credit grant to rollover.',
152
- },
153
- },
154
- required: ['type', 'value'],
155
- },
156
- rollover_amount_max_amount: {
157
- type: 'object',
158
- properties: {
159
- type: {
160
- type: 'string',
161
- description: 'Rollover up to a fixed amount of the original credit grant amount.',
162
- enum: ['MAX_AMOUNT'],
163
- },
164
- value: {
165
- type: 'number',
166
- description: 'The maximum amount to rollover.',
167
- },
168
- },
169
- required: ['type', 'value'],
170
- },
171
- },
172
- },
173
- annotations: {},
174
- };
175
-
176
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
177
- const { jq_filter, ...body } = args as any;
178
- try {
179
- return asTextContentResult(await maybeFilter(jq_filter, await client.v1.creditGrants.create(body)));
180
- } catch (error) {
181
- if (error instanceof Metronome.APIError || isJqError(error)) {
182
- return asErrorResult(error.message);
183
- }
184
- throw error;
185
- }
186
- };
187
-
188
- export default { metadata, tool, handler };
@@ -1,66 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { isJqError, maybeFilter } from '@metronome/mcp/filtering';
4
- import { Metadata, asErrorResult, asTextContentResult } from '@metronome/mcp/tools/types';
5
-
6
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
7
- import Metronome from '@metronome/sdk';
8
-
9
- export const metadata: Metadata = {
10
- resource: 'v1.credit_grants',
11
- operation: 'write',
12
- tags: [],
13
- httpMethod: 'post',
14
- httpPath: '/v1/credits/editGrant',
15
- operationId: 'editGrant-v1',
16
- };
17
-
18
- export const tool: Tool = {
19
- name: 'edit_v1_credit_grants',
20
- description:
21
- "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nEdit an existing credit grant. This is a Plans (deprecated) endpoint. New clients should implement using Contracts.\n\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/credit_grant_edit_response',\n $defs: {\n credit_grant_edit_response: {\n type: 'object',\n properties: {\n data: {\n $ref: '#/$defs/id'\n }\n },\n required: [ 'data'\n ]\n },\n id: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n }\n },\n required: [ 'id'\n ]\n }\n }\n}\n```",
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- id: {
26
- type: 'string',
27
- description: 'the ID of the credit grant',
28
- },
29
- credit_grant_type: {
30
- type: 'string',
31
- description: 'the updated credit grant type',
32
- },
33
- expires_at: {
34
- type: 'string',
35
- description: 'the updated expiration date for the credit grant',
36
- format: 'date-time',
37
- },
38
- name: {
39
- type: 'string',
40
- description: 'the updated name for the credit grant',
41
- },
42
- jq_filter: {
43
- type: 'string',
44
- title: 'jq Filter',
45
- description:
46
- 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
47
- },
48
- },
49
- required: ['id'],
50
- },
51
- annotations: {},
52
- };
53
-
54
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
55
- const { jq_filter, ...body } = args as any;
56
- try {
57
- return asTextContentResult(await maybeFilter(jq_filter, await client.v1.creditGrants.edit(body)));
58
- } catch (error) {
59
- if (error instanceof Metronome.APIError || isJqError(error)) {
60
- return asErrorResult(error.message);
61
- }
62
- throw error;
63
- }
64
- };
65
-
66
- export default { metadata, tool, handler };
@@ -1,86 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { isJqError, maybeFilter } from '@metronome/mcp/filtering';
4
- import { Metadata, asErrorResult, asTextContentResult } from '@metronome/mcp/tools/types';
5
-
6
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
7
- import Metronome from '@metronome/sdk';
8
-
9
- export const metadata: Metadata = {
10
- resource: 'v1.credit_grants',
11
- operation: 'write',
12
- tags: [],
13
- httpMethod: 'post',
14
- httpPath: '/v1/credits/listEntries',
15
- operationId: 'listCreditLedgerEntries-v1',
16
- };
17
-
18
- export const tool: Tool = {
19
- name: 'list_entries_v1_credit_grants',
20
- description:
21
- "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nFetches 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. This is a Plans (deprecated) endpoint. New clients should implement using Contracts.\n\n\n# Response Schema\n```json\n{\n type: 'object',\n properties: {\n data: {\n type: 'array',\n items: {\n $ref: '#/$defs/credit_grant_list_entries_response'\n }\n },\n next_page: {\n type: 'string'\n }\n },\n required: [ 'data',\n 'next_page'\n ],\n $defs: {\n credit_grant_list_entries_response: {\n type: 'object',\n properties: {\n customer_id: {\n type: 'string'\n },\n ledgers: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n credit_type: {\n $ref: '#/$defs/credit_type_data'\n },\n ending_balance: {\n type: 'object',\n description: 'the effective balances at the end of the specified time window',\n properties: {\n effective_at: {\n type: 'string',\n description: 'the ending_before request parameter (if supplied) or the current billing period\\'s end date',\n format: 'date-time'\n },\n excluding_pending: {\n type: 'number',\n description: 'the ending balance, including the balance of all grants that have not expired before the effective_at date and deductions that happened before the effective_at date'\n },\n including_pending: {\n type: 'number',\n description: 'the excluding_pending balance plus any pending invoice deductions and expirations that will happen by the effective_at date'\n }\n },\n required: [ 'effective_at',\n 'excluding_pending',\n 'including_pending'\n ]\n },\n entries: {\n type: 'array',\n items: {\n $ref: '#/$defs/credit_ledger_entry'\n }\n },\n pending_entries: {\n type: 'array',\n items: {\n $ref: '#/$defs/credit_ledger_entry'\n }\n },\n starting_balance: {\n type: 'object',\n properties: {\n effective_at: {\n type: 'string',\n description: 'the starting_on request parameter (if supplied) or the first credit grant\\'s effective_at date',\n format: 'date-time'\n },\n excluding_pending: {\n type: 'number',\n description: 'the starting balance, including all posted grants, deductions, and expirations that happened at or before the effective_at timestamp'\n },\n including_pending: {\n type: 'number',\n description: 'the excluding_pending balance plus any pending activity that has not been posted at the time of the query'\n }\n },\n required: [ 'effective_at',\n 'excluding_pending',\n 'including_pending'\n ]\n }\n },\n required: [ 'credit_type',\n 'ending_balance',\n 'entries',\n 'pending_entries',\n 'starting_balance'\n ]\n }\n }\n },\n required: [ 'customer_id',\n 'ledgers'\n ]\n },\n credit_type_data: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n },\n name: {\n type: 'string'\n }\n },\n required: [ 'id',\n 'name'\n ]\n },\n credit_ledger_entry: {\n type: 'object',\n properties: {\n amount: {\n type: 'number',\n description: 'an amount representing the change to the customer\\'s credit balance'\n },\n created_by: {\n type: 'string'\n },\n credit_grant_id: {\n type: 'string',\n description: 'the credit grant this entry is related to'\n },\n effective_at: {\n type: 'string',\n format: 'date-time'\n },\n reason: {\n type: 'string'\n },\n running_balance: {\n type: 'number',\n description: 'the running balance for this credit type at the time of the ledger entry, including all preceding charges'\n },\n invoice_id: {\n type: 'string',\n description: 'if this entry is a deduction, the Metronome ID of the invoice where the credit deduction was consumed; if this entry is a grant, the Metronome ID of the invoice where the grant\\'s paid_amount was charged'\n }\n },\n required: [ 'amount',\n 'created_by',\n 'credit_grant_id',\n 'effective_at',\n 'reason',\n 'running_balance'\n ]\n }\n }\n}\n```",
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- next_page: {
26
- type: 'string',
27
- description: 'Cursor that indicates where the next page of results should start.',
28
- },
29
- sort: {
30
- type: 'string',
31
- description: 'Ledgers sort order by date, asc or desc. Defaults to asc.',
32
- enum: ['asc', 'desc'],
33
- },
34
- credit_type_ids: {
35
- type: 'array',
36
- description:
37
- 'A list of Metronome credit type IDs to fetch ledger entries for. If absent, ledger entries for all credit types will be returned.',
38
- items: {
39
- type: 'string',
40
- },
41
- },
42
- customer_ids: {
43
- type: 'array',
44
- description:
45
- 'A list of Metronome customer IDs to fetch ledger entries for. If absent, ledger entries for all customers will be returned.',
46
- items: {
47
- type: 'string',
48
- },
49
- },
50
- ending_before: {
51
- type: 'string',
52
- description:
53
- "If supplied, ledger entries will only be returned with an effective_at before this time. This timestamp must not be in the future. If no timestamp is supplied, all entries up to the start of the customer's next billing period will be returned.",
54
- format: 'date-time',
55
- },
56
- starting_on: {
57
- type: 'string',
58
- description: 'If supplied, only ledger entries effective at or after this time will be returned.',
59
- format: 'date-time',
60
- },
61
- jq_filter: {
62
- type: 'string',
63
- title: 'jq Filter',
64
- description:
65
- 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
66
- },
67
- },
68
- required: [],
69
- },
70
- annotations: {},
71
- };
72
-
73
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
74
- const { jq_filter, ...body } = args as any;
75
- const response = await client.v1.creditGrants.listEntries(body).asResponse();
76
- try {
77
- return asTextContentResult(await maybeFilter(jq_filter, await response.json()));
78
- } catch (error) {
79
- if (error instanceof Metronome.APIError || isJqError(error)) {
80
- return asErrorResult(error.message);
81
- }
82
- throw error;
83
- }
84
- };
85
-
86
- export default { metadata, tool, handler };
@@ -1,92 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { isJqError, maybeFilter } from '@metronome/mcp/filtering';
4
- import { Metadata, asErrorResult, asTextContentResult } from '@metronome/mcp/tools/types';
5
-
6
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
7
- import Metronome from '@metronome/sdk';
8
-
9
- export const metadata: Metadata = {
10
- resource: 'v1.credit_grants',
11
- operation: 'write',
12
- tags: [],
13
- httpMethod: 'post',
14
- httpPath: '/v1/credits/listGrants',
15
- operationId: 'listGrants-v1',
16
- };
17
-
18
- export const tool: Tool = {
19
- name: 'list_v1_credit_grants',
20
- description:
21
- "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList credit grants. This list does not included voided grants. This is a Plans (deprecated) endpoint. New clients should implement using Contracts.\n\n\n# Response Schema\n```json\n{\n type: 'object',\n properties: {\n data: {\n type: 'array',\n items: {\n $ref: '#/$defs/credit_grant_list_response'\n }\n },\n next_page: {\n type: 'string'\n }\n },\n required: [ 'data',\n 'next_page'\n ],\n $defs: {\n credit_grant_list_response: {\n type: 'object',\n properties: {\n id: {\n type: 'string',\n description: 'the Metronome ID of the credit grant'\n },\n balance: {\n type: 'object',\n description: 'The effective balance of the grant as of the end of the customer\\'s current billing period. Expiration deductions will be included only if the grant expires before the end of the current billing period.',\n properties: {\n effective_at: {\n type: 'string',\n description: 'The end_date of the customer\\'s current billing period.',\n format: 'date-time'\n },\n excluding_pending: {\n type: 'number',\n description: 'The grant\\'s current balance including all posted deductions. If the grant has expired, this amount will be 0.'\n },\n including_pending: {\n type: 'number',\n description: 'The grant\\'s current balance including all posted and pending deductions. If the grant expires before the end of the customer\\'s current billing period, this amount will be 0.'\n }\n },\n required: [ 'effective_at',\n 'excluding_pending',\n 'including_pending'\n ]\n },\n custom_fields: {\n type: 'object',\n description: 'Custom fields to be added eg. { \"key1\": \"value1\", \"key2\": \"value2\" }',\n additionalProperties: true\n },\n customer_id: {\n type: 'string',\n description: 'the Metronome ID of the customer'\n },\n deductions: {\n type: 'array',\n items: {\n $ref: '#/$defs/credit_ledger_entry'\n }\n },\n effective_at: {\n type: 'string',\n format: 'date-time'\n },\n expires_at: {\n type: 'string',\n format: 'date-time'\n },\n grant_amount: {\n type: 'object',\n description: 'the amount of credits initially granted',\n properties: {\n amount: {\n type: 'number'\n },\n credit_type: {\n $ref: '#/$defs/credit_type_data'\n }\n },\n required: [ 'amount',\n 'credit_type'\n ]\n },\n name: {\n type: 'string'\n },\n paid_amount: {\n type: 'object',\n description: 'the amount paid for this credit grant',\n properties: {\n amount: {\n type: 'number'\n },\n credit_type: {\n $ref: '#/$defs/credit_type_data'\n }\n },\n required: [ 'amount',\n 'credit_type'\n ]\n },\n pending_deductions: {\n type: 'array',\n items: {\n $ref: '#/$defs/credit_ledger_entry'\n }\n },\n priority: {\n type: 'number'\n },\n credit_grant_type: {\n type: 'string'\n },\n invoice_id: {\n type: 'string',\n description: 'the Metronome ID of the invoice with the purchase charge for this credit grant, if applicable'\n },\n products: {\n type: 'array',\n description: 'The products which these credits will be applied to. (If unspecified, the credits will be applied to charges for all products.)',\n items: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n },\n name: {\n type: 'string'\n }\n },\n required: [ 'id',\n 'name'\n ]\n }\n },\n reason: {\n type: 'string'\n },\n uniqueness_key: {\n type: 'string',\n description: 'Prevents the creation of duplicates. If a request to create a record is made with a previously used uniqueness key, a new record will not be created and the request will fail with a 409 error.'\n }\n },\n required: [ 'id',\n 'balance',\n 'custom_fields',\n 'customer_id',\n 'deductions',\n 'effective_at',\n 'expires_at',\n 'grant_amount',\n 'name',\n 'paid_amount',\n 'pending_deductions',\n 'priority'\n ]\n },\n credit_ledger_entry: {\n type: 'object',\n properties: {\n amount: {\n type: 'number',\n description: 'an amount representing the change to the customer\\'s credit balance'\n },\n created_by: {\n type: 'string'\n },\n credit_grant_id: {\n type: 'string',\n description: 'the credit grant this entry is related to'\n },\n effective_at: {\n type: 'string',\n format: 'date-time'\n },\n reason: {\n type: 'string'\n },\n running_balance: {\n type: 'number',\n description: 'the running balance for this credit type at the time of the ledger entry, including all preceding charges'\n },\n invoice_id: {\n type: 'string',\n description: 'if this entry is a deduction, the Metronome ID of the invoice where the credit deduction was consumed; if this entry is a grant, the Metronome ID of the invoice where the grant\\'s paid_amount was charged'\n }\n },\n required: [ 'amount',\n 'created_by',\n 'credit_grant_id',\n 'effective_at',\n 'reason',\n 'running_balance'\n ]\n },\n credit_type_data: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n },\n name: {\n type: 'string'\n }\n },\n required: [ 'id',\n 'name'\n ]\n }\n }\n}\n```",
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- limit: {
26
- type: 'integer',
27
- description: 'Max number of results that should be returned',
28
- },
29
- next_page: {
30
- type: 'string',
31
- description: 'Cursor that indicates where the next page of results should start.',
32
- },
33
- credit_grant_ids: {
34
- type: 'array',
35
- description:
36
- 'An array of credit grant IDs. If this is specified, neither credit_type_ids nor customer_ids may be specified.',
37
- items: {
38
- type: 'string',
39
- },
40
- },
41
- credit_type_ids: {
42
- type: 'array',
43
- description:
44
- 'An array of credit type IDs. This must not be specified if credit_grant_ids is specified.',
45
- items: {
46
- type: 'string',
47
- },
48
- },
49
- customer_ids: {
50
- type: 'array',
51
- description:
52
- 'An array of Metronome customer IDs. This must not be specified if credit_grant_ids is specified.',
53
- items: {
54
- type: 'string',
55
- },
56
- },
57
- effective_before: {
58
- type: 'string',
59
- description: 'Only return credit grants that are effective before this timestamp (exclusive).',
60
- format: 'date-time',
61
- },
62
- not_expiring_before: {
63
- type: 'string',
64
- description: 'Only return credit grants that expire at or after this timestamp.',
65
- format: 'date-time',
66
- },
67
- jq_filter: {
68
- type: 'string',
69
- title: 'jq Filter',
70
- description:
71
- 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
72
- },
73
- },
74
- required: [],
75
- },
76
- annotations: {},
77
- };
78
-
79
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
80
- const { jq_filter, ...body } = args as any;
81
- const response = await client.v1.creditGrants.list(body).asResponse();
82
- try {
83
- return asTextContentResult(await maybeFilter(jq_filter, await response.json()));
84
- } catch (error) {
85
- if (error instanceof Metronome.APIError || isJqError(error)) {
86
- return asErrorResult(error.message);
87
- }
88
- throw error;
89
- }
90
- };
91
-
92
- export default { metadata, tool, handler };
@@ -1,60 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { isJqError, maybeFilter } from '@metronome/mcp/filtering';
4
- import { Metadata, asErrorResult, asTextContentResult } from '@metronome/mcp/tools/types';
5
-
6
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
7
- import Metronome from '@metronome/sdk';
8
-
9
- export const metadata: Metadata = {
10
- resource: 'v1.credit_grants',
11
- operation: 'write',
12
- tags: [],
13
- httpMethod: 'post',
14
- httpPath: '/v1/credits/voidGrant',
15
- operationId: 'voidGrant-v1',
16
- };
17
-
18
- export const tool: Tool = {
19
- name: 'void_v1_credit_grants',
20
- description:
21
- "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nVoid a credit grant. This is a Plans (deprecated) endpoint. New clients should implement using Contracts.\n\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/credit_grant_void_response',\n $defs: {\n credit_grant_void_response: {\n type: 'object',\n properties: {\n data: {\n $ref: '#/$defs/id'\n }\n },\n required: [ 'data'\n ]\n },\n id: {\n type: 'object',\n properties: {\n id: {\n type: 'string'\n }\n },\n required: [ 'id'\n ]\n }\n }\n}\n```",
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- id: {
26
- type: 'string',
27
- },
28
- release_uniqueness_key: {
29
- type: 'boolean',
30
- description: 'If true, resets the uniqueness key on this grant so it can be re-used',
31
- },
32
- void_credit_purchase_invoice: {
33
- type: 'boolean',
34
- description: 'If true, void the purchase invoice associated with the grant',
35
- },
36
- jq_filter: {
37
- type: 'string',
38
- title: 'jq Filter',
39
- description:
40
- 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
41
- },
42
- },
43
- required: ['id'],
44
- },
45
- annotations: {},
46
- };
47
-
48
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
49
- const { jq_filter, ...body } = args as any;
50
- try {
51
- return asTextContentResult(await maybeFilter(jq_filter, await client.v1.creditGrants.void(body)));
52
- } catch (error) {
53
- if (error instanceof Metronome.APIError || isJqError(error)) {
54
- return asErrorResult(error.message);
55
- }
56
- throw error;
57
- }
58
- };
59
-
60
- export default { metadata, tool, handler };
@@ -1,65 +0,0 @@
1
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- import { Metadata, asTextContentResult } from '@metronome/mcp/tools/types';
4
-
5
- import { Tool } from '@modelcontextprotocol/sdk/types.js';
6
- import Metronome from '@metronome/sdk';
7
-
8
- export const metadata: Metadata = {
9
- resource: 'v1.custom_fields',
10
- operation: 'write',
11
- tags: [],
12
- httpMethod: 'post',
13
- httpPath: '/v1/customFields/addKey',
14
- operationId: 'addCustomFieldKey-v1',
15
- };
16
-
17
- export const tool: Tool = {
18
- name: 'add_key_v1_custom_fields',
19
- description:
20
- 'Creates a new custom field key for a given entity (e.g. billable metric, contract, alert).\n\nCustom fields are properties that you can add to Metronome objects to store metadata like foreign keys or other descriptors. This metadata can get transferred to or accessed by other systems to contextualize Metronome data and power business processes. For example, to service workflows like revenue recognition, reconciliation, and invoicing, custom fields help Metronome know the relationship between entities in the platform and third-party systems.\n\n### Use this endpoint to:\n- Create a new custom field key for Customer objects in Metronome. You can then use the Set Custom Field Values endpoint to set the value of this key for a specific customer. \n- Specify whether the key should enforce uniqueness. If the key is set to enforce uniqueness and you attempt to set a custom field value for the key that already exists, it will fail. \n\n### Usage guidelines:\n- Custom fields set on commits, credits, and contracts can be used to scope alert evaluation. For example, you can create a spend threshold alert that only considers spend associated with contracts with custom field key `contract_type` and value `paygo`\n- Custom fields set on products can be used in the Stripe integration to set metadata on invoices.\n- Custom fields for customers, contracts, invoices, products, commits, scheduled charges, and subscriptions are passed down to the invoice.\n',
21
- inputSchema: {
22
- type: 'object',
23
- properties: {
24
- enforce_uniqueness: {
25
- type: 'boolean',
26
- },
27
- entity: {
28
- type: 'string',
29
- enum: [
30
- 'alert',
31
- 'billable_metric',
32
- 'charge',
33
- 'commit',
34
- 'contract_credit',
35
- 'contract_product',
36
- 'contract',
37
- 'credit_grant',
38
- 'customer_plan',
39
- 'customer',
40
- 'discount',
41
- 'invoice',
42
- 'plan',
43
- 'professional_service',
44
- 'product',
45
- 'rate_card',
46
- 'scheduled_charge',
47
- 'subscription',
48
- ],
49
- },
50
- key: {
51
- type: 'string',
52
- },
53
- },
54
- required: ['enforce_uniqueness', 'entity', 'key'],
55
- },
56
- annotations: {},
57
- };
58
-
59
- export const handler = async (client: Metronome, args: Record<string, unknown> | undefined) => {
60
- const body = args as any;
61
- const response = await client.v1.customFields.addKey(body).asResponse();
62
- return asTextContentResult(await response.text());
63
- };
64
-
65
- export default { metadata, tool, handler };