@rainapi/rain-sdk 0.1.0-alpha.3

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 (678) hide show
  1. package/CHANGELOG.md +71 -0
  2. package/LICENSE +201 -0
  3. package/README.md +412 -0
  4. package/api-promise.d.mts +2 -0
  5. package/api-promise.d.mts.map +1 -0
  6. package/api-promise.d.ts +2 -0
  7. package/api-promise.d.ts.map +1 -0
  8. package/api-promise.js +6 -0
  9. package/api-promise.js.map +1 -0
  10. package/api-promise.mjs +2 -0
  11. package/api-promise.mjs.map +1 -0
  12. package/client.d.mts +222 -0
  13. package/client.d.mts.map +1 -0
  14. package/client.d.ts +222 -0
  15. package/client.d.ts.map +1 -0
  16. package/client.js +501 -0
  17. package/client.js.map +1 -0
  18. package/client.mjs +497 -0
  19. package/client.mjs.map +1 -0
  20. package/core/api-promise.d.mts +46 -0
  21. package/core/api-promise.d.mts.map +1 -0
  22. package/core/api-promise.d.ts +46 -0
  23. package/core/api-promise.d.ts.map +1 -0
  24. package/core/api-promise.js +74 -0
  25. package/core/api-promise.js.map +1 -0
  26. package/core/api-promise.mjs +70 -0
  27. package/core/api-promise.mjs.map +1 -0
  28. package/core/error.d.mts +46 -0
  29. package/core/error.d.mts.map +1 -0
  30. package/core/error.d.ts +46 -0
  31. package/core/error.d.ts.map +1 -0
  32. package/core/error.js +113 -0
  33. package/core/error.js.map +1 -0
  34. package/core/error.mjs +97 -0
  35. package/core/error.mjs.map +1 -0
  36. package/core/resource.d.mts +6 -0
  37. package/core/resource.d.mts.map +1 -0
  38. package/core/resource.d.ts +6 -0
  39. package/core/resource.d.ts.map +1 -0
  40. package/core/resource.js +11 -0
  41. package/core/resource.js.map +1 -0
  42. package/core/resource.mjs +7 -0
  43. package/core/resource.mjs.map +1 -0
  44. package/core/uploads.d.mts +3 -0
  45. package/core/uploads.d.mts.map +1 -0
  46. package/core/uploads.d.ts +3 -0
  47. package/core/uploads.d.ts.map +1 -0
  48. package/core/uploads.js +6 -0
  49. package/core/uploads.js.map +1 -0
  50. package/core/uploads.mjs +2 -0
  51. package/core/uploads.mjs.map +1 -0
  52. package/error.d.mts +2 -0
  53. package/error.d.mts.map +1 -0
  54. package/error.d.ts +2 -0
  55. package/error.d.ts.map +1 -0
  56. package/error.js +6 -0
  57. package/error.js.map +1 -0
  58. package/error.mjs +2 -0
  59. package/error.mjs.map +1 -0
  60. package/index.d.mts +6 -0
  61. package/index.d.mts.map +1 -0
  62. package/index.d.ts +6 -0
  63. package/index.d.ts.map +1 -0
  64. package/index.js +30 -0
  65. package/index.js.map +1 -0
  66. package/index.mjs +7 -0
  67. package/index.mjs.map +1 -0
  68. package/internal/builtin-types.d.mts +73 -0
  69. package/internal/builtin-types.d.mts.map +1 -0
  70. package/internal/builtin-types.d.ts +73 -0
  71. package/internal/builtin-types.d.ts.map +1 -0
  72. package/internal/builtin-types.js +4 -0
  73. package/internal/builtin-types.js.map +1 -0
  74. package/internal/builtin-types.mjs +3 -0
  75. package/internal/builtin-types.mjs.map +1 -0
  76. package/internal/detect-platform.d.mts +15 -0
  77. package/internal/detect-platform.d.mts.map +1 -0
  78. package/internal/detect-platform.d.ts +15 -0
  79. package/internal/detect-platform.d.ts.map +1 -0
  80. package/internal/detect-platform.js +162 -0
  81. package/internal/detect-platform.js.map +1 -0
  82. package/internal/detect-platform.mjs +157 -0
  83. package/internal/detect-platform.mjs.map +1 -0
  84. package/internal/errors.d.mts +3 -0
  85. package/internal/errors.d.mts.map +1 -0
  86. package/internal/errors.d.ts +3 -0
  87. package/internal/errors.d.ts.map +1 -0
  88. package/internal/errors.js +41 -0
  89. package/internal/errors.js.map +1 -0
  90. package/internal/errors.mjs +36 -0
  91. package/internal/errors.mjs.map +1 -0
  92. package/internal/headers.d.mts +20 -0
  93. package/internal/headers.d.mts.map +1 -0
  94. package/internal/headers.d.ts +20 -0
  95. package/internal/headers.d.ts.map +1 -0
  96. package/internal/headers.js +79 -0
  97. package/internal/headers.js.map +1 -0
  98. package/internal/headers.mjs +74 -0
  99. package/internal/headers.mjs.map +1 -0
  100. package/internal/parse.d.mts +12 -0
  101. package/internal/parse.d.mts.map +1 -0
  102. package/internal/parse.d.ts +12 -0
  103. package/internal/parse.d.ts.map +1 -0
  104. package/internal/parse.js +40 -0
  105. package/internal/parse.js.map +1 -0
  106. package/internal/parse.mjs +37 -0
  107. package/internal/parse.mjs.map +1 -0
  108. package/internal/qs/formats.d.mts +7 -0
  109. package/internal/qs/formats.d.mts.map +1 -0
  110. package/internal/qs/formats.d.ts +7 -0
  111. package/internal/qs/formats.d.ts.map +1 -0
  112. package/internal/qs/formats.js +13 -0
  113. package/internal/qs/formats.js.map +1 -0
  114. package/internal/qs/formats.mjs +9 -0
  115. package/internal/qs/formats.mjs.map +1 -0
  116. package/internal/qs/index.d.mts +10 -0
  117. package/internal/qs/index.d.mts.map +1 -0
  118. package/internal/qs/index.d.ts +10 -0
  119. package/internal/qs/index.d.ts.map +1 -0
  120. package/internal/qs/index.js +14 -0
  121. package/internal/qs/index.js.map +1 -0
  122. package/internal/qs/index.mjs +10 -0
  123. package/internal/qs/index.mjs.map +1 -0
  124. package/internal/qs/stringify.d.mts +3 -0
  125. package/internal/qs/stringify.d.mts.map +1 -0
  126. package/internal/qs/stringify.d.ts +3 -0
  127. package/internal/qs/stringify.d.ts.map +1 -0
  128. package/internal/qs/stringify.js +277 -0
  129. package/internal/qs/stringify.js.map +1 -0
  130. package/internal/qs/stringify.mjs +274 -0
  131. package/internal/qs/stringify.mjs.map +1 -0
  132. package/internal/qs/types.d.mts +57 -0
  133. package/internal/qs/types.d.mts.map +1 -0
  134. package/internal/qs/types.d.ts +57 -0
  135. package/internal/qs/types.d.ts.map +1 -0
  136. package/internal/qs/types.js +3 -0
  137. package/internal/qs/types.js.map +1 -0
  138. package/internal/qs/types.mjs +2 -0
  139. package/internal/qs/types.mjs.map +1 -0
  140. package/internal/qs/utils.d.mts +15 -0
  141. package/internal/qs/utils.d.mts.map +1 -0
  142. package/internal/qs/utils.d.ts +15 -0
  143. package/internal/qs/utils.d.ts.map +1 -0
  144. package/internal/qs/utils.js +230 -0
  145. package/internal/qs/utils.js.map +1 -0
  146. package/internal/qs/utils.mjs +217 -0
  147. package/internal/qs/utils.mjs.map +1 -0
  148. package/internal/request-options.d.mts +75 -0
  149. package/internal/request-options.d.mts.map +1 -0
  150. package/internal/request-options.d.ts +75 -0
  151. package/internal/request-options.d.ts.map +1 -0
  152. package/internal/request-options.js +14 -0
  153. package/internal/request-options.js.map +1 -0
  154. package/internal/request-options.mjs +10 -0
  155. package/internal/request-options.mjs.map +1 -0
  156. package/internal/shim-types.d.mts +17 -0
  157. package/internal/shim-types.d.mts.map +1 -0
  158. package/internal/shim-types.d.ts +17 -0
  159. package/internal/shim-types.d.ts.map +1 -0
  160. package/internal/shim-types.js +4 -0
  161. package/internal/shim-types.js.map +1 -0
  162. package/internal/shim-types.mjs +3 -0
  163. package/internal/shim-types.mjs.map +1 -0
  164. package/internal/shims.d.mts +20 -0
  165. package/internal/shims.d.mts.map +1 -0
  166. package/internal/shims.d.ts +20 -0
  167. package/internal/shims.d.ts.map +1 -0
  168. package/internal/shims.js +92 -0
  169. package/internal/shims.js.map +1 -0
  170. package/internal/shims.mjs +85 -0
  171. package/internal/shims.mjs.map +1 -0
  172. package/internal/to-file.d.mts +45 -0
  173. package/internal/to-file.d.mts.map +1 -0
  174. package/internal/to-file.d.ts +45 -0
  175. package/internal/to-file.d.ts.map +1 -0
  176. package/internal/to-file.js +91 -0
  177. package/internal/to-file.js.map +1 -0
  178. package/internal/to-file.mjs +88 -0
  179. package/internal/to-file.mjs.map +1 -0
  180. package/internal/tslib.js +81 -0
  181. package/internal/tslib.mjs +17 -0
  182. package/internal/types.d.mts +69 -0
  183. package/internal/types.d.mts.map +1 -0
  184. package/internal/types.d.ts +69 -0
  185. package/internal/types.d.ts.map +1 -0
  186. package/internal/types.js +4 -0
  187. package/internal/types.js.map +1 -0
  188. package/internal/types.mjs +3 -0
  189. package/internal/types.mjs.map +1 -0
  190. package/internal/uploads.d.mts +42 -0
  191. package/internal/uploads.d.mts.map +1 -0
  192. package/internal/uploads.d.ts +42 -0
  193. package/internal/uploads.d.ts.map +1 -0
  194. package/internal/uploads.js +141 -0
  195. package/internal/uploads.js.map +1 -0
  196. package/internal/uploads.mjs +131 -0
  197. package/internal/uploads.mjs.map +1 -0
  198. package/internal/utils/base64.d.mts +3 -0
  199. package/internal/utils/base64.d.mts.map +1 -0
  200. package/internal/utils/base64.d.ts +3 -0
  201. package/internal/utils/base64.d.ts.map +1 -0
  202. package/internal/utils/base64.js +38 -0
  203. package/internal/utils/base64.js.map +1 -0
  204. package/internal/utils/base64.mjs +33 -0
  205. package/internal/utils/base64.mjs.map +1 -0
  206. package/internal/utils/bytes.d.mts +4 -0
  207. package/internal/utils/bytes.d.mts.map +1 -0
  208. package/internal/utils/bytes.d.ts +4 -0
  209. package/internal/utils/bytes.d.ts.map +1 -0
  210. package/internal/utils/bytes.js +31 -0
  211. package/internal/utils/bytes.js.map +1 -0
  212. package/internal/utils/bytes.mjs +26 -0
  213. package/internal/utils/bytes.mjs.map +1 -0
  214. package/internal/utils/env.d.mts +9 -0
  215. package/internal/utils/env.d.mts.map +1 -0
  216. package/internal/utils/env.d.ts +9 -0
  217. package/internal/utils/env.d.ts.map +1 -0
  218. package/internal/utils/env.js +22 -0
  219. package/internal/utils/env.js.map +1 -0
  220. package/internal/utils/env.mjs +18 -0
  221. package/internal/utils/env.mjs.map +1 -0
  222. package/internal/utils/log.d.mts +37 -0
  223. package/internal/utils/log.d.mts.map +1 -0
  224. package/internal/utils/log.d.ts +37 -0
  225. package/internal/utils/log.d.ts.map +1 -0
  226. package/internal/utils/log.js +86 -0
  227. package/internal/utils/log.js.map +1 -0
  228. package/internal/utils/log.mjs +80 -0
  229. package/internal/utils/log.mjs.map +1 -0
  230. package/internal/utils/path.d.mts +15 -0
  231. package/internal/utils/path.d.mts.map +1 -0
  232. package/internal/utils/path.d.ts +15 -0
  233. package/internal/utils/path.d.ts.map +1 -0
  234. package/internal/utils/path.js +79 -0
  235. package/internal/utils/path.js.map +1 -0
  236. package/internal/utils/path.mjs +74 -0
  237. package/internal/utils/path.mjs.map +1 -0
  238. package/internal/utils/sleep.d.mts +2 -0
  239. package/internal/utils/sleep.d.mts.map +1 -0
  240. package/internal/utils/sleep.d.ts +2 -0
  241. package/internal/utils/sleep.d.ts.map +1 -0
  242. package/internal/utils/sleep.js +7 -0
  243. package/internal/utils/sleep.js.map +1 -0
  244. package/internal/utils/sleep.mjs +3 -0
  245. package/internal/utils/sleep.mjs.map +1 -0
  246. package/internal/utils/uuid.d.mts +5 -0
  247. package/internal/utils/uuid.d.mts.map +1 -0
  248. package/internal/utils/uuid.d.ts +5 -0
  249. package/internal/utils/uuid.d.ts.map +1 -0
  250. package/internal/utils/uuid.js +19 -0
  251. package/internal/utils/uuid.js.map +1 -0
  252. package/internal/utils/uuid.mjs +15 -0
  253. package/internal/utils/uuid.mjs.map +1 -0
  254. package/internal/utils/values.d.mts +18 -0
  255. package/internal/utils/values.d.mts.map +1 -0
  256. package/internal/utils/values.d.ts +18 -0
  257. package/internal/utils/values.d.ts.map +1 -0
  258. package/internal/utils/values.js +112 -0
  259. package/internal/utils/values.js.map +1 -0
  260. package/internal/utils/values.mjs +94 -0
  261. package/internal/utils/values.mjs.map +1 -0
  262. package/internal/utils.d.mts +7 -0
  263. package/internal/utils.d.mts.map +1 -0
  264. package/internal/utils.d.ts +7 -0
  265. package/internal/utils.d.ts.map +1 -0
  266. package/internal/utils.js +11 -0
  267. package/internal/utils.js.map +1 -0
  268. package/internal/utils.mjs +8 -0
  269. package/internal/utils.mjs.map +1 -0
  270. package/package.json +138 -0
  271. package/resource.d.mts +2 -0
  272. package/resource.d.mts.map +1 -0
  273. package/resource.d.ts +2 -0
  274. package/resource.d.ts.map +1 -0
  275. package/resource.js +6 -0
  276. package/resource.js.map +1 -0
  277. package/resource.mjs +2 -0
  278. package/resource.mjs.map +1 -0
  279. package/resources/applications/applications.d.mts +14 -0
  280. package/resources/applications/applications.d.mts.map +1 -0
  281. package/resources/applications/applications.d.ts +14 -0
  282. package/resources/applications/applications.d.ts.map +1 -0
  283. package/resources/applications/applications.js +21 -0
  284. package/resources/applications/applications.js.map +1 -0
  285. package/resources/applications/applications.mjs +16 -0
  286. package/resources/applications/applications.mjs.map +1 -0
  287. package/resources/applications/company/company.d.mts +584 -0
  288. package/resources/applications/company/company.d.mts.map +1 -0
  289. package/resources/applications/company/company.d.ts +584 -0
  290. package/resources/applications/company/company.d.ts.map +1 -0
  291. package/resources/applications/company/company.js +138 -0
  292. package/resources/applications/company/company.js.map +1 -0
  293. package/resources/applications/company/company.mjs +133 -0
  294. package/resources/applications/company/company.mjs.map +1 -0
  295. package/resources/applications/company/index.d.mts +3 -0
  296. package/resources/applications/company/index.d.mts.map +1 -0
  297. package/resources/applications/company/index.d.ts +3 -0
  298. package/resources/applications/company/index.d.ts.map +1 -0
  299. package/resources/applications/company/index.js +9 -0
  300. package/resources/applications/company/index.js.map +1 -0
  301. package/resources/applications/company/index.mjs +4 -0
  302. package/resources/applications/company/index.mjs.map +1 -0
  303. package/resources/applications/company/ubo/document.d.mts +50 -0
  304. package/resources/applications/company/ubo/document.d.mts.map +1 -0
  305. package/resources/applications/company/ubo/document.d.ts +50 -0
  306. package/resources/applications/company/ubo/document.d.ts.map +1 -0
  307. package/resources/applications/company/ubo/document.js +32 -0
  308. package/resources/applications/company/ubo/document.js.map +1 -0
  309. package/resources/applications/company/ubo/document.mjs +28 -0
  310. package/resources/applications/company/ubo/document.mjs.map +1 -0
  311. package/resources/applications/company/ubo/index.d.mts +3 -0
  312. package/resources/applications/company/ubo/index.d.mts.map +1 -0
  313. package/resources/applications/company/ubo/index.d.ts +3 -0
  314. package/resources/applications/company/ubo/index.d.ts.map +1 -0
  315. package/resources/applications/company/ubo/index.js +9 -0
  316. package/resources/applications/company/ubo/index.js.map +1 -0
  317. package/resources/applications/company/ubo/index.mjs +4 -0
  318. package/resources/applications/company/ubo/index.mjs.map +1 -0
  319. package/resources/applications/company/ubo/ubo.d.mts +96 -0
  320. package/resources/applications/company/ubo/ubo.d.mts.map +1 -0
  321. package/resources/applications/company/ubo/ubo.d.ts +96 -0
  322. package/resources/applications/company/ubo/ubo.d.ts.map +1 -0
  323. package/resources/applications/company/ubo/ubo.js +48 -0
  324. package/resources/applications/company/ubo/ubo.js.map +1 -0
  325. package/resources/applications/company/ubo/ubo.mjs +43 -0
  326. package/resources/applications/company/ubo/ubo.mjs.map +1 -0
  327. package/resources/applications/company/ubo.d.mts +2 -0
  328. package/resources/applications/company/ubo.d.mts.map +1 -0
  329. package/resources/applications/company/ubo.d.ts +2 -0
  330. package/resources/applications/company/ubo.d.ts.map +1 -0
  331. package/resources/applications/company/ubo.js +6 -0
  332. package/resources/applications/company/ubo.js.map +1 -0
  333. package/resources/applications/company/ubo.mjs +3 -0
  334. package/resources/applications/company/ubo.mjs.map +1 -0
  335. package/resources/applications/company.d.mts +2 -0
  336. package/resources/applications/company.d.mts.map +1 -0
  337. package/resources/applications/company.d.ts +2 -0
  338. package/resources/applications/company.d.ts.map +1 -0
  339. package/resources/applications/company.js +6 -0
  340. package/resources/applications/company.js.map +1 -0
  341. package/resources/applications/company.mjs +3 -0
  342. package/resources/applications/company.mjs.map +1 -0
  343. package/resources/applications/index.d.mts +4 -0
  344. package/resources/applications/index.d.mts.map +1 -0
  345. package/resources/applications/index.d.ts +4 -0
  346. package/resources/applications/index.d.ts.map +1 -0
  347. package/resources/applications/index.js +11 -0
  348. package/resources/applications/index.js.map +1 -0
  349. package/resources/applications/index.mjs +5 -0
  350. package/resources/applications/index.mjs.map +1 -0
  351. package/resources/applications/user.d.mts +507 -0
  352. package/resources/applications/user.d.mts.map +1 -0
  353. package/resources/applications/user.d.ts +507 -0
  354. package/resources/applications/user.d.ts.map +1 -0
  355. package/resources/applications/user.js +103 -0
  356. package/resources/applications/user.js.map +1 -0
  357. package/resources/applications/user.mjs +99 -0
  358. package/resources/applications/user.mjs.map +1 -0
  359. package/resources/applications.d.mts +2 -0
  360. package/resources/applications.d.mts.map +1 -0
  361. package/resources/applications.d.ts +2 -0
  362. package/resources/applications.d.ts.map +1 -0
  363. package/resources/applications.js +6 -0
  364. package/resources/applications.js.map +1 -0
  365. package/resources/applications.mjs +3 -0
  366. package/resources/applications.mjs.map +1 -0
  367. package/resources/balances.d.mts +37 -0
  368. package/resources/balances.d.mts.map +1 -0
  369. package/resources/balances.d.ts +37 -0
  370. package/resources/balances.d.ts.map +1 -0
  371. package/resources/balances.js +17 -0
  372. package/resources/balances.js.map +1 -0
  373. package/resources/balances.mjs +13 -0
  374. package/resources/balances.mjs.map +1 -0
  375. package/resources/cards/cards.d.mts +188 -0
  376. package/resources/cards/cards.d.mts.map +1 -0
  377. package/resources/cards/cards.d.ts +188 -0
  378. package/resources/cards/cards.d.ts.map +1 -0
  379. package/resources/cards/cards.js +50 -0
  380. package/resources/cards/cards.js.map +1 -0
  381. package/resources/cards/cards.mjs +45 -0
  382. package/resources/cards/cards.mjs.map +1 -0
  383. package/resources/cards/index.d.mts +3 -0
  384. package/resources/cards/index.d.mts.map +1 -0
  385. package/resources/cards/index.d.ts +3 -0
  386. package/resources/cards/index.d.ts.map +1 -0
  387. package/resources/cards/index.js +9 -0
  388. package/resources/cards/index.js.map +1 -0
  389. package/resources/cards/index.mjs +4 -0
  390. package/resources/cards/index.mjs.map +1 -0
  391. package/resources/cards/pin.d.mts +73 -0
  392. package/resources/cards/pin.d.mts.map +1 -0
  393. package/resources/cards/pin.d.ts +73 -0
  394. package/resources/cards/pin.d.ts.map +1 -0
  395. package/resources/cards/pin.js +32 -0
  396. package/resources/cards/pin.js.map +1 -0
  397. package/resources/cards/pin.mjs +28 -0
  398. package/resources/cards/pin.mjs.map +1 -0
  399. package/resources/cards.d.mts +2 -0
  400. package/resources/cards.d.mts.map +1 -0
  401. package/resources/cards.d.ts +2 -0
  402. package/resources/cards.d.ts.map +1 -0
  403. package/resources/cards.js +6 -0
  404. package/resources/cards.js.map +1 -0
  405. package/resources/cards.mjs +3 -0
  406. package/resources/cards.mjs.map +1 -0
  407. package/resources/companies/companies.d.mts +252 -0
  408. package/resources/companies/companies.d.mts.map +1 -0
  409. package/resources/companies/companies.d.ts +252 -0
  410. package/resources/companies/companies.d.ts.map +1 -0
  411. package/resources/companies/companies.js +69 -0
  412. package/resources/companies/companies.js.map +1 -0
  413. package/resources/companies/companies.mjs +64 -0
  414. package/resources/companies/companies.mjs.map +1 -0
  415. package/resources/companies/index.d.mts +3 -0
  416. package/resources/companies/index.d.mts.map +1 -0
  417. package/resources/companies/index.d.ts +3 -0
  418. package/resources/companies/index.d.ts.map +1 -0
  419. package/resources/companies/index.js +9 -0
  420. package/resources/companies/index.js.map +1 -0
  421. package/resources/companies/index.mjs +4 -0
  422. package/resources/companies/index.mjs.map +1 -0
  423. package/resources/companies/signatures.d.mts +122 -0
  424. package/resources/companies/signatures.d.mts.map +1 -0
  425. package/resources/companies/signatures.d.ts +122 -0
  426. package/resources/companies/signatures.d.ts.map +1 -0
  427. package/resources/companies/signatures.js +24 -0
  428. package/resources/companies/signatures.js.map +1 -0
  429. package/resources/companies/signatures.mjs +20 -0
  430. package/resources/companies/signatures.mjs.map +1 -0
  431. package/resources/companies.d.mts +2 -0
  432. package/resources/companies.d.mts.map +1 -0
  433. package/resources/companies.d.ts +2 -0
  434. package/resources/companies.d.ts.map +1 -0
  435. package/resources/companies.js +6 -0
  436. package/resources/companies.js.map +1 -0
  437. package/resources/companies.mjs +3 -0
  438. package/resources/companies.mjs.map +1 -0
  439. package/resources/contracts.d.mts +15 -0
  440. package/resources/contracts.d.mts.map +1 -0
  441. package/resources/contracts.d.ts +15 -0
  442. package/resources/contracts.d.ts.map +1 -0
  443. package/resources/contracts.js +15 -0
  444. package/resources/contracts.js.map +1 -0
  445. package/resources/contracts.mjs +11 -0
  446. package/resources/contracts.mjs.map +1 -0
  447. package/resources/disputes/disputes.d.mts +88 -0
  448. package/resources/disputes/disputes.d.mts.map +1 -0
  449. package/resources/disputes/disputes.d.ts +88 -0
  450. package/resources/disputes/disputes.d.ts.map +1 -0
  451. package/resources/disputes/disputes.js +42 -0
  452. package/resources/disputes/disputes.js.map +1 -0
  453. package/resources/disputes/disputes.mjs +37 -0
  454. package/resources/disputes/disputes.mjs.map +1 -0
  455. package/resources/disputes/evidence.d.mts +32 -0
  456. package/resources/disputes/evidence.d.mts.map +1 -0
  457. package/resources/disputes/evidence.d.ts +32 -0
  458. package/resources/disputes/evidence.d.ts.map +1 -0
  459. package/resources/disputes/evidence.js +28 -0
  460. package/resources/disputes/evidence.js.map +1 -0
  461. package/resources/disputes/evidence.mjs +24 -0
  462. package/resources/disputes/evidence.mjs.map +1 -0
  463. package/resources/disputes/index.d.mts +3 -0
  464. package/resources/disputes/index.d.mts.map +1 -0
  465. package/resources/disputes/index.d.ts +3 -0
  466. package/resources/disputes/index.d.ts.map +1 -0
  467. package/resources/disputes/index.js +9 -0
  468. package/resources/disputes/index.js.map +1 -0
  469. package/resources/disputes/index.mjs +4 -0
  470. package/resources/disputes/index.mjs.map +1 -0
  471. package/resources/disputes.d.mts +2 -0
  472. package/resources/disputes.d.mts.map +1 -0
  473. package/resources/disputes.d.ts +2 -0
  474. package/resources/disputes.d.ts.map +1 -0
  475. package/resources/disputes.js +6 -0
  476. package/resources/disputes.js.map +1 -0
  477. package/resources/disputes.mjs +3 -0
  478. package/resources/disputes.mjs.map +1 -0
  479. package/resources/index.d.mts +12 -0
  480. package/resources/index.d.mts.map +1 -0
  481. package/resources/index.d.ts +12 -0
  482. package/resources/index.d.ts.map +1 -0
  483. package/resources/index.js +27 -0
  484. package/resources/index.js.map +1 -0
  485. package/resources/index.mjs +13 -0
  486. package/resources/index.mjs.map +1 -0
  487. package/resources/keys.d.mts +51 -0
  488. package/resources/keys.d.mts.map +1 -0
  489. package/resources/keys.d.ts +51 -0
  490. package/resources/keys.d.ts.map +1 -0
  491. package/resources/keys.js +28 -0
  492. package/resources/keys.js.map +1 -0
  493. package/resources/keys.mjs +24 -0
  494. package/resources/keys.mjs.map +1 -0
  495. package/resources/payments.d.mts +35 -0
  496. package/resources/payments.d.mts.map +1 -0
  497. package/resources/payments.d.ts +35 -0
  498. package/resources/payments.d.ts.map +1 -0
  499. package/resources/payments.js +17 -0
  500. package/resources/payments.js.map +1 -0
  501. package/resources/payments.mjs +13 -0
  502. package/resources/payments.mjs.map +1 -0
  503. package/resources/signatures.d.mts +65 -0
  504. package/resources/signatures.d.mts.map +1 -0
  505. package/resources/signatures.d.ts +65 -0
  506. package/resources/signatures.d.ts.map +1 -0
  507. package/resources/signatures.js +23 -0
  508. package/resources/signatures.js.map +1 -0
  509. package/resources/signatures.mjs +19 -0
  510. package/resources/signatures.mjs.map +1 -0
  511. package/resources/transactions/index.d.mts +3 -0
  512. package/resources/transactions/index.d.mts.map +1 -0
  513. package/resources/transactions/index.d.ts +3 -0
  514. package/resources/transactions/index.d.ts.map +1 -0
  515. package/resources/transactions/index.js +9 -0
  516. package/resources/transactions/index.js.map +1 -0
  517. package/resources/transactions/index.mjs +4 -0
  518. package/resources/transactions/index.mjs.map +1 -0
  519. package/resources/transactions/receipt.d.mts +26 -0
  520. package/resources/transactions/receipt.d.mts.map +1 -0
  521. package/resources/transactions/receipt.d.ts +26 -0
  522. package/resources/transactions/receipt.d.ts.map +1 -0
  523. package/resources/transactions/receipt.js +30 -0
  524. package/resources/transactions/receipt.js.map +1 -0
  525. package/resources/transactions/receipt.mjs +26 -0
  526. package/resources/transactions/receipt.mjs.map +1 -0
  527. package/resources/transactions/transactions.d.mts +401 -0
  528. package/resources/transactions/transactions.d.mts.map +1 -0
  529. package/resources/transactions/transactions.d.ts +401 -0
  530. package/resources/transactions/transactions.d.ts.map +1 -0
  531. package/resources/transactions/transactions.js +52 -0
  532. package/resources/transactions/transactions.js.map +1 -0
  533. package/resources/transactions/transactions.mjs +47 -0
  534. package/resources/transactions/transactions.mjs.map +1 -0
  535. package/resources/transactions.d.mts +2 -0
  536. package/resources/transactions.d.mts.map +1 -0
  537. package/resources/transactions.d.ts +2 -0
  538. package/resources/transactions.d.ts.map +1 -0
  539. package/resources/transactions.js +6 -0
  540. package/resources/transactions.js.map +1 -0
  541. package/resources/transactions.mjs +3 -0
  542. package/resources/transactions.mjs.map +1 -0
  543. package/resources/users/index.d.mts +3 -0
  544. package/resources/users/index.d.mts.map +1 -0
  545. package/resources/users/index.d.ts +3 -0
  546. package/resources/users/index.d.ts.map +1 -0
  547. package/resources/users/index.js +9 -0
  548. package/resources/users/index.js.map +1 -0
  549. package/resources/users/index.mjs +4 -0
  550. package/resources/users/index.mjs.map +1 -0
  551. package/resources/users/signatures.d.mts +92 -0
  552. package/resources/users/signatures.d.mts.map +1 -0
  553. package/resources/users/signatures.d.ts +92 -0
  554. package/resources/users/signatures.d.ts.map +1 -0
  555. package/resources/users/signatures.js +51 -0
  556. package/resources/users/signatures.js.map +1 -0
  557. package/resources/users/signatures.mjs +47 -0
  558. package/resources/users/signatures.mjs.map +1 -0
  559. package/resources/users/users.d.mts +349 -0
  560. package/resources/users/users.d.mts.map +1 -0
  561. package/resources/users/users.d.ts +349 -0
  562. package/resources/users/users.d.ts.map +1 -0
  563. package/resources/users/users.js +174 -0
  564. package/resources/users/users.js.map +1 -0
  565. package/resources/users/users.mjs +169 -0
  566. package/resources/users/users.mjs.map +1 -0
  567. package/resources/users.d.mts +2 -0
  568. package/resources/users.d.mts.map +1 -0
  569. package/resources/users.d.ts +2 -0
  570. package/resources/users.d.ts.map +1 -0
  571. package/resources/users.js +6 -0
  572. package/resources/users.js.map +1 -0
  573. package/resources/users.mjs +3 -0
  574. package/resources/users.mjs.map +1 -0
  575. package/resources.d.mts +2 -0
  576. package/resources.d.mts.map +1 -0
  577. package/resources.d.ts +2 -0
  578. package/resources.d.ts.map +1 -0
  579. package/resources.js +5 -0
  580. package/resources.js.map +1 -0
  581. package/resources.mjs +2 -0
  582. package/resources.mjs.map +1 -0
  583. package/src/api-promise.ts +2 -0
  584. package/src/client.ts +914 -0
  585. package/src/core/README.md +3 -0
  586. package/src/core/api-promise.ts +92 -0
  587. package/src/core/error.ts +130 -0
  588. package/src/core/resource.ts +11 -0
  589. package/src/core/uploads.ts +2 -0
  590. package/src/error.ts +2 -0
  591. package/src/index.ts +22 -0
  592. package/src/internal/README.md +3 -0
  593. package/src/internal/builtin-types.ts +93 -0
  594. package/src/internal/detect-platform.ts +196 -0
  595. package/src/internal/errors.ts +33 -0
  596. package/src/internal/headers.ts +97 -0
  597. package/src/internal/parse.ts +56 -0
  598. package/src/internal/qs/LICENSE.md +13 -0
  599. package/src/internal/qs/README.md +3 -0
  600. package/src/internal/qs/formats.ts +10 -0
  601. package/src/internal/qs/index.ts +13 -0
  602. package/src/internal/qs/stringify.ts +385 -0
  603. package/src/internal/qs/types.ts +71 -0
  604. package/src/internal/qs/utils.ts +265 -0
  605. package/src/internal/request-options.ts +91 -0
  606. package/src/internal/shim-types.ts +26 -0
  607. package/src/internal/shims.ts +107 -0
  608. package/src/internal/to-file.ts +154 -0
  609. package/src/internal/types.ts +95 -0
  610. package/src/internal/uploads.ts +187 -0
  611. package/src/internal/utils/base64.ts +40 -0
  612. package/src/internal/utils/bytes.ts +32 -0
  613. package/src/internal/utils/env.ts +18 -0
  614. package/src/internal/utils/log.ts +127 -0
  615. package/src/internal/utils/path.ts +88 -0
  616. package/src/internal/utils/sleep.ts +3 -0
  617. package/src/internal/utils/uuid.ts +17 -0
  618. package/src/internal/utils/values.ts +105 -0
  619. package/src/internal/utils.ts +8 -0
  620. package/src/lib/.keep +4 -0
  621. package/src/resource.ts +2 -0
  622. package/src/resources/applications/applications.ts +61 -0
  623. package/src/resources/applications/company/company.ts +750 -0
  624. package/src/resources/applications/company/index.ts +15 -0
  625. package/src/resources/applications/company/ubo/document.ts +89 -0
  626. package/src/resources/applications/company/ubo/index.ts +4 -0
  627. package/src/resources/applications/company/ubo/ubo.ts +158 -0
  628. package/src/resources/applications/company/ubo.ts +3 -0
  629. package/src/resources/applications/company.ts +3 -0
  630. package/src/resources/applications/index.ts +25 -0
  631. package/src/resources/applications/user.ts +666 -0
  632. package/src/resources/applications.ts +3 -0
  633. package/src/resources/balances.ts +47 -0
  634. package/src/resources/cards/cards.ts +274 -0
  635. package/src/resources/cards/index.ts +14 -0
  636. package/src/resources/cards/pin.ts +108 -0
  637. package/src/resources/cards.ts +3 -0
  638. package/src/resources/companies/companies.ts +371 -0
  639. package/src/resources/companies/index.ts +23 -0
  640. package/src/resources/companies/signatures.ts +162 -0
  641. package/src/resources/companies.ts +3 -0
  642. package/src/resources/contracts.ts +21 -0
  643. package/src/resources/disputes/disputes.ts +135 -0
  644. package/src/resources/disputes/evidence.ts +56 -0
  645. package/src/resources/disputes/index.ts +10 -0
  646. package/src/resources/disputes.ts +3 -0
  647. package/src/resources/index.ts +66 -0
  648. package/src/resources/keys.ts +70 -0
  649. package/src/resources/payments.ts +47 -0
  650. package/src/resources/signatures.ts +91 -0
  651. package/src/resources/transactions/index.ts +11 -0
  652. package/src/resources/transactions/receipt.ts +48 -0
  653. package/src/resources/transactions/transactions.ts +522 -0
  654. package/src/resources/transactions.ts +3 -0
  655. package/src/resources/users/index.ts +20 -0
  656. package/src/resources/users/signatures.ts +121 -0
  657. package/src/resources/users/users.ts +471 -0
  658. package/src/resources/users.ts +3 -0
  659. package/src/resources.ts +1 -0
  660. package/src/tsconfig.json +11 -0
  661. package/src/uploads.ts +2 -0
  662. package/src/version.ts +1 -0
  663. package/uploads.d.mts +2 -0
  664. package/uploads.d.mts.map +1 -0
  665. package/uploads.d.ts +2 -0
  666. package/uploads.d.ts.map +1 -0
  667. package/uploads.js +6 -0
  668. package/uploads.js.map +1 -0
  669. package/uploads.mjs +2 -0
  670. package/uploads.mjs.map +1 -0
  671. package/version.d.mts +2 -0
  672. package/version.d.mts.map +1 -0
  673. package/version.d.ts +2 -0
  674. package/version.d.ts.map +1 -0
  675. package/version.js +5 -0
  676. package/version.js.map +1 -0
  677. package/version.mjs +2 -0
  678. package/version.mjs.map +1 -0
@@ -0,0 +1,401 @@
1
+ import { APIResource } from "../../core/resource.js";
2
+ import * as DisputesAPI from "../disputes/disputes.js";
3
+ import * as ReceiptAPI from "./receipt.js";
4
+ import { Receipt, ReceiptUploadParams } from "./receipt.js";
5
+ import { APIPromise } from "../../core/api-promise.js";
6
+ import { RequestOptions } from "../../internal/request-options.js";
7
+ export declare class Transactions extends APIResource {
8
+ receipt: ReceiptAPI.Receipt;
9
+ /**
10
+ * This endpoint retrieves a transaction by its unique ID. The transaction
11
+ * information returned includes details such as the transaction type, amount, and
12
+ * status.
13
+ */
14
+ retrieve(transactionID: string, options?: RequestOptions): APIPromise<IssuingTransaction>;
15
+ /**
16
+ * This endpoint allows updating a specific transaction by its ID. You can modify
17
+ * the transaction's memo or other editable fields.
18
+ */
19
+ update(transactionID: string, body?: TransactionUpdateParams | null | undefined, options?: RequestOptions): APIPromise<void>;
20
+ /**
21
+ * This endpoint retrieves all transactions associated with corporate cards, users,
22
+ * or specific cards.
23
+ */
24
+ list(query?: TransactionListParams | null | undefined, options?: RequestOptions): APIPromise<TransactionListResponse>;
25
+ /**
26
+ * This endpoint allows the creation of a dispute for a specific transaction. The
27
+ * dispute can include textual evidence to support the claim.
28
+ */
29
+ createDispute(transactionID: string, body?: TransactionCreateDisputeParams | null | undefined, options?: RequestOptions): APIPromise<DisputesAPI.IssuingDispute>;
30
+ }
31
+ /**
32
+ * Represents a transaction of type 'spend'. This includes details such as the
33
+ * transaction amount, merchant, and the associated user.
34
+ */
35
+ export type IssuingTransaction = IssuingTransaction.SpendTransaction | IssuingTransaction.CollateralTransaction | IssuingTransaction.PaymentTransaction | IssuingTransaction.FeeTransaction;
36
+ export declare namespace IssuingTransaction {
37
+ /**
38
+ * Represents a transaction of type 'spend'. This includes details such as the
39
+ * transaction amount, merchant, and the associated user.
40
+ */
41
+ interface SpendTransaction {
42
+ /**
43
+ * The unique identifier of the transaction
44
+ */
45
+ id: string;
46
+ /**
47
+ * Details specific to a spend transaction, including merchant, amount, and user
48
+ * information.
49
+ */
50
+ spend: SpendTransaction.Spend;
51
+ /**
52
+ * The type of transaction
53
+ */
54
+ type: 'spend';
55
+ }
56
+ namespace SpendTransaction {
57
+ /**
58
+ * Details specific to a spend transaction, including merchant, amount, and user
59
+ * information.
60
+ */
61
+ interface Spend {
62
+ /**
63
+ * The amount of the transaction, in cents
64
+ */
65
+ amount: number;
66
+ /**
67
+ * The time at which the transaction was authorized
68
+ */
69
+ authorizedAt: string;
70
+ /**
71
+ * The unique identifier of the card used for the transaction
72
+ */
73
+ cardId: string;
74
+ /**
75
+ * The type of card used for the transaction
76
+ */
77
+ cardType: 'physical' | 'virtual';
78
+ /**
79
+ * The currency of the transaction
80
+ */
81
+ currency: string;
82
+ /**
83
+ * The category of the merchant (e.g., electronics, food)
84
+ */
85
+ merchantCategory: string;
86
+ /**
87
+ * The merchant's category code
88
+ */
89
+ merchantCategoryCode: string;
90
+ /**
91
+ * The name of the merchant where the transaction took place
92
+ */
93
+ merchantName: string;
94
+ /**
95
+ * Indicates whether a receipt was generated for the transaction
96
+ */
97
+ receipt: boolean;
98
+ /**
99
+ * The status of the transaction
100
+ */
101
+ status: 'pending' | 'reversed' | 'declined' | 'completed';
102
+ /**
103
+ * The email address of the user who made the transaction
104
+ */
105
+ userEmail: string;
106
+ /**
107
+ * The first name of the user who made the transaction
108
+ */
109
+ userFirstName: string;
110
+ /**
111
+ * The identifier of the user who made the transaction
112
+ */
113
+ userId: string;
114
+ /**
115
+ * The last name of the user who made the transaction
116
+ */
117
+ userLastName: string;
118
+ /**
119
+ * The method used for authorization of the transaction
120
+ */
121
+ authorizationMethod?: string;
122
+ /**
123
+ * The authorized amount of the transaction, in cents
124
+ */
125
+ authorizedAmount?: number;
126
+ /**
127
+ * The identifier of the company under which the transaction was made
128
+ */
129
+ companyId?: string;
130
+ /**
131
+ * The reason why the transaction was declined
132
+ */
133
+ declinedReason?: string;
134
+ /**
135
+ * An enriched category of the merchant, providing further details
136
+ */
137
+ enrichedMerchantCategory?: string;
138
+ /**
139
+ * The enriched icon of the merchant
140
+ */
141
+ enrichedMerchantIcon?: string;
142
+ /**
143
+ * An enriched name of the merchant, possibly with additional information
144
+ */
145
+ enrichedMerchantName?: string;
146
+ /**
147
+ * The amount of the transaction in local currency, in cents
148
+ */
149
+ localAmount?: number;
150
+ /**
151
+ * The local currency of the transaction
152
+ */
153
+ localCurrency?: string;
154
+ /**
155
+ * A memo or note associated with the transaction
156
+ */
157
+ memo?: string;
158
+ /**
159
+ * The time at which the transaction was posted
160
+ */
161
+ postedAt?: string;
162
+ }
163
+ }
164
+ /**
165
+ * Represents a collateral transaction, where a user provides collateral for a
166
+ * transaction.
167
+ */
168
+ interface CollateralTransaction {
169
+ /**
170
+ * The unique identifier of the transaction
171
+ */
172
+ id: string;
173
+ /**
174
+ * Details of the collateral transaction, including amount, currency, and
175
+ * transaction details.
176
+ */
177
+ collateral: CollateralTransaction.Collateral;
178
+ /**
179
+ * The type of transaction, in this case, a collateral transaction
180
+ */
181
+ type: 'collateral';
182
+ }
183
+ namespace CollateralTransaction {
184
+ /**
185
+ * Details of the collateral transaction, including amount, currency, and
186
+ * transaction details.
187
+ */
188
+ interface Collateral {
189
+ /**
190
+ * The amount of the collateral transaction, in cents
191
+ */
192
+ amount: number;
193
+ /**
194
+ * The chain ID (base-10 number) that the collateral transaction is on
195
+ */
196
+ chainId: number;
197
+ /**
198
+ * The currency of the collateral transaction
199
+ */
200
+ currency: string;
201
+ /**
202
+ * The hash of the collateral transaction
203
+ */
204
+ transactionHash: string;
205
+ /**
206
+ * The wallet address the collateral was added from
207
+ */
208
+ walletAddress: string;
209
+ /**
210
+ * The identifier of the company under which the collateral transaction was made
211
+ */
212
+ companyId?: string;
213
+ /**
214
+ * A memo or note associated with the collateral transaction
215
+ */
216
+ memo?: string;
217
+ /**
218
+ * The time at which the collateral transaction was posted
219
+ */
220
+ postedAt?: string;
221
+ /**
222
+ * The identifier of the user who provided the collateral
223
+ */
224
+ userId?: string;
225
+ }
226
+ }
227
+ /**
228
+ * Represents a payment transaction, where a payment is made for a particular
229
+ * service or product.
230
+ */
231
+ interface PaymentTransaction {
232
+ /**
233
+ * The unique identifier of the payment transaction
234
+ */
235
+ id: string;
236
+ /**
237
+ * Details of the payment transaction, including amount, currency, and status.
238
+ */
239
+ payment: PaymentTransaction.Payment;
240
+ /**
241
+ * The type of transaction
242
+ */
243
+ type: 'payment';
244
+ }
245
+ namespace PaymentTransaction {
246
+ /**
247
+ * Details of the payment transaction, including amount, currency, and status.
248
+ */
249
+ interface Payment {
250
+ /**
251
+ * The amount of the transaction, in cents
252
+ */
253
+ amount: number;
254
+ /**
255
+ * The currency of the transaction
256
+ */
257
+ currency: string;
258
+ /**
259
+ * The status of the transaction
260
+ */
261
+ status: 'pending' | 'completed';
262
+ /**
263
+ * The chain ID (base-10 number) that the payment transaction is on
264
+ */
265
+ chainId?: number;
266
+ /**
267
+ * The identifier of the company under which the payment transaction was made
268
+ */
269
+ companyId?: string;
270
+ /**
271
+ * The memo or note associated with the transaction
272
+ */
273
+ memo?: string;
274
+ /**
275
+ * The time at which the payment transaction was posted
276
+ */
277
+ postedAt?: string;
278
+ /**
279
+ * The hash of the payment transaction
280
+ */
281
+ transactionHash?: string;
282
+ /**
283
+ * The identifier of the user who made the payment
284
+ */
285
+ userId?: string;
286
+ /**
287
+ * The wallet address from which the payment was made
288
+ */
289
+ walletAddress?: string;
290
+ }
291
+ }
292
+ /**
293
+ * Represents a fee transaction, where a fee is charged for a service or product.
294
+ */
295
+ interface FeeTransaction {
296
+ /**
297
+ * The identifier of the fee transaction
298
+ */
299
+ id: string;
300
+ /**
301
+ * Details of the fee transaction, including amount, description, and status.
302
+ */
303
+ fee: FeeTransaction.Fee;
304
+ /**
305
+ * The type of transaction, in this case, a fee transaction
306
+ */
307
+ type: 'fee';
308
+ }
309
+ namespace FeeTransaction {
310
+ /**
311
+ * Details of the fee transaction, including amount, description, and status.
312
+ */
313
+ interface Fee {
314
+ /**
315
+ * The amount of the fee, in cents
316
+ */
317
+ amount: number;
318
+ /**
319
+ * The identifier of the company to which the fee was charged
320
+ */
321
+ companyId?: string;
322
+ /**
323
+ * The description of the fee
324
+ */
325
+ description?: string;
326
+ /**
327
+ * The time at which the fee was posted
328
+ */
329
+ postedAt?: string;
330
+ /**
331
+ * The identifier of the user to whom the fee was charged
332
+ */
333
+ userId?: string;
334
+ }
335
+ }
336
+ }
337
+ export type TransactionListResponse = Array<IssuingTransaction>;
338
+ export interface TransactionUpdateParams {
339
+ /**
340
+ * A memo or note to attach to the transaction, providing additional information or
341
+ * context
342
+ */
343
+ memo?: string;
344
+ }
345
+ export interface TransactionListParams {
346
+ /**
347
+ * Filter transactions authorized after a specific date
348
+ */
349
+ authorizedAfter?: string;
350
+ /**
351
+ * Filter transactions authorized before a specific date
352
+ */
353
+ authorizedBefore?: string;
354
+ /**
355
+ * The ID of the card to get transactions for
356
+ */
357
+ cardId?: string;
358
+ /**
359
+ * For corporate cards, the identifier of the company to get transactions for
360
+ */
361
+ companyId?: string;
362
+ /**
363
+ * The ID of the resource after which to start fetching
364
+ */
365
+ cursor?: string;
366
+ /**
367
+ * The number of resources to fetch
368
+ */
369
+ limit?: number;
370
+ /**
371
+ * Filter transactions posted after a specific date
372
+ */
373
+ postedAfter?: string;
374
+ /**
375
+ * Filter transactions posted before a specific date
376
+ */
377
+ postedBefore?: string;
378
+ /**
379
+ * The hash of the transaction to retrieve
380
+ */
381
+ transactionHash?: string;
382
+ /**
383
+ * The type of transactions to retrieve
384
+ */
385
+ type?: Array<'spend' | 'collateral' | 'payment' | 'fee'>;
386
+ /**
387
+ * The ID of the user to get transactions for
388
+ */
389
+ userId?: string;
390
+ }
391
+ export interface TransactionCreateDisputeParams {
392
+ /**
393
+ * The textual evidence that supports the dispute
394
+ */
395
+ textEvidence?: string;
396
+ }
397
+ export declare namespace Transactions {
398
+ export { type IssuingTransaction as IssuingTransaction, type TransactionListResponse as TransactionListResponse, type TransactionUpdateParams as TransactionUpdateParams, type TransactionListParams as TransactionListParams, type TransactionCreateDisputeParams as TransactionCreateDisputeParams, };
399
+ export { Receipt as Receipt, type ReceiptUploadParams as ReceiptUploadParams };
400
+ }
401
+ //# sourceMappingURL=transactions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.d.ts","sourceRoot":"","sources":["../../src/resources/transactions/transactions.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Transactions = void 0;
5
+ const tslib_1 = require("../../internal/tslib.js");
6
+ const resource_1 = require("../../core/resource.js");
7
+ const ReceiptAPI = tslib_1.__importStar(require("./receipt.js"));
8
+ const receipt_1 = require("./receipt.js");
9
+ const headers_1 = require("../../internal/headers.js");
10
+ const path_1 = require("../../internal/utils/path.js");
11
+ class Transactions extends resource_1.APIResource {
12
+ constructor() {
13
+ super(...arguments);
14
+ this.receipt = new ReceiptAPI.Receipt(this._client);
15
+ }
16
+ /**
17
+ * This endpoint retrieves a transaction by its unique ID. The transaction
18
+ * information returned includes details such as the transaction type, amount, and
19
+ * status.
20
+ */
21
+ retrieve(transactionID, options) {
22
+ return this._client.get((0, path_1.path) `/transactions/${transactionID}`, options);
23
+ }
24
+ /**
25
+ * This endpoint allows updating a specific transaction by its ID. You can modify
26
+ * the transaction's memo or other editable fields.
27
+ */
28
+ update(transactionID, body = {}, options) {
29
+ return this._client.patch((0, path_1.path) `/transactions/${transactionID}`, {
30
+ body,
31
+ ...options,
32
+ headers: (0, headers_1.buildHeaders)([{ Accept: '*/*' }, options?.headers]),
33
+ });
34
+ }
35
+ /**
36
+ * This endpoint retrieves all transactions associated with corporate cards, users,
37
+ * or specific cards.
38
+ */
39
+ list(query = {}, options) {
40
+ return this._client.get('/transactions', { query, ...options });
41
+ }
42
+ /**
43
+ * This endpoint allows the creation of a dispute for a specific transaction. The
44
+ * dispute can include textual evidence to support the claim.
45
+ */
46
+ createDispute(transactionID, body = {}, options) {
47
+ return this._client.post((0, path_1.path) `/transactions/${transactionID}/disputes`, { body, ...options });
48
+ }
49
+ }
50
+ exports.Transactions = Transactions;
51
+ Transactions.Receipt = receipt_1.Receipt;
52
+ //# sourceMappingURL=transactions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.js","sourceRoot":"","sources":["../../src/resources/transactions/transactions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAElD,iEAAwC;AACxC,0CAAyD;AAEzD,uDAAsD;AAEtD,uDAAiD;AAEjD,MAAa,YAAa,SAAQ,sBAAW;IAA7C;;QACE,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAiDrE,CAAC;IA/CC;;;;OAIG;IACH,QAAQ,CAAC,aAAqB,EAAE,OAAwB;QACtD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,iBAAiB,aAAa,EAAE,EAAE,OAAO,CAAC,CAAC;IACzE,CAAC;IAED;;;OAGG;IACH,MAAM,CACJ,aAAqB,EACrB,OAAmD,EAAE,EACrD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,iBAAiB,aAAa,EAAE,EAAE;YAC9D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,QAAkD,EAAE,EACpD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAED;;;OAGG;IACH,aAAa,CACX,aAAqB,EACrB,OAA0D,EAAE,EAC5D,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,iBAAiB,aAAa,WAAW,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC;CACF;AAlDD,oCAkDC;AAgcD,YAAY,CAAC,OAAO,GAAG,iBAAO,CAAC"}
@@ -0,0 +1,47 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ import { APIResource } from "../../core/resource.mjs";
3
+ import * as ReceiptAPI from "./receipt.mjs";
4
+ import { Receipt } from "./receipt.mjs";
5
+ import { buildHeaders } from "../../internal/headers.mjs";
6
+ import { path } from "../../internal/utils/path.mjs";
7
+ export class Transactions extends APIResource {
8
+ constructor() {
9
+ super(...arguments);
10
+ this.receipt = new ReceiptAPI.Receipt(this._client);
11
+ }
12
+ /**
13
+ * This endpoint retrieves a transaction by its unique ID. The transaction
14
+ * information returned includes details such as the transaction type, amount, and
15
+ * status.
16
+ */
17
+ retrieve(transactionID, options) {
18
+ return this._client.get(path `/transactions/${transactionID}`, options);
19
+ }
20
+ /**
21
+ * This endpoint allows updating a specific transaction by its ID. You can modify
22
+ * the transaction's memo or other editable fields.
23
+ */
24
+ update(transactionID, body = {}, options) {
25
+ return this._client.patch(path `/transactions/${transactionID}`, {
26
+ body,
27
+ ...options,
28
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
29
+ });
30
+ }
31
+ /**
32
+ * This endpoint retrieves all transactions associated with corporate cards, users,
33
+ * or specific cards.
34
+ */
35
+ list(query = {}, options) {
36
+ return this._client.get('/transactions', { query, ...options });
37
+ }
38
+ /**
39
+ * This endpoint allows the creation of a dispute for a specific transaction. The
40
+ * dispute can include textual evidence to support the claim.
41
+ */
42
+ createDispute(transactionID, body = {}, options) {
43
+ return this._client.post(path `/transactions/${transactionID}/disputes`, { body, ...options });
44
+ }
45
+ }
46
+ Transactions.Receipt = Receipt;
47
+ //# sourceMappingURL=transactions.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.mjs","sourceRoot":"","sources":["../../src/resources/transactions/transactions.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,KAAK,UAAU;OACf,EAAE,OAAO,EAAuB;OAEhC,EAAE,YAAY,EAAE;OAEhB,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,YAAa,SAAQ,WAAW;IAA7C;;QACE,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAiDrE,CAAC;IA/CC;;;;OAIG;IACH,QAAQ,CAAC,aAAqB,EAAE,OAAwB;QACtD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,iBAAiB,aAAa,EAAE,EAAE,OAAO,CAAC,CAAC;IACzE,CAAC;IAED;;;OAGG;IACH,MAAM,CACJ,aAAqB,EACrB,OAAmD,EAAE,EACrD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,iBAAiB,aAAa,EAAE,EAAE;YAC9D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,QAAkD,EAAE,EACpD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAED;;;OAGG;IACH,aAAa,CACX,aAAqB,EACrB,OAA0D,EAAE,EAC5D,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,iBAAiB,aAAa,WAAW,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC;CACF;AAgcD,YAAY,CAAC,OAAO,GAAG,OAAO,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./transactions/index.mjs";
2
+ //# sourceMappingURL=transactions.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.d.mts","sourceRoot":"","sources":["../src/resources/transactions.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from "./transactions/index.js";
2
+ //# sourceMappingURL=transactions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.d.ts","sourceRoot":"","sources":["../src/resources/transactions.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const tslib_1 = require("../internal/tslib.js");
5
+ tslib_1.__exportStar(require("./transactions/index.js"), exports);
6
+ //# sourceMappingURL=transactions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.js","sourceRoot":"","sources":["../src/resources/transactions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kEAAqC"}
@@ -0,0 +1,3 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ export * from "./transactions/index.mjs";
3
+ //# sourceMappingURL=transactions.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.mjs","sourceRoot":"","sources":["../src/resources/transactions.ts"],"names":[],"mappings":"AAAA,sFAAsF"}
@@ -0,0 +1,3 @@
1
+ export { Signatures, type SignatureRetrievePaymentSignatureParams, type SignatureRetrieveWithdrawalSignatureParams, } from "./signatures.mjs";
2
+ export { Users, type UserListResponse, type UserInitiatePaymentResponse, type UserRetrieveBalancesResponse, type UserRetrieveContractsResponse, type UserCreateParams, type UserUpdateParams, type UserListParams, type UserCreateCardParams, type UserCreateChargeParams, type UserInitiatePaymentParams, } from "./users.mjs";
3
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/users/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,uCAAuC,EAC5C,KAAK,0CAA0C,GAChD;OACM,EACL,KAAK,EACL,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAClC,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,yBAAyB,GAC/B"}
@@ -0,0 +1,3 @@
1
+ export { Signatures, type SignatureRetrievePaymentSignatureParams, type SignatureRetrieveWithdrawalSignatureParams, } from "./signatures.js";
2
+ export { Users, type UserListResponse, type UserInitiatePaymentResponse, type UserRetrieveBalancesResponse, type UserRetrieveContractsResponse, type UserCreateParams, type UserUpdateParams, type UserListParams, type UserCreateCardParams, type UserCreateChargeParams, type UserInitiatePaymentParams, } from "./users.js";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/users/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,uCAAuC,EAC5C,KAAK,0CAA0C,GAChD;OACM,EACL,KAAK,EACL,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAClC,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,yBAAyB,GAC/B"}
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Users = exports.Signatures = void 0;
5
+ var signatures_1 = require("./signatures.js");
6
+ Object.defineProperty(exports, "Signatures", { enumerable: true, get: function () { return signatures_1.Signatures; } });
7
+ var users_1 = require("./users.js");
8
+ Object.defineProperty(exports, "Users", { enumerable: true, get: function () { return users_1.Users; } });
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/users/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,8CAIsB;AAHpB,wGAAA,UAAU,OAAA;AAIZ,oCAYiB;AAXf,8FAAA,KAAK,OAAA"}
@@ -0,0 +1,4 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ export { Signatures, } from "./signatures.mjs";
3
+ export { Users, } from "./users.mjs";
4
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/users/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,UAAU,GAGX;OACM,EACL,KAAK,GAWN"}