dodopayments 1.53.2 → 2.0.0

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 (740) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +114 -44
  3. package/api-promise.d.mts +2 -0
  4. package/api-promise.d.mts.map +1 -0
  5. package/api-promise.d.ts +2 -0
  6. package/api-promise.d.ts.map +1 -0
  7. package/api-promise.js +6 -0
  8. package/api-promise.js.map +1 -0
  9. package/api-promise.mjs +2 -0
  10. package/api-promise.mjs.map +1 -0
  11. package/bin/cli +53 -0
  12. package/bin/migration-config.json +6 -0
  13. package/client.d.mts +259 -0
  14. package/client.d.mts.map +1 -0
  15. package/client.d.ts +259 -0
  16. package/client.d.ts.map +1 -0
  17. package/client.js +536 -0
  18. package/client.js.map +1 -0
  19. package/client.mjs +532 -0
  20. package/client.mjs.map +1 -0
  21. package/core/api-promise.d.mts +46 -0
  22. package/core/api-promise.d.mts.map +1 -0
  23. package/core/api-promise.d.ts +46 -0
  24. package/core/api-promise.d.ts.map +1 -0
  25. package/core/api-promise.js +74 -0
  26. package/core/api-promise.js.map +1 -0
  27. package/core/api-promise.mjs +70 -0
  28. package/core/api-promise.mjs.map +1 -0
  29. package/core/error.d.mts +46 -0
  30. package/core/error.d.mts.map +1 -0
  31. package/core/error.d.ts +46 -0
  32. package/core/error.d.ts.map +1 -0
  33. package/core/error.js +113 -0
  34. package/core/error.js.map +1 -0
  35. package/core/error.mjs +97 -0
  36. package/core/error.mjs.map +1 -0
  37. package/core/pagination.d.mts +70 -0
  38. package/core/pagination.d.mts.map +1 -0
  39. package/core/pagination.d.ts +70 -0
  40. package/core/pagination.d.ts.map +1 -0
  41. package/core/pagination.js +129 -0
  42. package/core/pagination.js.map +1 -0
  43. package/core/pagination.mjs +122 -0
  44. package/core/pagination.mjs.map +1 -0
  45. package/core/resource.d.mts +6 -0
  46. package/core/resource.d.mts.map +1 -0
  47. package/core/resource.d.ts +6 -0
  48. package/core/resource.d.ts.map +1 -0
  49. package/core/resource.js +11 -0
  50. package/core/resource.js.map +1 -0
  51. package/core/resource.mjs +7 -0
  52. package/core/resource.mjs.map +1 -0
  53. package/core/uploads.d.mts +3 -0
  54. package/core/uploads.d.mts.map +1 -0
  55. package/core/uploads.d.ts +3 -0
  56. package/core/uploads.d.ts.map +1 -0
  57. package/core/uploads.js +6 -0
  58. package/core/uploads.js.map +1 -0
  59. package/core/uploads.mjs +2 -0
  60. package/core/uploads.mjs.map +1 -0
  61. package/error.d.mts +2 -0
  62. package/error.d.mts.map +1 -0
  63. package/error.d.ts +1 -46
  64. package/error.d.ts.map +1 -1
  65. package/error.js +3 -110
  66. package/error.js.map +1 -1
  67. package/error.mjs +1 -96
  68. package/error.mjs.map +1 -1
  69. package/index.d.mts +7 -190
  70. package/index.d.mts.map +1 -0
  71. package/index.d.ts +6 -189
  72. package/index.d.ts.map +1 -1
  73. package/index.js +14 -195
  74. package/index.js.map +1 -1
  75. package/index.mjs +6 -168
  76. package/index.mjs.map +1 -1
  77. package/internal/builtin-types.d.mts +73 -0
  78. package/internal/builtin-types.d.mts.map +1 -0
  79. package/internal/builtin-types.d.ts +73 -0
  80. package/internal/builtin-types.d.ts.map +1 -0
  81. package/internal/builtin-types.js +4 -0
  82. package/internal/builtin-types.js.map +1 -0
  83. package/internal/builtin-types.mjs +3 -0
  84. package/internal/builtin-types.mjs.map +1 -0
  85. package/internal/detect-platform.d.mts +15 -0
  86. package/internal/detect-platform.d.mts.map +1 -0
  87. package/internal/detect-platform.d.ts +15 -0
  88. package/internal/detect-platform.d.ts.map +1 -0
  89. package/internal/detect-platform.js +162 -0
  90. package/internal/detect-platform.js.map +1 -0
  91. package/internal/detect-platform.mjs +157 -0
  92. package/internal/detect-platform.mjs.map +1 -0
  93. package/internal/errors.d.mts +3 -0
  94. package/internal/errors.d.mts.map +1 -0
  95. package/internal/errors.d.ts +3 -0
  96. package/internal/errors.d.ts.map +1 -0
  97. package/internal/errors.js +41 -0
  98. package/internal/errors.js.map +1 -0
  99. package/internal/errors.mjs +36 -0
  100. package/internal/errors.mjs.map +1 -0
  101. package/internal/headers.d.mts +20 -0
  102. package/internal/headers.d.mts.map +1 -0
  103. package/internal/headers.d.ts +20 -0
  104. package/internal/headers.d.ts.map +1 -0
  105. package/internal/headers.js +79 -0
  106. package/internal/headers.js.map +1 -0
  107. package/internal/headers.mjs +74 -0
  108. package/internal/headers.mjs.map +1 -0
  109. package/internal/parse.d.mts +12 -0
  110. package/internal/parse.d.mts.map +1 -0
  111. package/internal/parse.d.ts +12 -0
  112. package/internal/parse.d.ts.map +1 -0
  113. package/internal/parse.js +35 -0
  114. package/internal/parse.js.map +1 -0
  115. package/internal/parse.mjs +32 -0
  116. package/internal/parse.mjs.map +1 -0
  117. package/internal/request-options.d.mts +75 -0
  118. package/internal/request-options.d.mts.map +1 -0
  119. package/internal/request-options.d.ts +75 -0
  120. package/internal/request-options.d.ts.map +1 -0
  121. package/internal/request-options.js +14 -0
  122. package/internal/request-options.js.map +1 -0
  123. package/internal/request-options.mjs +10 -0
  124. package/internal/request-options.mjs.map +1 -0
  125. package/internal/shim-types.d.mts +17 -0
  126. package/internal/shim-types.d.mts.map +1 -0
  127. package/internal/shim-types.d.ts +17 -0
  128. package/internal/shim-types.d.ts.map +1 -0
  129. package/internal/shim-types.js +4 -0
  130. package/internal/shim-types.js.map +1 -0
  131. package/internal/shim-types.mjs +3 -0
  132. package/internal/shim-types.mjs.map +1 -0
  133. package/internal/shims.d.mts +20 -0
  134. package/internal/shims.d.mts.map +1 -0
  135. package/internal/shims.d.ts +20 -0
  136. package/internal/shims.d.ts.map +1 -0
  137. package/internal/shims.js +92 -0
  138. package/internal/shims.js.map +1 -0
  139. package/internal/shims.mjs +85 -0
  140. package/internal/shims.mjs.map +1 -0
  141. package/internal/to-file.d.mts +45 -0
  142. package/internal/to-file.d.mts.map +1 -0
  143. package/internal/to-file.d.ts +45 -0
  144. package/internal/to-file.d.ts.map +1 -0
  145. package/internal/to-file.js +91 -0
  146. package/internal/to-file.js.map +1 -0
  147. package/internal/to-file.mjs +88 -0
  148. package/internal/to-file.mjs.map +1 -0
  149. package/internal/tslib.js +81 -0
  150. package/internal/tslib.mjs +17 -0
  151. package/internal/types.d.mts +69 -0
  152. package/internal/types.d.mts.map +1 -0
  153. package/internal/types.d.ts +69 -0
  154. package/internal/types.d.ts.map +1 -0
  155. package/internal/types.js +4 -0
  156. package/internal/types.js.map +1 -0
  157. package/internal/types.mjs +3 -0
  158. package/internal/types.mjs.map +1 -0
  159. package/internal/uploads.d.mts +42 -0
  160. package/internal/uploads.d.mts.map +1 -0
  161. package/internal/uploads.d.ts +42 -0
  162. package/internal/uploads.d.ts.map +1 -0
  163. package/internal/uploads.js +141 -0
  164. package/internal/uploads.js.map +1 -0
  165. package/internal/uploads.mjs +131 -0
  166. package/internal/uploads.mjs.map +1 -0
  167. package/internal/utils/base64.d.mts +3 -0
  168. package/internal/utils/base64.d.mts.map +1 -0
  169. package/internal/utils/base64.d.ts +3 -0
  170. package/internal/utils/base64.d.ts.map +1 -0
  171. package/internal/utils/base64.js +38 -0
  172. package/internal/utils/base64.js.map +1 -0
  173. package/internal/utils/base64.mjs +33 -0
  174. package/internal/utils/base64.mjs.map +1 -0
  175. package/internal/utils/bytes.d.mts +4 -0
  176. package/internal/utils/bytes.d.mts.map +1 -0
  177. package/internal/utils/bytes.d.ts +4 -0
  178. package/internal/utils/bytes.d.ts.map +1 -0
  179. package/internal/utils/bytes.js +31 -0
  180. package/internal/utils/bytes.js.map +1 -0
  181. package/internal/utils/bytes.mjs +26 -0
  182. package/internal/utils/bytes.mjs.map +1 -0
  183. package/internal/utils/env.d.mts +9 -0
  184. package/internal/utils/env.d.mts.map +1 -0
  185. package/internal/utils/env.d.ts +9 -0
  186. package/internal/utils/env.d.ts.map +1 -0
  187. package/internal/utils/env.js +22 -0
  188. package/internal/utils/env.js.map +1 -0
  189. package/internal/utils/env.mjs +18 -0
  190. package/internal/utils/env.mjs.map +1 -0
  191. package/internal/utils/log.d.mts +37 -0
  192. package/internal/utils/log.d.mts.map +1 -0
  193. package/internal/utils/log.d.ts +37 -0
  194. package/internal/utils/log.d.ts.map +1 -0
  195. package/internal/utils/log.js +85 -0
  196. package/internal/utils/log.js.map +1 -0
  197. package/internal/utils/log.mjs +79 -0
  198. package/internal/utils/log.mjs.map +1 -0
  199. package/internal/utils/path.d.mts +15 -0
  200. package/internal/utils/path.d.mts.map +1 -0
  201. package/internal/utils/path.d.ts +15 -0
  202. package/internal/utils/path.d.ts.map +1 -0
  203. package/internal/utils/path.js +79 -0
  204. package/internal/utils/path.js.map +1 -0
  205. package/internal/utils/path.mjs +74 -0
  206. package/internal/utils/path.mjs.map +1 -0
  207. package/internal/utils/sleep.d.mts +2 -0
  208. package/internal/utils/sleep.d.mts.map +1 -0
  209. package/internal/utils/sleep.d.ts +2 -0
  210. package/internal/utils/sleep.d.ts.map +1 -0
  211. package/internal/utils/sleep.js +7 -0
  212. package/internal/utils/sleep.js.map +1 -0
  213. package/internal/utils/sleep.mjs +3 -0
  214. package/internal/utils/sleep.mjs.map +1 -0
  215. package/internal/utils/uuid.d.mts +5 -0
  216. package/internal/utils/uuid.d.mts.map +1 -0
  217. package/internal/utils/uuid.d.ts +5 -0
  218. package/internal/utils/uuid.d.ts.map +1 -0
  219. package/internal/utils/uuid.js +19 -0
  220. package/internal/utils/uuid.js.map +1 -0
  221. package/internal/utils/uuid.mjs +15 -0
  222. package/internal/utils/uuid.mjs.map +1 -0
  223. package/internal/utils/values.d.mts +18 -0
  224. package/internal/utils/values.d.mts.map +1 -0
  225. package/internal/utils/values.d.ts +18 -0
  226. package/internal/utils/values.d.ts.map +1 -0
  227. package/internal/utils/values.js +112 -0
  228. package/internal/utils/values.js.map +1 -0
  229. package/internal/utils/values.mjs +94 -0
  230. package/internal/utils/values.mjs.map +1 -0
  231. package/internal/utils.d.mts +7 -0
  232. package/internal/utils.d.mts.map +1 -0
  233. package/internal/utils.d.ts +7 -0
  234. package/internal/utils.d.ts.map +1 -0
  235. package/internal/utils.js +11 -0
  236. package/internal/utils.js.map +1 -0
  237. package/internal/utils.mjs +8 -0
  238. package/internal/utils.mjs.map +1 -0
  239. package/package.json +115 -66
  240. package/pagination.d.mts +2 -0
  241. package/pagination.d.mts.map +1 -0
  242. package/pagination.d.ts +1 -34
  243. package/pagination.d.ts.map +1 -1
  244. package/pagination.js +3 -71
  245. package/pagination.js.map +1 -1
  246. package/pagination.mjs +1 -68
  247. package/pagination.mjs.map +1 -1
  248. package/resource.d.mts +2 -0
  249. package/resource.d.mts.map +1 -0
  250. package/resource.d.ts +1 -5
  251. package/resource.d.ts.map +1 -1
  252. package/resource.js +3 -8
  253. package/resource.js.map +1 -1
  254. package/resource.mjs +1 -6
  255. package/resource.mjs.map +1 -1
  256. package/resources/addons.d.mts +113 -0
  257. package/resources/addons.d.mts.map +1 -0
  258. package/resources/addons.d.ts +11 -12
  259. package/resources/addons.d.ts.map +1 -1
  260. package/resources/addons.js +8 -15
  261. package/resources/addons.js.map +1 -1
  262. package/resources/addons.mjs +7 -13
  263. package/resources/addons.mjs.map +1 -1
  264. package/resources/brands.d.mts +66 -0
  265. package/resources/brands.d.mts.map +1 -0
  266. package/resources/brands.d.ts +8 -7
  267. package/resources/brands.d.ts.map +1 -1
  268. package/resources/brands.js +5 -4
  269. package/resources/brands.js.map +1 -1
  270. package/resources/brands.mjs +5 -4
  271. package/resources/brands.mjs.map +1 -1
  272. package/resources/checkout-sessions.d.mts +349 -0
  273. package/resources/checkout-sessions.d.mts.map +1 -0
  274. package/resources/checkout-sessions.d.ts +4 -3
  275. package/resources/checkout-sessions.d.ts.map +1 -1
  276. package/resources/checkout-sessions.js +1 -1
  277. package/resources/checkout-sessions.js.map +1 -1
  278. package/resources/checkout-sessions.mjs +1 -1
  279. package/resources/checkout-sessions.mjs.map +1 -1
  280. package/resources/customers/customer-portal.d.mts +17 -0
  281. package/resources/customers/customer-portal.d.mts.map +1 -0
  282. package/resources/customers/customer-portal.d.ts +4 -4
  283. package/resources/customers/customer-portal.d.ts.map +1 -1
  284. package/resources/customers/customer-portal.js +5 -8
  285. package/resources/customers/customer-portal.js.map +1 -1
  286. package/resources/customers/customer-portal.mjs +5 -8
  287. package/resources/customers/customer-portal.mjs.map +1 -1
  288. package/resources/customers/customers.d.mts +49 -0
  289. package/resources/customers/customers.d.mts.map +1 -0
  290. package/resources/customers/customers.d.ts +10 -11
  291. package/resources/customers/customers.d.ts.map +1 -1
  292. package/resources/customers/customers.js +15 -41
  293. package/resources/customers/customers.js.map +1 -1
  294. package/resources/customers/customers.mjs +11 -14
  295. package/resources/customers/customers.mjs.map +1 -1
  296. package/resources/customers/index.d.mts +4 -0
  297. package/resources/customers/index.d.mts.map +1 -0
  298. package/resources/customers/index.d.ts +1 -1
  299. package/resources/customers/index.d.ts.map +1 -1
  300. package/resources/customers/index.js +1 -2
  301. package/resources/customers/index.js.map +1 -1
  302. package/resources/customers/index.mjs +1 -1
  303. package/resources/customers/index.mjs.map +1 -1
  304. package/resources/customers/wallets/index.d.mts +3 -0
  305. package/resources/customers/wallets/index.d.mts.map +1 -0
  306. package/resources/customers/wallets/index.d.ts +1 -1
  307. package/resources/customers/wallets/index.d.ts.map +1 -1
  308. package/resources/customers/wallets/index.js +1 -2
  309. package/resources/customers/wallets/index.js.map +1 -1
  310. package/resources/customers/wallets/index.mjs +1 -1
  311. package/resources/customers/wallets/index.mjs.map +1 -1
  312. package/resources/customers/wallets/ledger-entries.d.mts +51 -0
  313. package/resources/customers/wallets/ledger-entries.d.mts.map +1 -0
  314. package/resources/customers/wallets/ledger-entries.d.ts +8 -9
  315. package/resources/customers/wallets/ledger-entries.d.ts.map +1 -1
  316. package/resources/customers/wallets/ledger-entries.js +8 -16
  317. package/resources/customers/wallets/ledger-entries.js.map +1 -1
  318. package/resources/customers/wallets/ledger-entries.mjs +7 -14
  319. package/resources/customers/wallets/ledger-entries.mjs.map +1 -1
  320. package/resources/customers/wallets/wallets.d.mts +29 -0
  321. package/resources/customers/wallets/wallets.d.mts.map +1 -0
  322. package/resources/customers/wallets/wallets.d.ts +5 -4
  323. package/resources/customers/wallets/wallets.d.ts.map +1 -1
  324. package/resources/customers/wallets/wallets.js +6 -29
  325. package/resources/customers/wallets/wallets.js.map +1 -1
  326. package/resources/customers/wallets/wallets.mjs +5 -6
  327. package/resources/customers/wallets/wallets.mjs.map +1 -1
  328. package/resources/customers/wallets.d.mts +2 -0
  329. package/resources/customers/wallets.d.mts.map +1 -0
  330. package/resources/customers/wallets.d.ts.map +1 -1
  331. package/resources/customers/wallets.js +2 -15
  332. package/resources/customers/wallets.js.map +1 -1
  333. package/resources/customers.d.mts +2 -0
  334. package/resources/customers.d.mts.map +1 -0
  335. package/resources/customers.d.ts.map +1 -1
  336. package/resources/customers.js +2 -15
  337. package/resources/customers.js.map +1 -1
  338. package/resources/discounts.d.mts +168 -0
  339. package/resources/discounts.d.mts.map +1 -0
  340. package/resources/discounts.d.ts +11 -12
  341. package/resources/discounts.d.ts.map +1 -1
  342. package/resources/discounts.js +19 -19
  343. package/resources/discounts.js.map +1 -1
  344. package/resources/discounts.mjs +18 -17
  345. package/resources/discounts.mjs.map +1 -1
  346. package/resources/disputes.d.mts +159 -0
  347. package/resources/disputes.d.mts.map +1 -0
  348. package/resources/disputes.d.ts +8 -9
  349. package/resources/disputes.d.ts.map +1 -1
  350. package/resources/disputes.js +7 -14
  351. package/resources/disputes.js.map +1 -1
  352. package/resources/disputes.mjs +6 -12
  353. package/resources/disputes.mjs.map +1 -1
  354. package/resources/index.d.mts +21 -0
  355. package/resources/index.d.mts.map +1 -0
  356. package/resources/index.d.ts +14 -14
  357. package/resources/index.d.ts.map +1 -1
  358. package/resources/index.js +5 -20
  359. package/resources/index.js.map +1 -1
  360. package/resources/index.mjs +14 -14
  361. package/resources/index.mjs.map +1 -1
  362. package/resources/invoices/index.d.mts +3 -0
  363. package/resources/invoices/index.d.mts.map +1 -0
  364. package/resources/invoices/index.d.ts.map +1 -1
  365. package/resources/invoices/invoices.d.mts +10 -0
  366. package/resources/invoices/invoices.d.mts.map +1 -0
  367. package/resources/invoices/invoices.d.ts +1 -1
  368. package/resources/invoices/invoices.d.ts.map +1 -1
  369. package/resources/invoices/invoices.js +3 -25
  370. package/resources/invoices/invoices.js.map +1 -1
  371. package/resources/invoices/invoices.mjs +1 -1
  372. package/resources/invoices/payments.d.mts +8 -0
  373. package/resources/invoices/payments.d.mts.map +1 -0
  374. package/resources/invoices/payments.d.ts +5 -5
  375. package/resources/invoices/payments.d.ts.map +1 -1
  376. package/resources/invoices/payments.js +9 -7
  377. package/resources/invoices/payments.js.map +1 -1
  378. package/resources/invoices/payments.mjs +9 -7
  379. package/resources/invoices/payments.mjs.map +1 -1
  380. package/resources/invoices.d.mts +2 -0
  381. package/resources/invoices.d.mts.map +1 -0
  382. package/resources/invoices.d.ts.map +1 -1
  383. package/resources/invoices.js +2 -15
  384. package/resources/invoices.js.map +1 -1
  385. package/resources/license-key-instances.d.mts +55 -0
  386. package/resources/license-key-instances.d.mts.map +1 -0
  387. package/resources/license-key-instances.d.ts +9 -10
  388. package/resources/license-key-instances.d.ts.map +1 -1
  389. package/resources/license-key-instances.js +16 -18
  390. package/resources/license-key-instances.js.map +1 -1
  391. package/resources/license-key-instances.mjs +15 -16
  392. package/resources/license-key-instances.mjs.map +1 -1
  393. package/resources/license-keys.d.mts +122 -0
  394. package/resources/license-keys.d.mts.map +1 -0
  395. package/resources/license-keys.d.ts +9 -10
  396. package/resources/license-keys.d.ts.map +1 -1
  397. package/resources/license-keys.js +16 -14
  398. package/resources/license-keys.js.map +1 -1
  399. package/resources/license-keys.mjs +15 -12
  400. package/resources/license-keys.mjs.map +1 -1
  401. package/resources/licenses.d.mts +99 -0
  402. package/resources/licenses.d.mts.map +1 -0
  403. package/resources/licenses.d.ts +6 -5
  404. package/resources/licenses.d.ts.map +1 -1
  405. package/resources/licenses.js +3 -2
  406. package/resources/licenses.js.map +1 -1
  407. package/resources/licenses.mjs +3 -2
  408. package/resources/licenses.mjs.map +1 -1
  409. package/resources/meters.d.mts +191 -0
  410. package/resources/meters.d.mts.map +1 -0
  411. package/resources/meters.d.ts +11 -12
  412. package/resources/meters.d.ts.map +1 -1
  413. package/resources/meters.js +11 -17
  414. package/resources/meters.js.map +1 -1
  415. package/resources/meters.mjs +10 -15
  416. package/resources/meters.mjs.map +1 -1
  417. package/resources/misc.d.mts +21 -0
  418. package/resources/misc.d.mts.map +1 -0
  419. package/resources/misc.d.ts +4 -3
  420. package/resources/misc.d.ts.map +1 -1
  421. package/resources/misc.js +1 -1
  422. package/resources/misc.js.map +1 -1
  423. package/resources/misc.mjs +1 -1
  424. package/resources/misc.mjs.map +1 -1
  425. package/resources/payments.d.mts +420 -0
  426. package/resources/payments.d.mts.map +1 -0
  427. package/resources/payments.d.ts +10 -11
  428. package/resources/payments.d.ts.map +1 -1
  429. package/resources/payments.js +9 -16
  430. package/resources/payments.js.map +1 -1
  431. package/resources/payments.mjs +8 -14
  432. package/resources/payments.mjs.map +1 -1
  433. package/resources/payouts.d.mts +76 -0
  434. package/resources/payouts.d.mts.map +1 -0
  435. package/resources/payouts.d.ts +6 -8
  436. package/resources/payouts.d.ts.map +1 -1
  437. package/resources/payouts.js +4 -12
  438. package/resources/payouts.js.map +1 -1
  439. package/resources/payouts.mjs +3 -10
  440. package/resources/payouts.mjs.map +1 -1
  441. package/resources/products/images.d.mts +17 -0
  442. package/resources/products/images.d.mts.map +1 -0
  443. package/resources/products/images.d.ts +4 -4
  444. package/resources/products/images.d.ts.map +1 -1
  445. package/resources/products/images.js +4 -7
  446. package/resources/products/images.js.map +1 -1
  447. package/resources/products/images.mjs +4 -7
  448. package/resources/products/images.mjs.map +1 -1
  449. package/resources/products/index.d.mts +3 -0
  450. package/resources/products/index.d.mts.map +1 -0
  451. package/resources/products/index.d.ts +1 -1
  452. package/resources/products/index.d.ts.map +1 -1
  453. package/resources/products/index.js +1 -2
  454. package/resources/products/index.js.map +1 -1
  455. package/resources/products/index.mjs +1 -1
  456. package/resources/products/index.mjs.map +1 -1
  457. package/resources/products/products.d.mts +535 -0
  458. package/resources/products/products.d.mts.map +1 -0
  459. package/resources/products/products.d.ts +13 -14
  460. package/resources/products/products.d.ts.map +1 -1
  461. package/resources/products/products.js +16 -44
  462. package/resources/products/products.js.map +1 -1
  463. package/resources/products/products.mjs +13 -18
  464. package/resources/products/products.mjs.map +1 -1
  465. package/resources/products.d.mts +2 -0
  466. package/resources/products.d.mts.map +1 -0
  467. package/resources/products.d.ts.map +1 -1
  468. package/resources/products.js +2 -15
  469. package/resources/products.js.map +1 -1
  470. package/resources/refunds.d.mts +145 -0
  471. package/resources/refunds.d.mts.map +1 -0
  472. package/resources/refunds.d.ts +9 -10
  473. package/resources/refunds.d.ts.map +1 -1
  474. package/resources/refunds.js +7 -14
  475. package/resources/refunds.js.map +1 -1
  476. package/resources/refunds.mjs +6 -12
  477. package/resources/refunds.mjs.map +1 -1
  478. package/resources/subscriptions.d.mts +626 -0
  479. package/resources/subscriptions.d.mts.map +1 -0
  480. package/resources/subscriptions.d.ts +14 -17
  481. package/resources/subscriptions.d.ts.map +1 -1
  482. package/resources/subscriptions.js +61 -32
  483. package/resources/subscriptions.js.map +1 -1
  484. package/resources/subscriptions.mjs +60 -29
  485. package/resources/subscriptions.mjs.map +1 -1
  486. package/resources/usage-events.d.mts +192 -0
  487. package/resources/usage-events.d.mts.map +1 -0
  488. package/resources/usage-events.d.ts +9 -10
  489. package/resources/usage-events.d.ts.map +1 -1
  490. package/resources/usage-events.js +42 -14
  491. package/resources/usage-events.js.map +1 -1
  492. package/resources/usage-events.mjs +41 -12
  493. package/resources/usage-events.mjs.map +1 -1
  494. package/resources/webhook-events.d.mts +52 -0
  495. package/resources/webhook-events.d.mts.map +1 -0
  496. package/resources/webhook-events.d.ts +1 -1
  497. package/resources/webhook-events.d.ts.map +1 -1
  498. package/resources/webhook-events.js +1 -1
  499. package/resources/webhook-events.js.map +1 -1
  500. package/resources/webhook-events.mjs +1 -1
  501. package/resources/webhooks/headers.d.mts +42 -0
  502. package/resources/webhooks/headers.d.mts.map +1 -0
  503. package/resources/webhooks/headers.d.ts +5 -4
  504. package/resources/webhooks/headers.d.ts.map +1 -1
  505. package/resources/webhooks/headers.js +8 -6
  506. package/resources/webhooks/headers.js.map +1 -1
  507. package/resources/webhooks/headers.mjs +8 -6
  508. package/resources/webhooks/headers.mjs.map +1 -1
  509. package/resources/webhooks/index.d.mts +3 -0
  510. package/resources/webhooks/index.d.mts.map +1 -0
  511. package/resources/webhooks/index.d.ts +1 -1
  512. package/resources/webhooks/index.d.ts.map +1 -1
  513. package/resources/webhooks/index.js +1 -2
  514. package/resources/webhooks/index.js.map +1 -1
  515. package/resources/webhooks/index.mjs +1 -1
  516. package/resources/webhooks/index.mjs.map +1 -1
  517. package/resources/webhooks/webhooks.d.mts +155 -0
  518. package/resources/webhooks/webhooks.d.mts.map +1 -0
  519. package/resources/webhooks/webhooks.d.ts +12 -13
  520. package/resources/webhooks/webhooks.d.ts.map +1 -1
  521. package/resources/webhooks/webhooks.js +20 -45
  522. package/resources/webhooks/webhooks.js.map +1 -1
  523. package/resources/webhooks/webhooks.mjs +17 -19
  524. package/resources/webhooks/webhooks.mjs.map +1 -1
  525. package/resources/webhooks.d.mts +2 -0
  526. package/resources/webhooks.d.mts.map +1 -0
  527. package/resources/webhooks.d.ts.map +1 -1
  528. package/resources/webhooks.js +2 -15
  529. package/resources/webhooks.js.map +1 -1
  530. package/resources.d.mts +2 -0
  531. package/resources.d.mts.map +1 -0
  532. package/resources.d.ts.map +1 -1
  533. package/resources.js +2 -15
  534. package/resources.js.map +1 -1
  535. package/src/api-promise.ts +2 -0
  536. package/src/client.ts +1206 -0
  537. package/src/core/README.md +3 -0
  538. package/src/core/api-promise.ts +92 -0
  539. package/src/core/error.ts +130 -0
  540. package/src/core/pagination.ts +218 -0
  541. package/src/core/resource.ts +11 -0
  542. package/src/core/uploads.ts +2 -0
  543. package/src/error.ts +2 -130
  544. package/src/index.ts +6 -658
  545. package/src/internal/README.md +3 -0
  546. package/src/internal/builtin-types.ts +93 -0
  547. package/src/internal/detect-platform.ts +196 -0
  548. package/src/internal/errors.ts +33 -0
  549. package/src/internal/headers.ts +97 -0
  550. package/src/internal/parse.ts +50 -0
  551. package/src/internal/request-options.ts +91 -0
  552. package/src/internal/shim-types.ts +26 -0
  553. package/src/internal/shims.ts +107 -0
  554. package/src/internal/to-file.ts +154 -0
  555. package/src/internal/types.ts +95 -0
  556. package/src/internal/uploads.ts +187 -0
  557. package/src/internal/utils/base64.ts +40 -0
  558. package/src/internal/utils/bytes.ts +32 -0
  559. package/src/internal/utils/env.ts +18 -0
  560. package/src/internal/utils/log.ts +126 -0
  561. package/src/internal/utils/path.ts +88 -0
  562. package/src/internal/utils/sleep.ts +3 -0
  563. package/src/internal/utils/uuid.ts +17 -0
  564. package/src/internal/utils/values.ts +105 -0
  565. package/src/internal/utils.ts +8 -0
  566. package/src/pagination.ts +2 -125
  567. package/src/resource.ts +2 -11
  568. package/src/resources/addons.ts +23 -30
  569. package/src/resources/brands.ts +12 -10
  570. package/src/resources/checkout-sessions.ts +7 -9
  571. package/src/resources/customers/customer-portal.ts +11 -22
  572. package/src/resources/customers/customers.ts +27 -32
  573. package/src/resources/customers/index.ts +4 -4
  574. package/src/resources/customers/wallets/index.ts +3 -3
  575. package/src/resources/customers/wallets/ledger-entries.ts +24 -33
  576. package/src/resources/customers/wallets/wallets.ts +10 -10
  577. package/src/resources/customers/wallets.ts +1 -1
  578. package/src/resources/customers.ts +1 -1
  579. package/src/resources/discounts.ts +27 -32
  580. package/src/resources/disputes.ts +19 -25
  581. package/src/resources/index.ts +42 -42
  582. package/src/resources/invoices/index.ts +2 -2
  583. package/src/resources/invoices/invoices.ts +3 -3
  584. package/src/resources/invoices/payments.ts +11 -9
  585. package/src/resources/invoices.ts +1 -1
  586. package/src/resources/license-key-instances.ts +24 -31
  587. package/src/resources/license-keys.ts +19 -28
  588. package/src/resources/licenses.ts +9 -13
  589. package/src/resources/meters.ts +25 -29
  590. package/src/resources/misc.ts +4 -3
  591. package/src/resources/payments.ts +26 -32
  592. package/src/resources/payouts.ts +14 -23
  593. package/src/resources/products/images.ts +9 -17
  594. package/src/resources/products/index.ts +3 -3
  595. package/src/resources/products/products.ts +37 -41
  596. package/src/resources/products.ts +1 -1
  597. package/src/resources/refunds.ts +20 -27
  598. package/src/resources/subscriptions.ts +44 -72
  599. package/src/resources/usage-events.ts +18 -26
  600. package/src/resources/webhook-events.ts +6 -6
  601. package/src/resources/webhooks/headers.ts +10 -7
  602. package/src/resources/webhooks/index.ts +3 -3
  603. package/src/resources/webhooks/webhooks.ts +25 -39
  604. package/src/resources/webhooks.ts +1 -1
  605. package/src/resources.ts +1 -1
  606. package/src/tsconfig.json +2 -2
  607. package/src/uploads.ts +2 -255
  608. package/src/version.ts +1 -1
  609. package/uploads.d.mts +2 -0
  610. package/uploads.d.mts.map +1 -0
  611. package/uploads.d.ts +1 -74
  612. package/uploads.d.ts.map +1 -1
  613. package/uploads.js +3 -168
  614. package/uploads.js.map +1 -1
  615. package/uploads.mjs +1 -157
  616. package/uploads.mjs.map +1 -1
  617. package/version.d.mts +2 -0
  618. package/version.d.mts.map +1 -0
  619. package/version.d.ts +1 -1
  620. package/version.d.ts.map +1 -1
  621. package/version.js +1 -1
  622. package/version.js.map +1 -1
  623. package/version.mjs +1 -1
  624. package/version.mjs.map +1 -1
  625. package/_shims/MultipartBody.d.ts +0 -9
  626. package/_shims/MultipartBody.d.ts.map +0 -1
  627. package/_shims/MultipartBody.js +0 -16
  628. package/_shims/MultipartBody.js.map +0 -1
  629. package/_shims/MultipartBody.mjs +0 -12
  630. package/_shims/MultipartBody.mjs.map +0 -1
  631. package/_shims/README.md +0 -46
  632. package/_shims/auto/runtime-bun.d.ts +0 -5
  633. package/_shims/auto/runtime-bun.d.ts.map +0 -1
  634. package/_shims/auto/runtime-bun.js +0 -21
  635. package/_shims/auto/runtime-bun.js.map +0 -1
  636. package/_shims/auto/runtime-bun.mjs +0 -2
  637. package/_shims/auto/runtime-bun.mjs.map +0 -1
  638. package/_shims/auto/runtime-node.d.ts +0 -5
  639. package/_shims/auto/runtime-node.d.ts.map +0 -1
  640. package/_shims/auto/runtime-node.js +0 -21
  641. package/_shims/auto/runtime-node.js.map +0 -1
  642. package/_shims/auto/runtime-node.mjs +0 -2
  643. package/_shims/auto/runtime-node.mjs.map +0 -1
  644. package/_shims/auto/runtime.d.ts +0 -5
  645. package/_shims/auto/runtime.d.ts.map +0 -1
  646. package/_shims/auto/runtime.js +0 -21
  647. package/_shims/auto/runtime.js.map +0 -1
  648. package/_shims/auto/runtime.mjs +0 -2
  649. package/_shims/auto/runtime.mjs.map +0 -1
  650. package/_shims/auto/types-node.d.ts +0 -5
  651. package/_shims/auto/types-node.d.ts.map +0 -1
  652. package/_shims/auto/types-node.js +0 -21
  653. package/_shims/auto/types-node.js.map +0 -1
  654. package/_shims/auto/types-node.mjs +0 -2
  655. package/_shims/auto/types-node.mjs.map +0 -1
  656. package/_shims/auto/types.d.ts +0 -101
  657. package/_shims/auto/types.js +0 -3
  658. package/_shims/auto/types.mjs +0 -3
  659. package/_shims/bun-runtime.d.ts +0 -6
  660. package/_shims/bun-runtime.d.ts.map +0 -1
  661. package/_shims/bun-runtime.js +0 -14
  662. package/_shims/bun-runtime.js.map +0 -1
  663. package/_shims/bun-runtime.mjs +0 -10
  664. package/_shims/bun-runtime.mjs.map +0 -1
  665. package/_shims/index.d.ts +0 -83
  666. package/_shims/index.js +0 -17
  667. package/_shims/index.mjs +0 -11
  668. package/_shims/manual-types.d.ts +0 -12
  669. package/_shims/manual-types.js +0 -3
  670. package/_shims/manual-types.mjs +0 -3
  671. package/_shims/node-runtime.d.ts +0 -3
  672. package/_shims/node-runtime.d.ts.map +0 -1
  673. package/_shims/node-runtime.js +0 -89
  674. package/_shims/node-runtime.js.map +0 -1
  675. package/_shims/node-runtime.mjs +0 -56
  676. package/_shims/node-runtime.mjs.map +0 -1
  677. package/_shims/node-types.d.ts +0 -42
  678. package/_shims/node-types.js +0 -3
  679. package/_shims/node-types.mjs +0 -3
  680. package/_shims/registry.d.ts +0 -37
  681. package/_shims/registry.d.ts.map +0 -1
  682. package/_shims/registry.js +0 -41
  683. package/_shims/registry.js.map +0 -1
  684. package/_shims/registry.mjs +0 -37
  685. package/_shims/registry.mjs.map +0 -1
  686. package/_shims/web-runtime.d.ts +0 -5
  687. package/_shims/web-runtime.d.ts.map +0 -1
  688. package/_shims/web-runtime.js +0 -78
  689. package/_shims/web-runtime.js.map +0 -1
  690. package/_shims/web-runtime.mjs +0 -71
  691. package/_shims/web-runtime.mjs.map +0 -1
  692. package/_shims/web-types.d.ts +0 -83
  693. package/_shims/web-types.js +0 -3
  694. package/_shims/web-types.mjs +0 -3
  695. package/core.d.ts +0 -255
  696. package/core.d.ts.map +0 -1
  697. package/core.js +0 -924
  698. package/core.js.map +0 -1
  699. package/core.mjs +0 -892
  700. package/core.mjs.map +0 -1
  701. package/shims/node.d.ts +0 -30
  702. package/shims/node.d.ts.map +0 -1
  703. package/shims/node.js +0 -31
  704. package/shims/node.js.map +0 -1
  705. package/shims/node.mjs +0 -5
  706. package/shims/node.mjs.map +0 -1
  707. package/shims/web.d.ts +0 -26
  708. package/shims/web.d.ts.map +0 -1
  709. package/shims/web.js +0 -31
  710. package/shims/web.js.map +0 -1
  711. package/shims/web.mjs +0 -5
  712. package/shims/web.mjs.map +0 -1
  713. package/src/_shims/MultipartBody.ts +0 -9
  714. package/src/_shims/README.md +0 -46
  715. package/src/_shims/auto/runtime-bun.ts +0 -4
  716. package/src/_shims/auto/runtime-node.ts +0 -4
  717. package/src/_shims/auto/runtime.ts +0 -4
  718. package/src/_shims/auto/types-node.ts +0 -4
  719. package/src/_shims/auto/types.d.ts +0 -101
  720. package/src/_shims/auto/types.js +0 -3
  721. package/src/_shims/auto/types.mjs +0 -3
  722. package/src/_shims/bun-runtime.ts +0 -14
  723. package/src/_shims/index.d.ts +0 -83
  724. package/src/_shims/index.js +0 -17
  725. package/src/_shims/index.mjs +0 -11
  726. package/src/_shims/manual-types.d.ts +0 -12
  727. package/src/_shims/manual-types.js +0 -3
  728. package/src/_shims/manual-types.mjs +0 -3
  729. package/src/_shims/node-runtime.ts +0 -81
  730. package/src/_shims/node-types.d.ts +0 -42
  731. package/src/_shims/node-types.js +0 -3
  732. package/src/_shims/node-types.mjs +0 -3
  733. package/src/_shims/registry.ts +0 -67
  734. package/src/_shims/web-runtime.ts +0 -103
  735. package/src/_shims/web-types.d.ts +0 -83
  736. package/src/_shims/web-types.js +0 -3
  737. package/src/_shims/web-types.mjs +0 -3
  738. package/src/core.ts +0 -1237
  739. package/src/shims/node.ts +0 -50
  740. package/src/shims/web.ts +0 -50
@@ -1,11 +1,12 @@
1
- import { APIResource } from "../../../resource.js";
2
- import * as Core from "../../../core.js";
1
+ import { APIResource } from "../../../core/resource.js";
3
2
  import * as MiscAPI from "../../misc.js";
4
3
  import * as LedgerEntriesAPI from "./ledger-entries.js";
5
4
  import { CustomerWalletTransaction, CustomerWalletTransactionsDefaultPageNumberPagination, LedgerEntries, LedgerEntryCreateParams, LedgerEntryListParams } from "./ledger-entries.js";
5
+ import { APIPromise } from "../../../core/api-promise.js";
6
+ import { RequestOptions } from "../../../internal/request-options.js";
6
7
  export declare class Wallets extends APIResource {
7
8
  ledgerEntries: LedgerEntriesAPI.LedgerEntries;
8
- list(customerId: string, options?: Core.RequestOptions): Core.APIPromise<WalletListResponse>;
9
+ list(customerID: string, options?: RequestOptions): APIPromise<WalletListResponse>;
9
10
  }
10
11
  export interface CustomerWallet {
11
12
  balance: number;
@@ -23,6 +24,6 @@ export interface WalletListResponse {
23
24
  }
24
25
  export declare namespace Wallets {
25
26
  export { type CustomerWallet as CustomerWallet, type WalletListResponse as WalletListResponse };
26
- export { LedgerEntries as LedgerEntries, type CustomerWalletTransaction as CustomerWalletTransaction, CustomerWalletTransactionsDefaultPageNumberPagination as CustomerWalletTransactionsDefaultPageNumberPagination, type LedgerEntryCreateParams as LedgerEntryCreateParams, type LedgerEntryListParams as LedgerEntryListParams, };
27
+ export { LedgerEntries as LedgerEntries, type CustomerWalletTransaction as CustomerWalletTransaction, type CustomerWalletTransactionsDefaultPageNumberPagination as CustomerWalletTransactionsDefaultPageNumberPagination, type LedgerEntryCreateParams as LedgerEntryCreateParams, type LedgerEntryListParams as LedgerEntryListParams, };
27
28
  }
28
29
  //# sourceMappingURL=wallets.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"wallets.d.ts","sourceRoot":"","sources":["../../../src/resources/customers/wallets/wallets.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,KAAK,OAAO,MAAM,YAAY,CAAC;AACtC,OAAO,KAAK,gBAAgB,MAAM,kBAAkB,CAAC;AACrD,OAAO,EACL,yBAAyB,EACzB,qDAAqD,EACrD,aAAa,EACb,uBAAuB,EACvB,qBAAqB,EACtB,MAAM,kBAAkB,CAAC;AAE1B,qBAAa,OAAQ,SAAQ,WAAW;IACtC,aAAa,EAAE,gBAAgB,CAAC,aAAa,CAAoD;IAEjG,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC;CAG7F;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,MAAM,CAAC;IAEhB,UAAU,EAAE,MAAM,CAAC;IAEnB,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC;IAE3B,WAAW,EAAE,MAAM,CAAC;IAEpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;IAE7B;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAMD,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EAAE,KAAK,cAAc,IAAI,cAAc,EAAE,KAAK,kBAAkB,IAAI,kBAAkB,EAAE,CAAC;IAEhG,OAAO,EACL,aAAa,IAAI,aAAa,EAC9B,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,qDAAqD,IAAI,qDAAqD,EAC9G,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,GACpD,CAAC;CACH"}
1
+ {"version":3,"file":"wallets.d.ts","sourceRoot":"","sources":["../../../src/resources/customers/wallets/wallets.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,OAAO;OACZ,KAAK,gBAAgB;OACrB,EACL,yBAAyB,EACzB,qDAAqD,EACrD,aAAa,EACb,uBAAuB,EACvB,qBAAqB,EACtB;OACM,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC,aAAa,EAAE,gBAAgB,CAAC,aAAa,CAAoD;IAEjG,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,kBAAkB,CAAC;CAGnF;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,MAAM,CAAC;IAEhB,UAAU,EAAE,MAAM,CAAC;IAEnB,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC;IAE3B,WAAW,EAAE,MAAM,CAAC;IAEpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;IAE7B;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAID,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EAAE,KAAK,cAAc,IAAI,cAAc,EAAE,KAAK,kBAAkB,IAAI,kBAAkB,EAAE,CAAC;IAEhG,OAAO,EACL,aAAa,IAAI,aAAa,EAC9B,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,qDAAqD,IAAI,qDAAqD,EACnH,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,GACpD,CAAC;CACH"}
@@ -1,44 +1,21 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
- Object.defineProperty(o, "default", { enumerable: true, value: v });
16
- }) : function(o, v) {
17
- o["default"] = v;
18
- });
19
- var __importStar = (this && this.__importStar) || function (mod) {
20
- if (mod && mod.__esModule) return mod;
21
- var result = {};
22
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
23
- __setModuleDefault(result, mod);
24
- return result;
25
- };
26
3
  Object.defineProperty(exports, "__esModule", { value: true });
27
4
  exports.Wallets = void 0;
28
- const resource_1 = require("../../../resource.js");
29
- const LedgerEntriesAPI = __importStar(require("./ledger-entries.js"));
5
+ const tslib_1 = require("../../../internal/tslib.js");
6
+ const resource_1 = require("../../../core/resource.js");
7
+ const LedgerEntriesAPI = tslib_1.__importStar(require("./ledger-entries.js"));
30
8
  const ledger_entries_1 = require("./ledger-entries.js");
9
+ const path_1 = require("../../../internal/utils/path.js");
31
10
  class Wallets extends resource_1.APIResource {
32
11
  constructor() {
33
12
  super(...arguments);
34
13
  this.ledgerEntries = new LedgerEntriesAPI.LedgerEntries(this._client);
35
14
  }
36
- list(customerId, options) {
37
- return this._client.get(`/customers/${customerId}/wallets`, options);
15
+ list(customerID, options) {
16
+ return this._client.get((0, path_1.path) `/customers/${customerID}/wallets`, options);
38
17
  }
39
18
  }
40
19
  exports.Wallets = Wallets;
41
20
  Wallets.LedgerEntries = ledger_entries_1.LedgerEntries;
42
- Wallets.CustomerWalletTransactionsDefaultPageNumberPagination =
43
- ledger_entries_1.CustomerWalletTransactionsDefaultPageNumberPagination;
44
21
  //# sourceMappingURL=wallets.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"wallets.js","sourceRoot":"","sources":["../../../src/resources/customers/wallets/wallets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtF,mDAAgD;AAGhD,sEAAqD;AACrD,wDAM0B;AAE1B,MAAa,OAAQ,SAAQ,sBAAW;IAAxC;;QACE,kBAAa,GAAmC,IAAI,gBAAgB,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAKnG,CAAC;IAHC,IAAI,CAAC,UAAkB,EAAE,OAA6B;QACpD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,UAAU,UAAU,EAAE,OAAO,CAAC,CAAC;IACvE,CAAC;CACF;AAND,0BAMC;AAuBD,OAAO,CAAC,aAAa,GAAG,8BAAa,CAAC;AACtC,OAAO,CAAC,qDAAqD;IAC3D,sEAAqD,CAAC"}
1
+ {"version":3,"file":"wallets.js","sourceRoot":"","sources":["../../../src/resources/customers/wallets/wallets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,wDAAqD;AAErD,8EAAqD;AACrD,wDAM0B;AAG1B,0DAAoD;AAEpD,MAAa,OAAQ,SAAQ,sBAAW;IAAxC;;QACE,kBAAa,GAAmC,IAAI,gBAAgB,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAKnG,CAAC;IAHC,IAAI,CAAC,UAAkB,EAAE,OAAwB;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,cAAc,UAAU,UAAU,EAAE,OAAO,CAAC,CAAC;IAC3E,CAAC;CACF;AAND,0BAMC;AAuBD,OAAO,CAAC,aAAa,GAAG,8BAAa,CAAC"}
@@ -1,17 +1,16 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { APIResource } from "../../../resource.mjs";
2
+ import { APIResource } from "../../../core/resource.mjs";
3
3
  import * as LedgerEntriesAPI from "./ledger-entries.mjs";
4
- import { CustomerWalletTransactionsDefaultPageNumberPagination, LedgerEntries, } from "./ledger-entries.mjs";
4
+ import { LedgerEntries, } from "./ledger-entries.mjs";
5
+ import { path } from "../../../internal/utils/path.mjs";
5
6
  export class Wallets extends APIResource {
6
7
  constructor() {
7
8
  super(...arguments);
8
9
  this.ledgerEntries = new LedgerEntriesAPI.LedgerEntries(this._client);
9
10
  }
10
- list(customerId, options) {
11
- return this._client.get(`/customers/${customerId}/wallets`, options);
11
+ list(customerID, options) {
12
+ return this._client.get(path `/customers/${customerID}/wallets`, options);
12
13
  }
13
14
  }
14
15
  Wallets.LedgerEntries = LedgerEntries;
15
- Wallets.CustomerWalletTransactionsDefaultPageNumberPagination =
16
- CustomerWalletTransactionsDefaultPageNumberPagination;
17
16
  //# sourceMappingURL=wallets.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"wallets.mjs","sourceRoot":"","sources":["../../../src/resources/customers/wallets/wallets.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAGf,KAAK,gBAAgB;OACrB,EAEL,qDAAqD,EACrD,aAAa,GAGd;AAED,MAAM,OAAO,OAAQ,SAAQ,WAAW;IAAxC;;QACE,kBAAa,GAAmC,IAAI,gBAAgB,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAKnG,CAAC;IAHC,IAAI,CAAC,UAAkB,EAAE,OAA6B;QACpD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,UAAU,UAAU,EAAE,OAAO,CAAC,CAAC;IACvE,CAAC;CACF;AAuBD,OAAO,CAAC,aAAa,GAAG,aAAa,CAAC;AACtC,OAAO,CAAC,qDAAqD;IAC3D,qDAAqD,CAAC"}
1
+ {"version":3,"file":"wallets.mjs","sourceRoot":"","sources":["../../../src/resources/customers/wallets/wallets.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,KAAK,gBAAgB;OACrB,EAGL,aAAa,GAGd;OAGM,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,OAAQ,SAAQ,WAAW;IAAxC;;QACE,kBAAa,GAAmC,IAAI,gBAAgB,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAKnG,CAAC;IAHC,IAAI,CAAC,UAAkB,EAAE,OAAwB;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,cAAc,UAAU,UAAU,EAAE,OAAO,CAAC,CAAC;IAC3E,CAAC;CACF;AAuBD,OAAO,CAAC,aAAa,GAAG,aAAa,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./wallets/index.mjs";
2
+ //# sourceMappingURL=wallets.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wallets.d.mts","sourceRoot":"","sources":["../../src/resources/customers/wallets.ts"],"names":[],"mappings":""}
@@ -1 +1 @@
1
- {"version":3,"file":"wallets.d.ts","sourceRoot":"","sources":["../../src/resources/customers/wallets.ts"],"names":[],"mappings":"AAEA,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"wallets.d.ts","sourceRoot":"","sources":["../../src/resources/customers/wallets.ts"],"names":[],"mappings":""}
@@ -1,19 +1,6 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
- };
17
3
  Object.defineProperty(exports, "__esModule", { value: true });
18
- __exportStar(require("./wallets/index.js"), exports);
4
+ const tslib_1 = require("../../internal/tslib.js");
5
+ tslib_1.__exportStar(require("./wallets/index.js"), exports);
19
6
  //# sourceMappingURL=wallets.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"wallets.js","sourceRoot":"","sources":["../../src/resources/customers/wallets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;AAEtF,qDAAgC"}
1
+ {"version":3,"file":"wallets.js","sourceRoot":"","sources":["../../src/resources/customers/wallets.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6DAAgC"}
@@ -0,0 +1,2 @@
1
+ export * from "./customers/index.mjs";
2
+ //# sourceMappingURL=customers.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customers.d.mts","sourceRoot":"","sources":["../src/resources/customers.ts"],"names":[],"mappings":""}
@@ -1 +1 @@
1
- {"version":3,"file":"customers.d.ts","sourceRoot":"","sources":["../src/resources/customers.ts"],"names":[],"mappings":"AAEA,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"customers.d.ts","sourceRoot":"","sources":["../src/resources/customers.ts"],"names":[],"mappings":""}
@@ -1,19 +1,6 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
- };
17
3
  Object.defineProperty(exports, "__esModule", { value: true });
18
- __exportStar(require("./customers/index.js"), exports);
4
+ const tslib_1 = require("../internal/tslib.js");
5
+ tslib_1.__exportStar(require("./customers/index.js"), exports);
19
6
  //# sourceMappingURL=customers.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"customers.js","sourceRoot":"","sources":["../src/resources/customers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;AAEtF,uDAAkC"}
1
+ {"version":3,"file":"customers.js","sourceRoot":"","sources":["../src/resources/customers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,+DAAkC"}
@@ -0,0 +1,168 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import { APIPromise } from "../core/api-promise.mjs";
3
+ import { DefaultPageNumberPagination, type DefaultPageNumberPaginationParams, PagePromise } from "../core/pagination.mjs";
4
+ import { RequestOptions } from "../internal/request-options.mjs";
5
+ export declare class Discounts extends APIResource {
6
+ /**
7
+ * POST /discounts If `code` is omitted or empty, a random 16-char uppercase code
8
+ * is generated.
9
+ */
10
+ create(body: DiscountCreateParams, options?: RequestOptions): APIPromise<Discount>;
11
+ /**
12
+ * GET /discounts/{discount_id}
13
+ */
14
+ retrieve(discountID: string, options?: RequestOptions): APIPromise<Discount>;
15
+ /**
16
+ * PATCH /discounts/{discount_id}
17
+ */
18
+ update(discountID: string, body: DiscountUpdateParams, options?: RequestOptions): APIPromise<Discount>;
19
+ /**
20
+ * GET /discounts
21
+ */
22
+ list(query?: DiscountListParams | null | undefined, options?: RequestOptions): PagePromise<DiscountsDefaultPageNumberPagination, Discount>;
23
+ /**
24
+ * DELETE /discounts/{discount_id}
25
+ */
26
+ delete(discountID: string, options?: RequestOptions): APIPromise<void>;
27
+ }
28
+ export type DiscountsDefaultPageNumberPagination = DefaultPageNumberPagination<Discount>;
29
+ export interface Discount {
30
+ /**
31
+ * The discount amount.
32
+ *
33
+ * - If `discount_type` is `percentage`, this is in **basis points** (e.g., 540 =>
34
+ * 5.4%).
35
+ * - Otherwise, this is **USD cents** (e.g., 100 => `$1.00`).
36
+ */
37
+ amount: number;
38
+ /**
39
+ * The business this discount belongs to.
40
+ */
41
+ business_id: string;
42
+ /**
43
+ * The discount code (up to 16 chars).
44
+ */
45
+ code: string;
46
+ /**
47
+ * Timestamp when the discount is created
48
+ */
49
+ created_at: string;
50
+ /**
51
+ * The unique discount ID
52
+ */
53
+ discount_id: string;
54
+ /**
55
+ * List of product IDs to which this discount is restricted.
56
+ */
57
+ restricted_to: Array<string>;
58
+ /**
59
+ * How many times this discount has been used.
60
+ */
61
+ times_used: number;
62
+ /**
63
+ * The type of discount, e.g. `percentage`, `flat`, or `flat_per_unit`.
64
+ */
65
+ type: DiscountType;
66
+ /**
67
+ * Optional date/time after which discount is expired.
68
+ */
69
+ expires_at?: string | null;
70
+ /**
71
+ * Name for the Discount
72
+ */
73
+ name?: string | null;
74
+ /**
75
+ * Number of subscription billing cycles this discount is valid for. If not
76
+ * provided, the discount will be applied indefinitely to all recurring payments
77
+ * related to the subscription.
78
+ */
79
+ subscription_cycles?: number | null;
80
+ /**
81
+ * Usage limit for this discount, if any.
82
+ */
83
+ usage_limit?: number | null;
84
+ }
85
+ export type DiscountType = 'percentage';
86
+ export interface DiscountCreateParams {
87
+ /**
88
+ * The discount amount.
89
+ *
90
+ * - If `discount_type` is **not** `percentage`, `amount` is in **USD cents**. For
91
+ * example, `100` means `$1.00`. Only USD is allowed.
92
+ * - If `discount_type` **is** `percentage`, `amount` is in **basis points**. For
93
+ * example, `540` means `5.4%`.
94
+ *
95
+ * Must be at least 1.
96
+ */
97
+ amount: number;
98
+ /**
99
+ * The discount type (e.g. `percentage`, `flat`, or `flat_per_unit`).
100
+ */
101
+ type: DiscountType;
102
+ /**
103
+ * Optionally supply a code (will be uppercased).
104
+ *
105
+ * - Must be at least 3 characters if provided.
106
+ * - If omitted, a random 16-character code is generated.
107
+ */
108
+ code?: string | null;
109
+ /**
110
+ * When the discount expires, if ever.
111
+ */
112
+ expires_at?: string | null;
113
+ name?: string | null;
114
+ /**
115
+ * List of product IDs to restrict usage (if any).
116
+ */
117
+ restricted_to?: Array<string> | null;
118
+ /**
119
+ * Number of subscription billing cycles this discount is valid for. If not
120
+ * provided, the discount will be applied indefinitely to all recurring payments
121
+ * related to the subscription.
122
+ */
123
+ subscription_cycles?: number | null;
124
+ /**
125
+ * How many times this discount can be used (if any). Must be >= 1 if provided.
126
+ */
127
+ usage_limit?: number | null;
128
+ }
129
+ export interface DiscountUpdateParams {
130
+ /**
131
+ * If present, update the discount amount:
132
+ *
133
+ * - If `discount_type` is `percentage`, this represents **basis points** (e.g.,
134
+ * `540` = `5.4%`).
135
+ * - Otherwise, this represents **USD cents** (e.g., `100` = `$1.00`).
136
+ *
137
+ * Must be at least 1 if provided.
138
+ */
139
+ amount?: number | null;
140
+ /**
141
+ * If present, update the discount code (uppercase).
142
+ */
143
+ code?: string | null;
144
+ expires_at?: string | null;
145
+ name?: string | null;
146
+ /**
147
+ * If present, replaces all restricted product IDs with this new set. To remove all
148
+ * restrictions, send empty array
149
+ */
150
+ restricted_to?: Array<string> | null;
151
+ /**
152
+ * Number of subscription billing cycles this discount is valid for. If not
153
+ * provided, the discount will be applied indefinitely to all recurring payments
154
+ * related to the subscription.
155
+ */
156
+ subscription_cycles?: number | null;
157
+ /**
158
+ * If present, update the discount type.
159
+ */
160
+ type?: DiscountType | null;
161
+ usage_limit?: number | null;
162
+ }
163
+ export interface DiscountListParams extends DefaultPageNumberPaginationParams {
164
+ }
165
+ export declare namespace Discounts {
166
+ export { type Discount as Discount, type DiscountType as DiscountType, type DiscountsDefaultPageNumberPagination as DiscountsDefaultPageNumberPagination, type DiscountCreateParams as DiscountCreateParams, type DiscountUpdateParams as DiscountUpdateParams, type DiscountListParams as DiscountListParams, };
167
+ }
168
+ //# sourceMappingURL=discounts.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"discounts.d.mts","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":"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"}
@@ -1,32 +1,31 @@
1
- import { APIResource } from "../resource.js";
2
- import * as Core from "../core.js";
3
- import { DefaultPageNumberPagination, type DefaultPageNumberPaginationParams } from "../pagination.js";
1
+ import { APIResource } from "../core/resource.js";
2
+ import { APIPromise } from "../core/api-promise.js";
3
+ import { DefaultPageNumberPagination, type DefaultPageNumberPaginationParams, PagePromise } from "../core/pagination.js";
4
+ import { RequestOptions } from "../internal/request-options.js";
4
5
  export declare class Discounts extends APIResource {
5
6
  /**
6
7
  * POST /discounts If `code` is omitted or empty, a random 16-char uppercase code
7
8
  * is generated.
8
9
  */
9
- create(body: DiscountCreateParams, options?: Core.RequestOptions): Core.APIPromise<Discount>;
10
+ create(body: DiscountCreateParams, options?: RequestOptions): APIPromise<Discount>;
10
11
  /**
11
12
  * GET /discounts/{discount_id}
12
13
  */
13
- retrieve(discountId: string, options?: Core.RequestOptions): Core.APIPromise<Discount>;
14
+ retrieve(discountID: string, options?: RequestOptions): APIPromise<Discount>;
14
15
  /**
15
16
  * PATCH /discounts/{discount_id}
16
17
  */
17
- update(discountId: string, body: DiscountUpdateParams, options?: Core.RequestOptions): Core.APIPromise<Discount>;
18
+ update(discountID: string, body: DiscountUpdateParams, options?: RequestOptions): APIPromise<Discount>;
18
19
  /**
19
20
  * GET /discounts
20
21
  */
21
- list(query?: DiscountListParams, options?: Core.RequestOptions): Core.PagePromise<DiscountsDefaultPageNumberPagination, Discount>;
22
- list(options?: Core.RequestOptions): Core.PagePromise<DiscountsDefaultPageNumberPagination, Discount>;
22
+ list(query?: DiscountListParams | null | undefined, options?: RequestOptions): PagePromise<DiscountsDefaultPageNumberPagination, Discount>;
23
23
  /**
24
24
  * DELETE /discounts/{discount_id}
25
25
  */
26
- delete(discountId: string, options?: Core.RequestOptions): Core.APIPromise<void>;
27
- }
28
- export declare class DiscountsDefaultPageNumberPagination extends DefaultPageNumberPagination<Discount> {
26
+ delete(discountID: string, options?: RequestOptions): APIPromise<void>;
29
27
  }
28
+ export type DiscountsDefaultPageNumberPagination = DefaultPageNumberPagination<Discount>;
30
29
  export interface Discount {
31
30
  /**
32
31
  * The discount amount.
@@ -164,6 +163,6 @@ export interface DiscountUpdateParams {
164
163
  export interface DiscountListParams extends DefaultPageNumberPaginationParams {
165
164
  }
166
165
  export declare namespace Discounts {
167
- export { type Discount as Discount, type DiscountType as DiscountType, DiscountsDefaultPageNumberPagination as DiscountsDefaultPageNumberPagination, type DiscountCreateParams as DiscountCreateParams, type DiscountUpdateParams as DiscountUpdateParams, type DiscountListParams as DiscountListParams, };
166
+ export { type Discount as Discount, type DiscountType as DiscountType, type DiscountsDefaultPageNumberPagination as DiscountsDefaultPageNumberPagination, type DiscountCreateParams as DiscountCreateParams, type DiscountUpdateParams as DiscountUpdateParams, type DiscountListParams as DiscountListParams, };
168
167
  }
169
168
  //# sourceMappingURL=discounts.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"discounts.d.ts","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"discounts.d.ts","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":"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"}
@@ -1,10 +1,11 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.DiscountsDefaultPageNumberPagination = exports.Discounts = void 0;
5
- const resource_1 = require("../resource.js");
6
- const core_1 = require("../core.js");
7
- const pagination_1 = require("../pagination.js");
4
+ exports.Discounts = void 0;
5
+ const resource_1 = require("../core/resource.js");
6
+ const pagination_1 = require("../core/pagination.js");
7
+ const headers_1 = require("../internal/headers.js");
8
+ const path_1 = require("../internal/utils/path.js");
8
9
  class Discounts extends resource_1.APIResource {
9
10
  /**
10
11
  * POST /discounts If `code` is omitted or empty, a random 16-char uppercase code
@@ -16,34 +17,33 @@ class Discounts extends resource_1.APIResource {
16
17
  /**
17
18
  * GET /discounts/{discount_id}
18
19
  */
19
- retrieve(discountId, options) {
20
- return this._client.get(`/discounts/${discountId}`, options);
20
+ retrieve(discountID, options) {
21
+ return this._client.get((0, path_1.path) `/discounts/${discountID}`, options);
21
22
  }
22
23
  /**
23
24
  * PATCH /discounts/{discount_id}
24
25
  */
25
- update(discountId, body, options) {
26
- return this._client.patch(`/discounts/${discountId}`, { body, ...options });
26
+ update(discountID, body, options) {
27
+ return this._client.patch((0, path_1.path) `/discounts/${discountID}`, { body, ...options });
27
28
  }
29
+ /**
30
+ * GET /discounts
31
+ */
28
32
  list(query = {}, options) {
29
- if ((0, core_1.isRequestOptions)(query)) {
30
- return this.list({}, query);
31
- }
32
- return this._client.getAPIList('/discounts', DiscountsDefaultPageNumberPagination, { query, ...options });
33
+ return this._client.getAPIList('/discounts', (pagination_1.DefaultPageNumberPagination), {
34
+ query,
35
+ ...options,
36
+ });
33
37
  }
34
38
  /**
35
39
  * DELETE /discounts/{discount_id}
36
40
  */
37
- delete(discountId, options) {
38
- return this._client.delete(`/discounts/${discountId}`, {
41
+ delete(discountID, options) {
42
+ return this._client.delete((0, path_1.path) `/discounts/${discountID}`, {
39
43
  ...options,
40
- headers: { Accept: '*/*', ...options?.headers },
44
+ headers: (0, headers_1.buildHeaders)([{ Accept: '*/*' }, options?.headers]),
41
45
  });
42
46
  }
43
47
  }
44
48
  exports.Discounts = Discounts;
45
- class DiscountsDefaultPageNumberPagination extends pagination_1.DefaultPageNumberPagination {
46
- }
47
- exports.DiscountsDefaultPageNumberPagination = DiscountsDefaultPageNumberPagination;
48
- Discounts.DiscountsDefaultPageNumberPagination = DiscountsDefaultPageNumberPagination;
49
49
  //# sourceMappingURL=discounts.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"discounts.js","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6CAA0C;AAC1C,qCAA2C;AAE3C,iDAAoG;AAEpG,MAAa,SAAU,SAAQ,sBAAW;IACxC;;;OAGG;IACH,MAAM,CAAC,IAA0B,EAAE,OAA6B;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,UAAkB,EAAE,OAA6B;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,UAAkB,EAClB,IAA0B,EAC1B,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,cAAc,UAAU,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC9E,CAAC;IAUD,IAAI,CACF,QAAkD,EAAE,EACpD,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,EAAE,oCAAoC,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5G,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,OAA6B;QACtD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,cAAc,UAAU,EAAE,EAAE;YACrD,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAChD,CAAC,CAAC;IACL,CAAC;CACF;AAtDD,8BAsDC;AAED,MAAa,oCAAqC,SAAQ,wCAAqC;CAAG;AAAlG,oFAAkG;AAuKlG,SAAS,CAAC,oCAAoC,GAAG,oCAAoC,CAAC"}
1
+ {"version":3,"file":"discounts.js","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAE/C,sDAI4B;AAC5B,oDAAmD;AAEnD,oDAA8C;AAE9C,MAAa,SAAU,SAAQ,sBAAW;IACxC;;;OAGG;IACH,MAAM,CAAC,IAA0B,EAAE,OAAwB;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,UAAkB,EAAE,OAAwB;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,cAAc,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IACnE,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,IAA0B,EAAE,OAAwB;QAC7E,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,cAAc,UAAU,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClF,CAAC;IAED;;OAEG;IACH,IAAI,CACF,QAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,EAAE,CAAA,wCAAqC,CAAA,EAAE;YAClF,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,cAAc,UAAU,EAAE,EAAE;YACzD,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;CACF;AA7CD,8BA6CC"}
@@ -1,7 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { APIResource } from "../resource.mjs";
3
- import { isRequestOptions } from "../core.mjs";
4
- import { DefaultPageNumberPagination } from "../pagination.mjs";
2
+ import { APIResource } from "../core/resource.mjs";
3
+ import { DefaultPageNumberPagination, } from "../core/pagination.mjs";
4
+ import { buildHeaders } from "../internal/headers.mjs";
5
+ import { path } from "../internal/utils/path.mjs";
5
6
  export class Discounts extends APIResource {
6
7
  /**
7
8
  * POST /discounts If `code` is omitted or empty, a random 16-char uppercase code
@@ -13,32 +14,32 @@ export class Discounts extends APIResource {
13
14
  /**
14
15
  * GET /discounts/{discount_id}
15
16
  */
16
- retrieve(discountId, options) {
17
- return this._client.get(`/discounts/${discountId}`, options);
17
+ retrieve(discountID, options) {
18
+ return this._client.get(path `/discounts/${discountID}`, options);
18
19
  }
19
20
  /**
20
21
  * PATCH /discounts/{discount_id}
21
22
  */
22
- update(discountId, body, options) {
23
- return this._client.patch(`/discounts/${discountId}`, { body, ...options });
23
+ update(discountID, body, options) {
24
+ return this._client.patch(path `/discounts/${discountID}`, { body, ...options });
24
25
  }
26
+ /**
27
+ * GET /discounts
28
+ */
25
29
  list(query = {}, options) {
26
- if (isRequestOptions(query)) {
27
- return this.list({}, query);
28
- }
29
- return this._client.getAPIList('/discounts', DiscountsDefaultPageNumberPagination, { query, ...options });
30
+ return this._client.getAPIList('/discounts', (DefaultPageNumberPagination), {
31
+ query,
32
+ ...options,
33
+ });
30
34
  }
31
35
  /**
32
36
  * DELETE /discounts/{discount_id}
33
37
  */
34
- delete(discountId, options) {
35
- return this._client.delete(`/discounts/${discountId}`, {
38
+ delete(discountID, options) {
39
+ return this._client.delete(path `/discounts/${discountID}`, {
36
40
  ...options,
37
- headers: { Accept: '*/*', ...options?.headers },
41
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
38
42
  });
39
43
  }
40
44
  }
41
- export class DiscountsDefaultPageNumberPagination extends DefaultPageNumberPagination {
42
- }
43
- Discounts.DiscountsDefaultPageNumberPagination = DiscountsDefaultPageNumberPagination;
44
45
  //# sourceMappingURL=discounts.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"discounts.mjs","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,EAAE,2BAA2B,EAA0C;AAE9E,MAAM,OAAO,SAAU,SAAQ,WAAW;IACxC;;;OAGG;IACH,MAAM,CAAC,IAA0B,EAAE,OAA6B;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,UAAkB,EAAE,OAA6B;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,UAAkB,EAClB,IAA0B,EAC1B,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,cAAc,UAAU,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC9E,CAAC;IAUD,IAAI,CACF,QAAkD,EAAE,EACpD,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,EAAE,oCAAoC,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5G,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,OAA6B;QACtD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,cAAc,UAAU,EAAE,EAAE;YACrD,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAChD,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,oCAAqC,SAAQ,2BAAqC;CAAG;AAuKlG,SAAS,CAAC,oCAAoC,GAAG,oCAAoC,CAAC"}
1
+ {"version":3,"file":"discounts.mjs","sourceRoot":"","sources":["../src/resources/discounts.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EACL,2BAA2B,GAG5B;OACM,EAAE,YAAY,EAAE;OAEhB,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,SAAU,SAAQ,WAAW;IACxC;;;OAGG;IACH,MAAM,CAAC,IAA0B,EAAE,OAAwB;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,UAAkB,EAAE,OAAwB;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,cAAc,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IACnE,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,IAA0B,EAAE,OAAwB;QAC7E,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,cAAc,UAAU,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClF,CAAC;IAED;;OAEG;IACH,IAAI,CACF,QAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,EAAE,CAAA,2BAAqC,CAAA,EAAE;YAClF,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,cAAc,UAAU,EAAE,EAAE;YACzD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF"}