@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
package/client.js ADDED
@@ -0,0 +1,501 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ var _Rain_instances, _a, _Rain_encoder, _Rain_baseURLOverridden;
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.Rain = void 0;
6
+ const tslib_1 = require("./internal/tslib.js");
7
+ const uuid_1 = require("./internal/utils/uuid.js");
8
+ const values_1 = require("./internal/utils/values.js");
9
+ const sleep_1 = require("./internal/utils/sleep.js");
10
+ const errors_1 = require("./internal/errors.js");
11
+ const detect_platform_1 = require("./internal/detect-platform.js");
12
+ const Shims = tslib_1.__importStar(require("./internal/shims.js"));
13
+ const Opts = tslib_1.__importStar(require("./internal/request-options.js"));
14
+ const qs = tslib_1.__importStar(require("./internal/qs/index.js"));
15
+ const version_1 = require("./version.js");
16
+ const Errors = tslib_1.__importStar(require("./core/error.js"));
17
+ const Uploads = tslib_1.__importStar(require("./core/uploads.js"));
18
+ const API = tslib_1.__importStar(require("./resources/index.js"));
19
+ const api_promise_1 = require("./core/api-promise.js");
20
+ const balances_1 = require("./resources/balances.js");
21
+ const contracts_1 = require("./resources/contracts.js");
22
+ const keys_1 = require("./resources/keys.js");
23
+ const payments_1 = require("./resources/payments.js");
24
+ const signatures_1 = require("./resources/signatures.js");
25
+ const applications_1 = require("./resources/applications/applications.js");
26
+ const cards_1 = require("./resources/cards/cards.js");
27
+ const companies_1 = require("./resources/companies/companies.js");
28
+ const disputes_1 = require("./resources/disputes/disputes.js");
29
+ const transactions_1 = require("./resources/transactions/transactions.js");
30
+ const users_1 = require("./resources/users/users.js");
31
+ const headers_1 = require("./internal/headers.js");
32
+ const env_1 = require("./internal/utils/env.js");
33
+ const log_1 = require("./internal/utils/log.js");
34
+ const values_2 = require("./internal/utils/values.js");
35
+ const environments = {
36
+ dev: 'https://api-dev.raincards.xyz/v1/issuing',
37
+ production: 'https://api.raincards.xyz/v1/issuing',
38
+ };
39
+ /**
40
+ * API Client for interfacing with the Rain API.
41
+ */
42
+ class Rain {
43
+ /**
44
+ * API Client for interfacing with the Rain API.
45
+ *
46
+ * @param {string | undefined} [opts.apiKey=process.env['RAIN_API_KEY'] ?? undefined]
47
+ * @param {Environment} [opts.environment=dev] - Specifies the environment URL to use for the API.
48
+ * @param {string} [opts.baseURL=process.env['RAIN_BASE_URL'] ?? https://api-dev.raincards.xyz/v1/issuing] - Override the default base URL for the API.
49
+ * @param {number} [opts.timeout=1 minute] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out.
50
+ * @param {MergedRequestInit} [opts.fetchOptions] - Additional `RequestInit` options to be passed to `fetch` calls.
51
+ * @param {Fetch} [opts.fetch] - Specify a custom `fetch` function implementation.
52
+ * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request.
53
+ * @param {HeadersLike} opts.defaultHeaders - Default headers to include with every request to the API.
54
+ * @param {Record<string, string | undefined>} opts.defaultQuery - Default query parameters to include with every request to the API.
55
+ */
56
+ constructor({ baseURL = (0, env_1.readEnv)('RAIN_BASE_URL'), apiKey = (0, env_1.readEnv)('RAIN_API_KEY'), ...opts } = {}) {
57
+ _Rain_instances.add(this);
58
+ _Rain_encoder.set(this, void 0);
59
+ this.applications = new API.Applications(this);
60
+ this.balances = new API.Balances(this);
61
+ this.cards = new API.Cards(this);
62
+ this.companies = new API.Companies(this);
63
+ this.contracts = new API.Contracts(this);
64
+ this.disputes = new API.Disputes(this);
65
+ this.keys = new API.Keys(this);
66
+ this.payments = new API.Payments(this);
67
+ this.signatures = new API.Signatures(this);
68
+ this.transactions = new API.Transactions(this);
69
+ this.users = new API.Users(this);
70
+ if (apiKey === undefined) {
71
+ throw new Errors.RainError("The RAIN_API_KEY environment variable is missing or empty; either provide it, or instantiate the Rain client with an apiKey option, like new Rain({ apiKey: 'My API Key' }).");
72
+ }
73
+ const options = {
74
+ apiKey,
75
+ ...opts,
76
+ baseURL,
77
+ environment: opts.environment ?? 'dev',
78
+ };
79
+ if (baseURL && opts.environment) {
80
+ throw new Errors.RainError('Ambiguous URL; The `baseURL` option (or RAIN_BASE_URL env var) and the `environment` option are given. If you want to use the environment you must pass baseURL: null');
81
+ }
82
+ this.baseURL = options.baseURL || environments[options.environment || 'dev'];
83
+ this.timeout = options.timeout ?? _a.DEFAULT_TIMEOUT /* 1 minute */;
84
+ this.logger = options.logger ?? console;
85
+ const defaultLogLevel = 'warn';
86
+ // Set default logLevel early so that we can log a warning in parseLogLevel.
87
+ this.logLevel = defaultLogLevel;
88
+ this.logLevel =
89
+ (0, log_1.parseLogLevel)(options.logLevel, 'ClientOptions.logLevel', this) ??
90
+ (0, log_1.parseLogLevel)((0, env_1.readEnv)('RAIN_LOG'), "process.env['RAIN_LOG']", this) ??
91
+ defaultLogLevel;
92
+ this.fetchOptions = options.fetchOptions;
93
+ this.maxRetries = options.maxRetries ?? 2;
94
+ this.fetch = options.fetch ?? Shims.getDefaultFetch();
95
+ tslib_1.__classPrivateFieldSet(this, _Rain_encoder, Opts.FallbackEncoder, "f");
96
+ this._options = options;
97
+ this.apiKey = apiKey;
98
+ }
99
+ /**
100
+ * Create a new client instance re-using the same options given to the current client with optional overriding.
101
+ */
102
+ withOptions(options) {
103
+ const client = new this.constructor({
104
+ ...this._options,
105
+ environment: options.environment ? options.environment : undefined,
106
+ baseURL: options.environment ? undefined : this.baseURL,
107
+ maxRetries: this.maxRetries,
108
+ timeout: this.timeout,
109
+ logger: this.logger,
110
+ logLevel: this.logLevel,
111
+ fetch: this.fetch,
112
+ fetchOptions: this.fetchOptions,
113
+ apiKey: this.apiKey,
114
+ ...options,
115
+ });
116
+ return client;
117
+ }
118
+ defaultQuery() {
119
+ return this._options.defaultQuery;
120
+ }
121
+ validateHeaders({ values, nulls }) {
122
+ return;
123
+ }
124
+ async authHeaders(opts) {
125
+ return (0, headers_1.buildHeaders)([{ 'Api-Key': this.apiKey }]);
126
+ }
127
+ stringifyQuery(query) {
128
+ return qs.stringify(query, { arrayFormat: 'comma' });
129
+ }
130
+ getUserAgent() {
131
+ return `${this.constructor.name}/JS ${version_1.VERSION}`;
132
+ }
133
+ defaultIdempotencyKey() {
134
+ return `stainless-node-retry-${(0, uuid_1.uuid4)()}`;
135
+ }
136
+ makeStatusError(status, error, message, headers) {
137
+ return Errors.APIError.generate(status, error, message, headers);
138
+ }
139
+ buildURL(path, query, defaultBaseURL) {
140
+ const baseURL = (!tslib_1.__classPrivateFieldGet(this, _Rain_instances, "m", _Rain_baseURLOverridden).call(this) && defaultBaseURL) || this.baseURL;
141
+ const url = (0, values_1.isAbsoluteURL)(path) ?
142
+ new URL(path)
143
+ : new URL(baseURL + (baseURL.endsWith('/') && path.startsWith('/') ? path.slice(1) : path));
144
+ const defaultQuery = this.defaultQuery();
145
+ if (!(0, values_2.isEmptyObj)(defaultQuery)) {
146
+ query = { ...defaultQuery, ...query };
147
+ }
148
+ if (typeof query === 'object' && query && !Array.isArray(query)) {
149
+ url.search = this.stringifyQuery(query);
150
+ }
151
+ return url.toString();
152
+ }
153
+ /**
154
+ * Used as a callback for mutating the given `FinalRequestOptions` object.
155
+ */
156
+ async prepareOptions(options) { }
157
+ /**
158
+ * Used as a callback for mutating the given `RequestInit` object.
159
+ *
160
+ * This is useful for cases where you want to add certain headers based off of
161
+ * the request properties, e.g. `method` or `url`.
162
+ */
163
+ async prepareRequest(request, { url, options }) { }
164
+ get(path, opts) {
165
+ return this.methodRequest('get', path, opts);
166
+ }
167
+ post(path, opts) {
168
+ return this.methodRequest('post', path, opts);
169
+ }
170
+ patch(path, opts) {
171
+ return this.methodRequest('patch', path, opts);
172
+ }
173
+ put(path, opts) {
174
+ return this.methodRequest('put', path, opts);
175
+ }
176
+ delete(path, opts) {
177
+ return this.methodRequest('delete', path, opts);
178
+ }
179
+ methodRequest(method, path, opts) {
180
+ return this.request(Promise.resolve(opts).then((opts) => {
181
+ return { method, path, ...opts };
182
+ }));
183
+ }
184
+ request(options, remainingRetries = null) {
185
+ return new api_promise_1.APIPromise(this, this.makeRequest(options, remainingRetries, undefined));
186
+ }
187
+ async makeRequest(optionsInput, retriesRemaining, retryOfRequestLogID) {
188
+ const options = await optionsInput;
189
+ const maxRetries = options.maxRetries ?? this.maxRetries;
190
+ if (retriesRemaining == null) {
191
+ retriesRemaining = maxRetries;
192
+ }
193
+ await this.prepareOptions(options);
194
+ const { req, url, timeout } = await this.buildRequest(options, {
195
+ retryCount: maxRetries - retriesRemaining,
196
+ });
197
+ await this.prepareRequest(req, { url, options });
198
+ /** Not an API request ID, just for correlating local log entries. */
199
+ const requestLogID = 'log_' + ((Math.random() * (1 << 24)) | 0).toString(16).padStart(6, '0');
200
+ const retryLogStr = retryOfRequestLogID === undefined ? '' : `, retryOf: ${retryOfRequestLogID}`;
201
+ const startTime = Date.now();
202
+ (0, log_1.loggerFor)(this).debug(`[${requestLogID}] sending request`, (0, log_1.formatRequestDetails)({
203
+ retryOfRequestLogID,
204
+ method: options.method,
205
+ url,
206
+ options,
207
+ headers: req.headers,
208
+ }));
209
+ if (options.signal?.aborted) {
210
+ throw new Errors.APIUserAbortError();
211
+ }
212
+ const controller = new AbortController();
213
+ const response = await this.fetchWithTimeout(url, req, timeout, controller).catch(errors_1.castToError);
214
+ const headersTime = Date.now();
215
+ if (response instanceof globalThis.Error) {
216
+ const retryMessage = `retrying, ${retriesRemaining} attempts remaining`;
217
+ if (options.signal?.aborted) {
218
+ throw new Errors.APIUserAbortError();
219
+ }
220
+ // detect native connection timeout errors
221
+ // deno throws "TypeError: error sending request for url (https://example/): client error (Connect): tcp connect error: Operation timed out (os error 60): Operation timed out (os error 60)"
222
+ // undici throws "TypeError: fetch failed" with cause "ConnectTimeoutError: Connect Timeout Error (attempted address: example:443, timeout: 1ms)"
223
+ // others do not provide enough information to distinguish timeouts from other connection errors
224
+ const isTimeout = (0, errors_1.isAbortError)(response) ||
225
+ /timed? ?out/i.test(String(response) + ('cause' in response ? String(response.cause) : ''));
226
+ if (retriesRemaining) {
227
+ (0, log_1.loggerFor)(this).info(`[${requestLogID}] connection ${isTimeout ? 'timed out' : 'failed'} - ${retryMessage}`);
228
+ (0, log_1.loggerFor)(this).debug(`[${requestLogID}] connection ${isTimeout ? 'timed out' : 'failed'} (${retryMessage})`, (0, log_1.formatRequestDetails)({
229
+ retryOfRequestLogID,
230
+ url,
231
+ durationMs: headersTime - startTime,
232
+ message: response.message,
233
+ }));
234
+ return this.retryRequest(options, retriesRemaining, retryOfRequestLogID ?? requestLogID);
235
+ }
236
+ (0, log_1.loggerFor)(this).info(`[${requestLogID}] connection ${isTimeout ? 'timed out' : 'failed'} - error; no more retries left`);
237
+ (0, log_1.loggerFor)(this).debug(`[${requestLogID}] connection ${isTimeout ? 'timed out' : 'failed'} (error; no more retries left)`, (0, log_1.formatRequestDetails)({
238
+ retryOfRequestLogID,
239
+ url,
240
+ durationMs: headersTime - startTime,
241
+ message: response.message,
242
+ }));
243
+ if (isTimeout) {
244
+ throw new Errors.APIConnectionTimeoutError();
245
+ }
246
+ throw new Errors.APIConnectionError({ cause: response });
247
+ }
248
+ const responseInfo = `[${requestLogID}${retryLogStr}] ${req.method} ${url} ${response.ok ? 'succeeded' : 'failed'} with status ${response.status} in ${headersTime - startTime}ms`;
249
+ if (!response.ok) {
250
+ const shouldRetry = await this.shouldRetry(response);
251
+ if (retriesRemaining && shouldRetry) {
252
+ const retryMessage = `retrying, ${retriesRemaining} attempts remaining`;
253
+ // We don't need the body of this response.
254
+ await Shims.CancelReadableStream(response.body);
255
+ (0, log_1.loggerFor)(this).info(`${responseInfo} - ${retryMessage}`);
256
+ (0, log_1.loggerFor)(this).debug(`[${requestLogID}] response error (${retryMessage})`, (0, log_1.formatRequestDetails)({
257
+ retryOfRequestLogID,
258
+ url: response.url,
259
+ status: response.status,
260
+ headers: response.headers,
261
+ durationMs: headersTime - startTime,
262
+ }));
263
+ return this.retryRequest(options, retriesRemaining, retryOfRequestLogID ?? requestLogID, response.headers);
264
+ }
265
+ const retryMessage = shouldRetry ? `error; no more retries left` : `error; not retryable`;
266
+ (0, log_1.loggerFor)(this).info(`${responseInfo} - ${retryMessage}`);
267
+ const errText = await response.text().catch((err) => (0, errors_1.castToError)(err).message);
268
+ const errJSON = (0, values_1.safeJSON)(errText);
269
+ const errMessage = errJSON ? undefined : errText;
270
+ (0, log_1.loggerFor)(this).debug(`[${requestLogID}] response error (${retryMessage})`, (0, log_1.formatRequestDetails)({
271
+ retryOfRequestLogID,
272
+ url: response.url,
273
+ status: response.status,
274
+ headers: response.headers,
275
+ message: errMessage,
276
+ durationMs: Date.now() - startTime,
277
+ }));
278
+ const err = this.makeStatusError(response.status, errJSON, errMessage, response.headers);
279
+ throw err;
280
+ }
281
+ (0, log_1.loggerFor)(this).info(responseInfo);
282
+ (0, log_1.loggerFor)(this).debug(`[${requestLogID}] response start`, (0, log_1.formatRequestDetails)({
283
+ retryOfRequestLogID,
284
+ url: response.url,
285
+ status: response.status,
286
+ headers: response.headers,
287
+ durationMs: headersTime - startTime,
288
+ }));
289
+ return { response, options, controller, requestLogID, retryOfRequestLogID, startTime };
290
+ }
291
+ async fetchWithTimeout(url, init, ms, controller) {
292
+ const { signal, method, ...options } = init || {};
293
+ const abort = this._makeAbort(controller);
294
+ if (signal)
295
+ signal.addEventListener('abort', abort, { once: true });
296
+ const timeout = setTimeout(abort, ms);
297
+ const isReadableBody = (globalThis.ReadableStream && options.body instanceof globalThis.ReadableStream) ||
298
+ (typeof options.body === 'object' && options.body !== null && Symbol.asyncIterator in options.body);
299
+ const fetchOptions = {
300
+ signal: controller.signal,
301
+ ...(isReadableBody ? { duplex: 'half' } : {}),
302
+ method: 'GET',
303
+ ...options,
304
+ };
305
+ if (method) {
306
+ // Custom methods like 'patch' need to be uppercased
307
+ // See https://github.com/nodejs/undici/issues/2294
308
+ fetchOptions.method = method.toUpperCase();
309
+ }
310
+ try {
311
+ // use undefined this binding; fetch errors if bound to something else in browser/cloudflare
312
+ return await this.fetch.call(undefined, url, fetchOptions);
313
+ }
314
+ finally {
315
+ clearTimeout(timeout);
316
+ }
317
+ }
318
+ async shouldRetry(response) {
319
+ // Note this is not a standard header.
320
+ const shouldRetryHeader = response.headers.get('x-should-retry');
321
+ // If the server explicitly says whether or not to retry, obey.
322
+ if (shouldRetryHeader === 'true')
323
+ return true;
324
+ if (shouldRetryHeader === 'false')
325
+ return false;
326
+ // Retry on request timeouts.
327
+ if (response.status === 408)
328
+ return true;
329
+ // Retry on lock timeouts.
330
+ if (response.status === 409)
331
+ return true;
332
+ // Retry on rate limits.
333
+ if (response.status === 429)
334
+ return true;
335
+ // Retry internal errors.
336
+ if (response.status >= 500)
337
+ return true;
338
+ return false;
339
+ }
340
+ async retryRequest(options, retriesRemaining, requestLogID, responseHeaders) {
341
+ let timeoutMillis;
342
+ // Note the `retry-after-ms` header may not be standard, but is a good idea and we'd like proactive support for it.
343
+ const retryAfterMillisHeader = responseHeaders?.get('retry-after-ms');
344
+ if (retryAfterMillisHeader) {
345
+ const timeoutMs = parseFloat(retryAfterMillisHeader);
346
+ if (!Number.isNaN(timeoutMs)) {
347
+ timeoutMillis = timeoutMs;
348
+ }
349
+ }
350
+ // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After
351
+ const retryAfterHeader = responseHeaders?.get('retry-after');
352
+ if (retryAfterHeader && !timeoutMillis) {
353
+ const timeoutSeconds = parseFloat(retryAfterHeader);
354
+ if (!Number.isNaN(timeoutSeconds)) {
355
+ timeoutMillis = timeoutSeconds * 1000;
356
+ }
357
+ else {
358
+ timeoutMillis = Date.parse(retryAfterHeader) - Date.now();
359
+ }
360
+ }
361
+ // If the API asks us to wait a certain amount of time (and it's a reasonable amount),
362
+ // just do what it says, but otherwise calculate a default
363
+ if (!(timeoutMillis && 0 <= timeoutMillis && timeoutMillis < 60 * 1000)) {
364
+ const maxRetries = options.maxRetries ?? this.maxRetries;
365
+ timeoutMillis = this.calculateDefaultRetryTimeoutMillis(retriesRemaining, maxRetries);
366
+ }
367
+ await (0, sleep_1.sleep)(timeoutMillis);
368
+ return this.makeRequest(options, retriesRemaining - 1, requestLogID);
369
+ }
370
+ calculateDefaultRetryTimeoutMillis(retriesRemaining, maxRetries) {
371
+ const initialRetryDelay = 0.5;
372
+ const maxRetryDelay = 8.0;
373
+ const numRetries = maxRetries - retriesRemaining;
374
+ // Apply exponential backoff, but not more than the max.
375
+ const sleepSeconds = Math.min(initialRetryDelay * Math.pow(2, numRetries), maxRetryDelay);
376
+ // Apply some jitter, take up to at most 25 percent of the retry time.
377
+ const jitter = 1 - Math.random() * 0.25;
378
+ return sleepSeconds * jitter * 1000;
379
+ }
380
+ async buildRequest(inputOptions, { retryCount = 0 } = {}) {
381
+ const options = { ...inputOptions };
382
+ const { method, path, query, defaultBaseURL } = options;
383
+ const url = this.buildURL(path, query, defaultBaseURL);
384
+ if ('timeout' in options)
385
+ (0, values_1.validatePositiveInteger)('timeout', options.timeout);
386
+ options.timeout = options.timeout ?? this.timeout;
387
+ const { bodyHeaders, body } = this.buildBody({ options });
388
+ const reqHeaders = await this.buildHeaders({ options: inputOptions, method, bodyHeaders, retryCount });
389
+ const req = {
390
+ method,
391
+ headers: reqHeaders,
392
+ ...(options.signal && { signal: options.signal }),
393
+ ...(globalThis.ReadableStream &&
394
+ body instanceof globalThis.ReadableStream && { duplex: 'half' }),
395
+ ...(body && { body }),
396
+ ...(this.fetchOptions ?? {}),
397
+ ...(options.fetchOptions ?? {}),
398
+ };
399
+ return { req, url, timeout: options.timeout };
400
+ }
401
+ async buildHeaders({ options, method, bodyHeaders, retryCount, }) {
402
+ let idempotencyHeaders = {};
403
+ if (this.idempotencyHeader && method !== 'get') {
404
+ if (!options.idempotencyKey)
405
+ options.idempotencyKey = this.defaultIdempotencyKey();
406
+ idempotencyHeaders[this.idempotencyHeader] = options.idempotencyKey;
407
+ }
408
+ const headers = (0, headers_1.buildHeaders)([
409
+ idempotencyHeaders,
410
+ {
411
+ Accept: 'application/json',
412
+ 'User-Agent': this.getUserAgent(),
413
+ 'X-Stainless-Retry-Count': String(retryCount),
414
+ ...(options.timeout ? { 'X-Stainless-Timeout': String(Math.trunc(options.timeout / 1000)) } : {}),
415
+ ...(0, detect_platform_1.getPlatformHeaders)(),
416
+ },
417
+ await this.authHeaders(options),
418
+ this._options.defaultHeaders,
419
+ bodyHeaders,
420
+ options.headers,
421
+ ]);
422
+ this.validateHeaders(headers);
423
+ return headers.values;
424
+ }
425
+ _makeAbort(controller) {
426
+ // note: we can't just inline this method inside `fetchWithTimeout()` because then the closure
427
+ // would capture all request options, and cause a memory leak.
428
+ return () => controller.abort();
429
+ }
430
+ buildBody({ options: { body, headers: rawHeaders } }) {
431
+ if (!body) {
432
+ return { bodyHeaders: undefined, body: undefined };
433
+ }
434
+ const headers = (0, headers_1.buildHeaders)([rawHeaders]);
435
+ if (
436
+ // Pass raw type verbatim
437
+ ArrayBuffer.isView(body) ||
438
+ body instanceof ArrayBuffer ||
439
+ body instanceof DataView ||
440
+ (typeof body === 'string' &&
441
+ // Preserve legacy string encoding behavior for now
442
+ headers.values.has('content-type')) ||
443
+ // `Blob` is superset of `File`
444
+ (globalThis.Blob && body instanceof globalThis.Blob) ||
445
+ // `FormData` -> `multipart/form-data`
446
+ body instanceof FormData ||
447
+ // `URLSearchParams` -> `application/x-www-form-urlencoded`
448
+ body instanceof URLSearchParams ||
449
+ // Send chunked stream (each chunk has own `length`)
450
+ (globalThis.ReadableStream && body instanceof globalThis.ReadableStream)) {
451
+ return { bodyHeaders: undefined, body: body };
452
+ }
453
+ else if (typeof body === 'object' &&
454
+ (Symbol.asyncIterator in body ||
455
+ (Symbol.iterator in body && 'next' in body && typeof body.next === 'function'))) {
456
+ return { bodyHeaders: undefined, body: Shims.ReadableStreamFrom(body) };
457
+ }
458
+ else if (typeof body === 'object' &&
459
+ headers.values.get('content-type') === 'application/x-www-form-urlencoded') {
460
+ return {
461
+ bodyHeaders: { 'content-type': 'application/x-www-form-urlencoded' },
462
+ body: this.stringifyQuery(body),
463
+ };
464
+ }
465
+ else {
466
+ return tslib_1.__classPrivateFieldGet(this, _Rain_encoder, "f").call(this, { body, headers });
467
+ }
468
+ }
469
+ }
470
+ exports.Rain = Rain;
471
+ _a = Rain, _Rain_encoder = new WeakMap(), _Rain_instances = new WeakSet(), _Rain_baseURLOverridden = function _Rain_baseURLOverridden() {
472
+ return this.baseURL !== environments[this._options.environment || 'dev'];
473
+ };
474
+ Rain.Rain = _a;
475
+ Rain.DEFAULT_TIMEOUT = 60000; // 1 minute
476
+ Rain.RainError = Errors.RainError;
477
+ Rain.APIError = Errors.APIError;
478
+ Rain.APIConnectionError = Errors.APIConnectionError;
479
+ Rain.APIConnectionTimeoutError = Errors.APIConnectionTimeoutError;
480
+ Rain.APIUserAbortError = Errors.APIUserAbortError;
481
+ Rain.NotFoundError = Errors.NotFoundError;
482
+ Rain.ConflictError = Errors.ConflictError;
483
+ Rain.RateLimitError = Errors.RateLimitError;
484
+ Rain.BadRequestError = Errors.BadRequestError;
485
+ Rain.AuthenticationError = Errors.AuthenticationError;
486
+ Rain.InternalServerError = Errors.InternalServerError;
487
+ Rain.PermissionDeniedError = Errors.PermissionDeniedError;
488
+ Rain.UnprocessableEntityError = Errors.UnprocessableEntityError;
489
+ Rain.toFile = Uploads.toFile;
490
+ Rain.Applications = applications_1.Applications;
491
+ Rain.Balances = balances_1.Balances;
492
+ Rain.Cards = cards_1.Cards;
493
+ Rain.Companies = companies_1.Companies;
494
+ Rain.Contracts = contracts_1.Contracts;
495
+ Rain.Disputes = disputes_1.Disputes;
496
+ Rain.Keys = keys_1.Keys;
497
+ Rain.Payments = payments_1.Payments;
498
+ Rain.Signatures = signatures_1.Signatures;
499
+ Rain.Transactions = transactions_1.Transactions;
500
+ Rain.Users = users_1.Users;
501
+ //# sourceMappingURL=client.js.map
package/client.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["src/client.ts"],"names":[],"mappings":"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"}