mangopay4-nodejs-sdk 1.64.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 (353) hide show
  1. package/.github/workflows/node.js.yml +32 -0
  2. package/.github/workflows/npm-publish.yml +26 -0
  3. package/.jshintrc +16 -0
  4. package/CHANGELOG.md +946 -0
  5. package/LICENSE +21 -0
  6. package/README.md +179 -0
  7. package/docs/BankAccounts.md +35 -0
  8. package/docs/BankingAliases.md +108 -0
  9. package/docs/CardPreAuthorizations.md +55 -0
  10. package/docs/CardRegistrations.md +55 -0
  11. package/docs/Cards.md +82 -0
  12. package/docs/Clients.md +142 -0
  13. package/docs/DisputeDocuments.md +53 -0
  14. package/docs/Disputes.md +292 -0
  15. package/docs/Events.md +23 -0
  16. package/docs/Hooks.md +68 -0
  17. package/docs/Idempotency.md +11 -0
  18. package/docs/KycDocuments.md +52 -0
  19. package/docs/Mandates.md +125 -0
  20. package/docs/OptionsHelper.md +32 -0
  21. package/docs/PayIns.md +72 -0
  22. package/docs/PayOuts.md +55 -0
  23. package/docs/README.md +131 -0
  24. package/docs/Refunds.md +25 -0
  25. package/docs/Reports.md +63 -0
  26. package/docs/Repudiations.md +25 -0
  27. package/docs/Responses.md +33 -0
  28. package/docs/Transfers.md +72 -0
  29. package/docs/UboDeclarations.md +70 -0
  30. package/docs/Users.md +322 -0
  31. package/docs/Wallets.md +70 -0
  32. package/docs/templates/class.mustache +11 -0
  33. package/docs/templates/file.mustache +53 -0
  34. package/docs/templates/function.mustache +33 -0
  35. package/docs/templates/index.mustache +26 -0
  36. package/docs/templates/overview.mustache +1 -0
  37. package/examples/createUsers.js +112 -0
  38. package/examples/createWallet.js +28 -0
  39. package/examples/failedRequest.js +20 -0
  40. package/examples/getBankAccounts.js +29 -0
  41. package/examples/getUserEmoney.js +16 -0
  42. package/examples/getUsers.js +32 -0
  43. package/examples/readResponseHeaders.js +42 -0
  44. package/index.js +1 -0
  45. package/lib/Model.js +58 -0
  46. package/lib/api.js +467 -0
  47. package/lib/apiMethods.js +270 -0
  48. package/lib/config.js +57 -0
  49. package/lib/log.js +9 -0
  50. package/lib/mangopay.js +8 -0
  51. package/lib/models/Address.js +32 -0
  52. package/lib/models/BankAccount.js +45 -0
  53. package/lib/models/BankAccountDetails.js +7 -0
  54. package/lib/models/BankAccountDetailsCA.js +12 -0
  55. package/lib/models/BankAccountDetailsGB.js +10 -0
  56. package/lib/models/BankAccountDetailsIBAN.js +10 -0
  57. package/lib/models/BankAccountDetailsOTHER.js +16 -0
  58. package/lib/models/BankAccountDetailsUS.js +14 -0
  59. package/lib/models/BankAccountType.js +8 -0
  60. package/lib/models/BankingAlias.js +37 -0
  61. package/lib/models/BankingAliasIBAN.js +27 -0
  62. package/lib/models/Billing.js +14 -0
  63. package/lib/models/BinData.js +16 -0
  64. package/lib/models/Birthplace.js +10 -0
  65. package/lib/models/BrowserInfo.js +15 -0
  66. package/lib/models/Card.js +19 -0
  67. package/lib/models/CardInfo.js +32 -0
  68. package/lib/models/CardPreAuthorization.js +144 -0
  69. package/lib/models/CardRegistration.js +29 -0
  70. package/lib/models/CardValidation.js +19 -0
  71. package/lib/models/CategorizeUserLegal.js +15 -0
  72. package/lib/models/CategorizeUserNatural.js +18 -0
  73. package/lib/models/Check.js +13 -0
  74. package/lib/models/CheckData.js +8 -0
  75. package/lib/models/Client.js +62 -0
  76. package/lib/models/ClientWallet.js +28 -0
  77. package/lib/models/Conversion.js +19 -0
  78. package/lib/models/ConversionRate.js +10 -0
  79. package/lib/models/CountryAuthorization.js +12 -0
  80. package/lib/models/DebitedBankAccount.js +15 -0
  81. package/lib/models/DeclaredUbo.js +29 -0
  82. package/lib/models/DeclaredUboStatus.js +17 -0
  83. package/lib/models/Deposit.js +29 -0
  84. package/lib/models/Dispute.js +46 -0
  85. package/lib/models/DisputeDocument.js +10 -0
  86. package/lib/models/DisputeDocumentPage.js +12 -0
  87. package/lib/models/DisputeReason.js +11 -0
  88. package/lib/models/Document.js +12 -0
  89. package/lib/models/DocumentPageConsult.js +17 -0
  90. package/lib/models/EMoney.js +30 -0
  91. package/lib/models/EntityBase.js +70 -0
  92. package/lib/models/Hook.js +19 -0
  93. package/lib/models/IdempotencyResponse.js +11 -0
  94. package/lib/models/IdentityVerification.js +12 -0
  95. package/lib/models/KycDocument.js +11 -0
  96. package/lib/models/KycDocumentStatus.js +7 -0
  97. package/lib/models/KycDocumentType.js +7 -0
  98. package/lib/models/KycPage.js +12 -0
  99. package/lib/models/LegalPersonType.js +7 -0
  100. package/lib/models/LegalRepresentative.js +16 -0
  101. package/lib/models/Mandate.js +69 -0
  102. package/lib/models/MandateStatus.js +7 -0
  103. package/lib/models/Money.js +16 -0
  104. package/lib/models/PayByBankSupportedBank.js +7 -0
  105. package/lib/models/PayIn.js +36 -0
  106. package/lib/models/PayInExecutionDetails.js +7 -0
  107. package/lib/models/PayInExecutionDetailsBankingAlias.js +19 -0
  108. package/lib/models/PayInExecutionDetailsDirect.js +29 -0
  109. package/lib/models/PayInExecutionDetailsWeb.js +40 -0
  110. package/lib/models/PayInExecutionType.js +5 -0
  111. package/lib/models/PayInIntent.js +20 -0
  112. package/lib/models/PayInIntentSplit.js +14 -0
  113. package/lib/models/PayInIntentSplits.js +7 -0
  114. package/lib/models/PayInPaymentDetails.js +7 -0
  115. package/lib/models/PayInPaymentDetailsApplePay.js +19 -0
  116. package/lib/models/PayInPaymentDetailsBancontact.js +13 -0
  117. package/lib/models/PayInPaymentDetailsBankWire.js +23 -0
  118. package/lib/models/PayInPaymentDetailsBankingAlias.js +18 -0
  119. package/lib/models/PayInPaymentDetailsBizum.js +23 -0
  120. package/lib/models/PayInPaymentDetailsBlik.js +17 -0
  121. package/lib/models/PayInPaymentDetailsCard.js +10 -0
  122. package/lib/models/PayInPaymentDetailsCardDirect.js +14 -0
  123. package/lib/models/PayInPaymentDetailsCardWeb.js +28 -0
  124. package/lib/models/PayInPaymentDetailsDirectDebitDirect.js +22 -0
  125. package/lib/models/PayInPaymentDetailsDirectDebitWeb.js +13 -0
  126. package/lib/models/PayInPaymentDetailsGiropay.js +15 -0
  127. package/lib/models/PayInPaymentDetailsGooglePay.js +35 -0
  128. package/lib/models/PayInPaymentDetailsIdeal.js +25 -0
  129. package/lib/models/PayInPaymentDetailsKlarna.js +36 -0
  130. package/lib/models/PayInPaymentDetailsMbway.js +20 -0
  131. package/lib/models/PayInPaymentDetailsMultibanco.js +14 -0
  132. package/lib/models/PayInPaymentDetailsPayByBank.js +71 -0
  133. package/lib/models/PayInPaymentDetailsPayPal.js +63 -0
  134. package/lib/models/PayInPaymentDetailsPayconiq.js +23 -0
  135. package/lib/models/PayInPaymentDetailsPreAuthorized.js +10 -0
  136. package/lib/models/PayInPaymentDetailsSatispay.js +19 -0
  137. package/lib/models/PayInPaymentDetailsSwish.js +35 -0
  138. package/lib/models/PayInPaymentDetailsTwint.js +15 -0
  139. package/lib/models/PayInPaymentType.js +21 -0
  140. package/lib/models/PayInRecurringRegistration.js +64 -0
  141. package/lib/models/PayInTemplateURLOptions.js +10 -0
  142. package/lib/models/PayOut.js +24 -0
  143. package/lib/models/PayOutPaymentDetails.js +7 -0
  144. package/lib/models/PayOutPaymentDetailsBankWire.js +32 -0
  145. package/lib/models/PayOutPaymentType.js +3 -0
  146. package/lib/models/PaymentData.js +20 -0
  147. package/lib/models/PaymentMethodMetadata.js +38 -0
  148. package/lib/models/PayoutMethods.js +7 -0
  149. package/lib/models/PendingUserAction.js +16 -0
  150. package/lib/models/PersonType.js +5 -0
  151. package/lib/models/PlatformCategorization.js +16 -0
  152. package/lib/models/PlatformType.js +10 -0
  153. package/lib/models/Quote.js +11 -0
  154. package/lib/models/Recipient.js +20 -0
  155. package/lib/models/RecipientSchema.js +17 -0
  156. package/lib/models/RecurringPayIn.js +10 -0
  157. package/lib/models/RecurringPayInCIT.js +32 -0
  158. package/lib/models/RecurringPayInCurrentState.js +24 -0
  159. package/lib/models/RecurringPayInMIT.js +27 -0
  160. package/lib/models/RecurringPayInPut.js +24 -0
  161. package/lib/models/Refund.js +26 -0
  162. package/lib/models/RefundReasonDetails.js +10 -0
  163. package/lib/models/Report.js +54 -0
  164. package/lib/models/ReportFilter.js +52 -0
  165. package/lib/models/ReportFilterV2.js +11 -0
  166. package/lib/models/ReportV2.js +28 -0
  167. package/lib/models/Repudiation.js +51 -0
  168. package/lib/models/SecurityInfo.js +12 -0
  169. package/lib/models/Settlement.js +16 -0
  170. package/lib/models/SettlementTransfer.js +37 -0
  171. package/lib/models/Shipping.js +14 -0
  172. package/lib/models/ShippingAddress.js +25 -0
  173. package/lib/models/ShippingPreference.js +5 -0
  174. package/lib/models/Transaction.js +50 -0
  175. package/lib/models/Transfer.js +13 -0
  176. package/lib/models/Ubo.js +19 -0
  177. package/lib/models/UboDeclaration.js +42 -0
  178. package/lib/models/UboDeclarationRefusedReasonType.js +23 -0
  179. package/lib/models/UboDeclarationStatus.js +26 -0
  180. package/lib/models/UboRefusedReasonType.js +14 -0
  181. package/lib/models/User.js +66 -0
  182. package/lib/models/UserCategory.js +5 -0
  183. package/lib/models/UserConsent.js +7 -0
  184. package/lib/models/UserDataFormatValidation.js +7 -0
  185. package/lib/models/UserEnrollmentResult.js +7 -0
  186. package/lib/models/UserLegal.js +65 -0
  187. package/lib/models/UserLegalOwner.js +66 -0
  188. package/lib/models/UserLegalPayer.js +66 -0
  189. package/lib/models/UserLegalSca.js +57 -0
  190. package/lib/models/UserNatural.js +51 -0
  191. package/lib/models/UserNaturalCapacity.js +13 -0
  192. package/lib/models/UserNaturalOwner.js +55 -0
  193. package/lib/models/UserNaturalPayer.js +55 -0
  194. package/lib/models/UserNaturalPut.js +49 -0
  195. package/lib/models/UserNaturalSca.js +56 -0
  196. package/lib/models/VirtualAccount.js +22 -0
  197. package/lib/models/Wallet.js +32 -0
  198. package/lib/models/index.js +102 -0
  199. package/lib/service.js +14 -0
  200. package/lib/services/BankAccounts.js +31 -0
  201. package/lib/services/BankingAliases.js +137 -0
  202. package/lib/services/CardPreAuthorizations.js +75 -0
  203. package/lib/services/CardRegistrations.js +64 -0
  204. package/lib/services/Cards.js +168 -0
  205. package/lib/services/Clients.js +196 -0
  206. package/lib/services/Conversions.js +155 -0
  207. package/lib/services/Deposits.js +109 -0
  208. package/lib/services/DisputeDocuments.js +65 -0
  209. package/lib/services/Disputes.js +409 -0
  210. package/lib/services/Events.js +24 -0
  211. package/lib/services/Hooks.js +81 -0
  212. package/lib/services/Idempotency.js +17 -0
  213. package/lib/services/IdentityVerifications.js +48 -0
  214. package/lib/services/KycDocuments.js +66 -0
  215. package/lib/services/Mandates.js +161 -0
  216. package/lib/services/OptionsHelper.js +20 -0
  217. package/lib/services/PayIns.js +690 -0
  218. package/lib/services/PayOuts.js +110 -0
  219. package/lib/services/Recipients.js +117 -0
  220. package/lib/services/Refunds.js +29 -0
  221. package/lib/services/Regulatory.js +29 -0
  222. package/lib/services/Reports.js +61 -0
  223. package/lib/services/ReportsV2.js +55 -0
  224. package/lib/services/Repudiations.js +33 -0
  225. package/lib/services/Responses.js +23 -0
  226. package/lib/services/Settlements.js +74 -0
  227. package/lib/services/Transfers.js +87 -0
  228. package/lib/services/UboDeclarations.js +135 -0
  229. package/lib/services/Users.js +831 -0
  230. package/lib/services/VirtualAccounts.js +99 -0
  231. package/lib/services/Wallets.js +85 -0
  232. package/lib/services/index.js +34 -0
  233. package/lib/utils.js +36 -0
  234. package/package.json +40 -0
  235. package/test/TestKycPageFile.png +0 -0
  236. package/test/helpers.js +1431 -0
  237. package/test/main.js +10 -0
  238. package/test/mocha.opts +3 -0
  239. package/test/services/BankAccounts.js +46 -0
  240. package/test/services/BankingAliases.js +89 -0
  241. package/test/services/CardPreAuthorizations.js +70 -0
  242. package/test/services/CardRegistrations.js +239 -0
  243. package/test/services/Cards.js +54 -0
  244. package/test/services/Clients.js +235 -0
  245. package/test/services/Conversions.js +308 -0
  246. package/test/services/Deposits.js +148 -0
  247. package/test/services/Disputes.js +542 -0
  248. package/test/services/EMoney.js +54 -0
  249. package/test/services/Events.js +143 -0
  250. package/test/services/Hooks.js +109 -0
  251. package/test/services/Idempotency.js +46 -0
  252. package/test/services/IdentityVerifications.js +68 -0
  253. package/test/services/KycDocuments.js +73 -0
  254. package/test/services/Mandates.js +256 -0
  255. package/test/services/PayIns.js +2553 -0
  256. package/test/services/PayOuts.js +106 -0
  257. package/test/services/RateLimit.js +48 -0
  258. package/test/services/Recipients.js +234 -0
  259. package/test/services/Refunds.js +123 -0
  260. package/test/services/Regulatory.js +45 -0
  261. package/test/services/Reports.js +114 -0
  262. package/test/services/ReportsV2.js +306 -0
  263. package/test/services/Repudiations.js +22 -0
  264. package/test/services/Settlements.js +58 -0
  265. package/test/services/Tokens.js +55 -0
  266. package/test/services/Transfers.js +137 -0
  267. package/test/services/UboDeclarations.js +135 -0
  268. package/test/services/Users.js +1303 -0
  269. package/test/services/VirtualAccounts.js +105 -0
  270. package/test/services/Wallets.js +132 -0
  271. package/test/settlement_sample.csv +8 -0
  272. package/typings/base.d.ts +308 -0
  273. package/typings/enums.d.ts +204 -0
  274. package/typings/index.d.ts +885 -0
  275. package/typings/index.test-d.ts +1535 -0
  276. package/typings/models/address.d.ts +70 -0
  277. package/typings/models/bankAccount.d.ts +235 -0
  278. package/typings/models/bankingAlias.d.ts +97 -0
  279. package/typings/models/billing.d.ts +42 -0
  280. package/typings/models/birthplace.d.ts +9 -0
  281. package/typings/models/card.d.ts +119 -0
  282. package/typings/models/cardPreauthorization.d.ts +157 -0
  283. package/typings/models/cardRegistration.d.ts +83 -0
  284. package/typings/models/cardValidation.d.ts +125 -0
  285. package/typings/models/client.d.ts +208 -0
  286. package/typings/models/conversion.d.ts +225 -0
  287. package/typings/models/conversionRate.d.ts +29 -0
  288. package/typings/models/countryAuthorization.d.ts +16 -0
  289. package/typings/models/deposit.d.ts +104 -0
  290. package/typings/models/dispute.d.ts +116 -0
  291. package/typings/models/disputeDocument.d.ts +119 -0
  292. package/typings/models/entityBase.d.ts +9 -0
  293. package/typings/models/event.d.ts +142 -0
  294. package/typings/models/hook.d.ts +39 -0
  295. package/typings/models/idempotency.d.ts +36 -0
  296. package/typings/models/identityVerification.d.ts +98 -0
  297. package/typings/models/kycDocument.d.ts +114 -0
  298. package/typings/models/mandate.d.ts +93 -0
  299. package/typings/models/money.d.ts +45 -0
  300. package/typings/models/payIn.d.ts +3742 -0
  301. package/typings/models/payOut.d.ts +144 -0
  302. package/typings/models/recipient.d.ts +242 -0
  303. package/typings/models/refund.d.ts +92 -0
  304. package/typings/models/report.d.ts +234 -0
  305. package/typings/models/reportV2.d.ts +145 -0
  306. package/typings/models/repudiation.d.ts +26 -0
  307. package/typings/models/securityInfo.d.ts +12 -0
  308. package/typings/models/settlement.d.ts +50 -0
  309. package/typings/models/settlementTransfer.d.ts +37 -0
  310. package/typings/models/shipping.d.ts +37 -0
  311. package/typings/models/shippingAddress.d.ts +15 -0
  312. package/typings/models/transaction.d.ts +85 -0
  313. package/typings/models/transfer.d.ts +119 -0
  314. package/typings/models/uboDeclaration.d.ts +100 -0
  315. package/typings/models/user.d.ts +1001 -0
  316. package/typings/models/virtualAccount.d.ts +182 -0
  317. package/typings/models/wallet.d.ts +46 -0
  318. package/typings/models.d.ts +74 -0
  319. package/typings/services/BankAccounts.d.ts +12 -0
  320. package/typings/services/BankingAliases.d.ts +51 -0
  321. package/typings/services/CardPreauthorizations.d.ts +44 -0
  322. package/typings/services/CardRegistrations.d.ts +43 -0
  323. package/typings/services/Cards.d.ts +80 -0
  324. package/typings/services/Clients.d.ts +77 -0
  325. package/typings/services/Conversions.d.ts +23 -0
  326. package/typings/services/Deposits.d.ts +20 -0
  327. package/typings/services/DisputeDocuments.d.ts +27 -0
  328. package/typings/services/Disputes.d.ts +169 -0
  329. package/typings/services/Events.d.ts +11 -0
  330. package/typings/services/Hooks.d.ts +33 -0
  331. package/typings/services/Idempotency.d.ts +7 -0
  332. package/typings/services/IdentityVerifications.d.ts +29 -0
  333. package/typings/services/KycDocuments.d.ts +38 -0
  334. package/typings/services/Mandates.d.ts +59 -0
  335. package/typings/services/OptionsHelper.d.ts +11 -0
  336. package/typings/services/PayIns.d.ts +319 -0
  337. package/typings/services/PayOuts.d.ts +34 -0
  338. package/typings/services/Recipients.d.ts +55 -0
  339. package/typings/services/Refunds.d.ts +12 -0
  340. package/typings/services/Regulatory.d.ts +17 -0
  341. package/typings/services/Reports.d.ts +26 -0
  342. package/typings/services/ReportsV2.d.ts +26 -0
  343. package/typings/services/Repudiations.d.ts +12 -0
  344. package/typings/services/Responses.d.ts +10 -0
  345. package/typings/services/Settlements.d.ts +28 -0
  346. package/typings/services/Transfers.d.ts +38 -0
  347. package/typings/services/UboDeclarations.d.ts +81 -0
  348. package/typings/services/Users.d.ts +308 -0
  349. package/typings/services/VirtualAccounts.d.ts +42 -0
  350. package/typings/services/Wallets.d.ts +36 -0
  351. package/typings/tsconfig.json +20 -0
  352. package/typings/tslint.json +11 -0
  353. package/typings/types.d.ts +652 -0
@@ -0,0 +1,306 @@
1
+ var expect = require('chai').expect;
2
+ var helpers = require('../helpers');
3
+ var api = require('../main');
4
+
5
+ describe('Reports V2 (2025)', function () {
6
+ var report;
7
+
8
+ before(function (done) {
9
+ var reportPost = {
10
+ DownloadFormat: "CSV",
11
+ ReportType: "COLLECTED_FEES",
12
+ AfterDate: 1740787200,
13
+ BeforeDate: 1743544740
14
+ };
15
+ api.ReportsV2.create(reportPost).then(function (data) {
16
+ report = data;
17
+ done();
18
+ });
19
+ });
20
+
21
+ it('should exist after creating it', function () {
22
+ expect(report.Id).to.exist;
23
+ expect(report.ReportType).to.equal("COLLECTED_FEES");
24
+ expect(report.DownloadFormat).to.equal("CSV");
25
+ expect(report.Status).to.equal("PENDING");
26
+ });
27
+
28
+ describe('Create for user wallet transactions', function () {
29
+ var userWalletTransactionReport;
30
+
31
+ before(function (done) {
32
+ var reportPost = {
33
+ DownloadFormat: "CSV",
34
+ ReportType: "USER_WALLET_TRANSACTIONS",
35
+ AfterDate: 1740787200,
36
+ BeforeDate: 1743544740
37
+ };
38
+ api.ReportsV2.create(reportPost).then(function (data) {
39
+ userWalletTransactionReport = data;
40
+ done();
41
+ });
42
+ });
43
+
44
+ it('should be correctly fetched', function () {
45
+ expect(userWalletTransactionReport.Id).to.exist;
46
+ expect(userWalletTransactionReport.ReportType).to.equal("USER_WALLET_TRANSACTIONS");
47
+ expect(userWalletTransactionReport.DownloadFormat).to.equal("CSV");
48
+ expect(userWalletTransactionReport.Status).to.equal("PENDING");
49
+ });
50
+ });
51
+
52
+ describe('Getting created report', function () {
53
+ var getReport;
54
+
55
+ before(function (done) {
56
+ api.ReportsV2.get(report.Id).then(function (data) {
57
+ getReport = data;
58
+ done();
59
+ });
60
+ });
61
+
62
+ it('should be correctly fetched', function () {
63
+ expect(report.Id).to.equal(getReport.Id);
64
+ expect(report.CreationDate).to.equal(getReport.CreationDate);
65
+ });
66
+ });
67
+
68
+ describe('Getting all reports', function () {
69
+ var allReports;
70
+
71
+ before(function (done) {
72
+ api.ReportsV2.getAll().then(function (data) {
73
+ allReports = data;
74
+ done();
75
+ });
76
+ });
77
+
78
+ it('should be correctly fetched', function () {
79
+ expect(allReports).to.be.an('array');
80
+ expect(allReports.length).to.be.above(0);
81
+ });
82
+ });
83
+
84
+ describe('Create intent report', function () {
85
+ var report;
86
+
87
+ before(function (done) {
88
+ var reportPost = {
89
+ "DownloadFormat" : "CSV",
90
+ "ReportType" : "ECHO_INTENT",
91
+ "AfterDate" : 1748782023,
92
+ "BeforeDate" : 1753102013,
93
+ "Filters" : {
94
+ "PaymentMethod" : "PAYPAL",
95
+ "Status" : "CAPTURED",
96
+ "Type" : "PAYIN"
97
+ },
98
+ "Columns" : [
99
+ "Id",
100
+ "Status",
101
+ "Amount",
102
+ "Currency",
103
+ "FeesAmount",
104
+ "FeesCurrency",
105
+ "Type",
106
+ "PaymentMethod",
107
+ "BuyerId",
108
+ "SellerId"
109
+ ]
110
+ };
111
+ api.ReportsV2.create(reportPost).then(function (data) {
112
+ report = data;
113
+ done();
114
+ });
115
+ });
116
+
117
+ it('should be correctly fetched', function () {
118
+ expect(report.Id).to.exist;
119
+ expect(report.ReportType).to.equal("ECHO_INTENT");
120
+ expect(report.DownloadFormat).to.equal("CSV");
121
+ expect(report.Status).to.equal("PENDING");
122
+ expect(report.Filters.Status).to.equal("CAPTURED");
123
+ expect(report.Columns.length).to.equal(10);
124
+ });
125
+ });
126
+
127
+ describe('Create intent action report', function () {
128
+ var report;
129
+
130
+ before(function (done) {
131
+ var reportPost = {
132
+ "DownloadFormat" : "CSV",
133
+ "ReportType" : "ECHO_INTENT_ACTION",
134
+ "AfterDate" : 1748782023,
135
+ "BeforeDate" : 1753102013,
136
+ "Filters" : {
137
+ "PaymentMethod" : "PAYPAL",
138
+ "Status" : "CAPTURED",
139
+ "Type" : "PAYIN"
140
+ },
141
+ "Columns" : [
142
+ "IntentId",
143
+ "Id",
144
+ "ExternalProcessingDate",
145
+ "ExternalProviderReference",
146
+ "ExternalMerchantReference",
147
+ "Status",
148
+ "Amount",
149
+ "Currency",
150
+ "FeesAmount",
151
+ "FeesCurrency",
152
+ "Type",
153
+ "PaymentMethod",
154
+ "BuyerId",
155
+ "SellerId"
156
+ ]
157
+ };
158
+ api.ReportsV2.create(reportPost).then(function (data) {
159
+ report = data;
160
+ done();
161
+ });
162
+ });
163
+
164
+ it('should be correctly fetched', function () {
165
+ expect(report.Id).to.exist;
166
+ expect(report.ReportType).to.equal("ECHO_INTENT_ACTION");
167
+ expect(report.DownloadFormat).to.equal("CSV");
168
+ expect(report.Status).to.equal("PENDING");
169
+ expect(report.Filters.Status).to.equal("CAPTURED");
170
+ expect(report.Columns.length).to.equal(14);
171
+ });
172
+ });
173
+
174
+ describe('Create settlement report', function () {
175
+ var report;
176
+
177
+ before(function (done) {
178
+ var reportPost = {
179
+ "DownloadFormat" : "CSV",
180
+ "ReportType" : "ECHO_SETTLEMENT",
181
+ "AfterDate" : 1748782023,
182
+ "BeforeDate" : 1753102013,
183
+ "Filters" : {
184
+ "Status" : "RECONCILED",
185
+ "ExternalProviderName" : "PAYPAL"
186
+ },
187
+ "Columns" : [
188
+ "Id",
189
+ "CreationDate",
190
+ "FileName",
191
+ "SettlementCurrency",
192
+ "Status",
193
+ "SettledTransactionCount",
194
+ "UnsettledTransactionCount",
195
+ "SettledAmount",
196
+ "DeclaredAmount",
197
+ "DeficitAmount"
198
+ ]
199
+ };
200
+ api.ReportsV2.create(reportPost).then(function (data) {
201
+ report = data;
202
+ done();
203
+ });
204
+ });
205
+
206
+ it('should be correctly fetched', function () {
207
+ expect(report.Id).to.exist;
208
+ expect(report.ReportType).to.equal("ECHO_SETTLEMENT");
209
+ expect(report.DownloadFormat).to.equal("CSV");
210
+ expect(report.Status).to.equal("PENDING");
211
+ expect(report.Filters.Status).to.equal("RECONCILED");
212
+ expect(report.Columns.length).to.equal(10);
213
+ });
214
+ });
215
+
216
+ describe('Create settlement report', function () {
217
+ var report;
218
+
219
+ before(function (done) {
220
+ var reportPost = {
221
+ "DownloadFormat" : "CSV",
222
+ "ReportType" : "ECHO_SETTLEMENT",
223
+ "AfterDate" : 1748782023,
224
+ "BeforeDate" : 1753102013,
225
+ "Filters" : {
226
+ "Status" : "RECONCILED",
227
+ "ExternalProviderName" : "PAYPAL"
228
+ },
229
+ "Columns" : [
230
+ "Id",
231
+ "CreationDate",
232
+ "FileName",
233
+ "SettlementCurrency",
234
+ "Status",
235
+ "SettledTransactionCount",
236
+ "UnsettledTransactionCount",
237
+ "SettledAmount",
238
+ "DeclaredAmount",
239
+ "DeficitAmount"
240
+ ]
241
+ };
242
+ api.ReportsV2.create(reportPost).then(function (data) {
243
+ report = data;
244
+ done();
245
+ });
246
+ });
247
+
248
+ it('should be correctly fetched', function () {
249
+ expect(report.Id).to.exist;
250
+ expect(report.ReportType).to.equal("ECHO_SETTLEMENT");
251
+ expect(report.DownloadFormat).to.equal("CSV");
252
+ expect(report.Status).to.equal("PENDING");
253
+ expect(report.Filters.Status).to.equal("RECONCILED");
254
+ expect(report.Columns.length).to.equal(10);
255
+ });
256
+ });
257
+
258
+ describe('Create split report', function () {
259
+ var report;
260
+
261
+ before(function (done) {
262
+ var reportPost = {
263
+ "Tag" : "Creating a report using new Mangopay system",
264
+ "DownloadFormat" : "CSV",
265
+ "ReportType" : "ECHO_SPLIT",
266
+ "AfterDate" : 1748782023,
267
+ "BeforeDate" : 1753102013,
268
+ "Filters" : {
269
+ "Status" : "COMPLETED",
270
+ "IntentId" : "int_0197f975-63f6-714e-8fc6-4451e128170f",
271
+ "Scheduled": false
272
+ },
273
+ "Columns" : [
274
+ "Id",
275
+ "IntentId",
276
+ "AuthorId",
277
+ "Amount",
278
+ "Currency",
279
+ "FeesAmount",
280
+ "FeesCurrency",
281
+ "Status",
282
+ "Description",
283
+ "CreditedWalletId",
284
+ "DebitedWalletId",
285
+ "Scheduled",
286
+ "CreationDate",
287
+ "ExecutionDate"
288
+ ]
289
+ };
290
+ api.ReportsV2.create(reportPost).then(function (data) {
291
+ report = data;
292
+ done();
293
+ });
294
+ });
295
+
296
+ it('should be correctly fetched', function () {
297
+ expect(report.Id).to.exist;
298
+ expect(report.ReportType).to.equal("ECHO_SPLIT");
299
+ expect(report.DownloadFormat).to.equal("CSV");
300
+ expect(report.Status).to.equal("PENDING");
301
+ expect(report.Filters.Status).to.equal("COMPLETED");
302
+ expect(report.Filters.IntentId).to.equal("int_0197f975-63f6-714e-8fc6-4451e128170f");
303
+ expect(report.Columns.length).to.equal(14);
304
+ });
305
+ });
306
+ });
@@ -0,0 +1,22 @@
1
+ var expect = require('chai').expect;
2
+ var api = require('../main');
3
+
4
+ describe('Repudiations', function() {
5
+ var REPUDIATION_ID = '41631014';
6
+
7
+ describe('Get Refunds', function() {
8
+ var getRefunds;
9
+
10
+ before(function(done) {
11
+ api.Repudiations.getRefunds(REPUDIATION_ID, function(data, response) {
12
+ getRefunds = data;
13
+ done();
14
+ })
15
+ });
16
+
17
+ it('should be retrieved', function() {
18
+ expect(getRefunds).not.to.be.undefined;
19
+ expect(getRefunds).to.be.an('array');
20
+ });
21
+ });
22
+ });
@@ -0,0 +1,58 @@
1
+ var expect = require('chai').expect;
2
+ var api = require('../main');
3
+ const path = require("path");
4
+ const fs = require('fs');
5
+
6
+ describe('Settlements', function () {
7
+ var settlement;
8
+
9
+ before(function (done) {
10
+ const filePath = path.resolve(__dirname, '../settlement_sample.csv');
11
+ const fileBuffer = fs.readFileSync(filePath);
12
+
13
+ api.Settlements.upload(fileBuffer).then(function (data, response) {
14
+ settlement = data;
15
+ done();
16
+ });
17
+ });
18
+
19
+ it('should be created', function () {
20
+ expect(settlement).not.to.be.undefined;
21
+ expect(settlement.Status).to.equal("UPLOADED");
22
+ });
23
+
24
+ describe('Fetch', function () {
25
+ var fetched;
26
+
27
+ before(function (done) {
28
+ api.Settlements.get(settlement.SettlementId).then(async function (data) {
29
+ fetched = data;
30
+ done();
31
+ });
32
+ });
33
+
34
+ it('should be fetched', function () {
35
+ expect(fetched).not.to.be.undefined;
36
+ expect(fetched.Status).to.equal("UPLOADED");
37
+ });
38
+ });
39
+
40
+ describe('Update', function () {
41
+ var updated;
42
+
43
+ const filePath = path.resolve(__dirname, '../settlement_sample.csv');
44
+ const fileBuffer = fs.readFileSync(filePath);
45
+
46
+ before(function (done) {
47
+ api.Settlements.update(settlement.SettlementId, fileBuffer).then(async function (data) {
48
+ updated = data;
49
+ done();
50
+ });
51
+ });
52
+
53
+ it('should be updated', function () {
54
+ expect(updated).not.to.be.undefined;
55
+ expect(updated.Status).to.equal("UPLOADED");
56
+ });
57
+ });
58
+ });
@@ -0,0 +1,55 @@
1
+ var expect = require('chai').expect;
2
+ var mangopay = require('../../index');
3
+ var api = require('../main');
4
+
5
+ describe('Tokens', function() {
6
+ var authentication1, authentication2;
7
+
8
+ before(function(done){
9
+ api.authorize()
10
+ .then(function(data){
11
+ authentication1 = data;
12
+ api.authorize()
13
+ .then(function(data){
14
+ authentication2 = data;
15
+ done();
16
+ });
17
+ });
18
+ });
19
+
20
+ it('should have different token values', function(){
21
+ expect(authentication1.access_token).to.not.equal(authentication2.access_token);
22
+ });
23
+ });
24
+
25
+ describe('When trying to authenticate with wrong credentials', function() {
26
+ var wrongCredentialsError;
27
+
28
+ before('Build API object with wrong credentials', function(done){
29
+ var wrongApi = new mangopay({
30
+ clientId: 'sdk-unit-tests',
31
+ clientApiKey: 'wrongPass'
32
+ });
33
+
34
+ wrongApi.authorize()
35
+ .then(function(){
36
+ done('Promise should not pass');
37
+ })
38
+ .catch(function(data) {
39
+ wrongCredentialsError = data;
40
+ done();
41
+ })
42
+ });
43
+
44
+ it('should have the right error message', function(){
45
+ expect(wrongCredentialsError.error).to.equal('invalid_client');
46
+ })
47
+ });
48
+
49
+ describe('OAuth URL is correct', function() {
50
+ const url = api.buildOauthUrl();
51
+
52
+ it('has the correct format', function() {
53
+ expect(url).to.equal(`/${api.config.apiVersion}/oauth/token`);
54
+ });
55
+ });
@@ -0,0 +1,137 @@
1
+ var expect = require('chai').expect;
2
+ var helpers = require('../helpers');
3
+ var api = require('../main');
4
+ const UserLegalSca = require("../../lib/models/UserLegalSca");
5
+
6
+ describe('Transfers', function () {
7
+ var john = helpers.data.getUserNatural();
8
+ var wallet, secondWallet, transfer;
9
+
10
+ before(function (done) {
11
+ api.Users.create(john).then(function () {
12
+ wallet = {
13
+ Owners: [john.Id],
14
+ Currency: 'EUR',
15
+ Description: 'WALLET IN EUR'
16
+ };
17
+ secondWallet = {
18
+ Owners: [john.Id],
19
+ Currency: 'EUR',
20
+ Description: 'WALLET IN EUR'
21
+ };
22
+ api.Wallets.create(wallet).then(function () {
23
+ api.Wallets.create(secondWallet).then(function () {
24
+ api.Transfers.create({
25
+ AuthorId: john.Id,
26
+ Tag: 'DefaultTag',
27
+ CreditedUserId: john.Id,
28
+ DebitedFunds: {
29
+ Currency: 'EUR',
30
+ Amount: 1
31
+ },
32
+ Fees: {
33
+ Currency: 'EUR',
34
+ Amount: 0
35
+ },
36
+ DebitedWalletId: wallet.Id,
37
+ CreditedWalletId: secondWallet.Id
38
+ }, function (data, response) {
39
+ transfer = data;
40
+ done();
41
+ });
42
+ });
43
+ });
44
+ });
45
+ });
46
+
47
+ describe('Create', function () {
48
+ it('should not happen because of insufficient funds', function () {
49
+ expect(transfer.Status).to.equal('FAILED');
50
+ expect(transfer.CreditedUserId).to.equal(john.Id);
51
+ expect(transfer.DebitedWalletId).to.equal(wallet.Id);
52
+ expect(transfer.CreditedWalletId).to.equal(secondWallet.Id);
53
+ });
54
+ });
55
+
56
+ describe('Create Transfer Sca User Present', function () {
57
+ var validUserNaturalScaId = "user_m_01JRFJJN9BR864A4KG7MH1WCZG";
58
+ var transferWithPendingUserAction;
59
+ var transferWithoutPendingUserAction;
60
+ var transferUserNotPresent;
61
+
62
+ before(function (done) {
63
+ // var johnSca = helpers.data.getUserNaturalScaOwner();
64
+ var matrixScaOwnerPost = new UserLegalSca(helpers.data.getUserLegalScaOwner());
65
+ api.Users.create(matrixScaOwnerPost).then(function (matrixScaOwner) {
66
+ helpers.getNewWalletWithMoney(api, validUserNaturalScaId, function (debitedWallet) {
67
+ var creditedWalletPost = {
68
+ Owners: [matrixScaOwner.Id],
69
+ Currency: 'EUR',
70
+ Description: 'WALLET IN EUR'
71
+ };
72
+
73
+ api.Wallets.create(creditedWalletPost).then(function (creditedWallet) {
74
+ var transferPost = {
75
+ AuthorId: validUserNaturalScaId,
76
+ CreditedUserId: matrixScaOwner.Id,
77
+ DebitedFunds: {
78
+ Currency: 'EUR',
79
+ Amount: 3001
80
+ },
81
+ Fees: {
82
+ Currency: 'EUR',
83
+ Amount: 0
84
+ },
85
+ DebitedWalletId: debitedWallet.Id,
86
+ CreditedWalletId: creditedWallet.Id,
87
+ ScaContext: 'USER_PRESENT'
88
+ };
89
+
90
+ api.Transfers.create(transferPost).then(function (data) {
91
+ transferWithPendingUserAction = data;
92
+ transferPost.DebitedFunds = {
93
+ Currency: 'EUR',
94
+ Amount: 20
95
+ };
96
+ api.Transfers.create(transferPost).then(function (data) {
97
+ transferWithoutPendingUserAction = data;
98
+ transferPost.ScaContext = 'USER_NOT_PRESENT';
99
+ api.Transfers.create(transferPost).then(function (data) {
100
+ transferUserNotPresent = data;
101
+ done();
102
+ });
103
+ });
104
+ });
105
+ });
106
+ });
107
+ });
108
+ });
109
+
110
+ it('should be created', function () {
111
+ expect(transferWithPendingUserAction.Status).to.equal('SUCCEEDED');
112
+ expect(transferWithPendingUserAction.PendingUserAction).not.to.be.undefined;
113
+
114
+ expect(transferWithoutPendingUserAction.Status).to.equal('SUCCEEDED');
115
+ expect(transferWithoutPendingUserAction.PendingUserAction).to.be.null;
116
+
117
+ expect(transferUserNotPresent.Status).to.equal('SUCCEEDED');
118
+ expect(transferUserNotPresent.PendingUserAction).to.be.null;
119
+ });
120
+ });
121
+
122
+ describe('Get Refunds', function () {
123
+ var getRefunds;
124
+
125
+ before(function (done) {
126
+ api.Transfers.getRefunds(transfer.Id, function (data, response) {
127
+ getRefunds = data;
128
+ done();
129
+ });
130
+ });
131
+
132
+ it('should be retrieved', function () {
133
+ expect(getRefunds).not.to.be.undefined;
134
+ expect(getRefunds).to.be.an('array');
135
+ });
136
+ });
137
+ });