globalpayments-api 2.0.0 → 3.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 (503) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/lib/src/Builders/AuthorizationBuilder.d.ts +325 -0
  3. package/lib/src/Builders/AuthorizationBuilder.js +601 -0
  4. package/lib/src/Builders/AuthorizationBuilder.js.map +1 -0
  5. package/lib/src/Builders/BaseBuilder/ValidationClause.d.ts +14 -0
  6. package/lib/src/Builders/BaseBuilder/ValidationClause.js +62 -0
  7. package/lib/src/Builders/BaseBuilder/ValidationClause.js.map +1 -0
  8. package/lib/src/Builders/BaseBuilder/ValidationTarget.d.ts +16 -0
  9. package/lib/src/Builders/BaseBuilder/ValidationTarget.js +29 -0
  10. package/lib/src/Builders/BaseBuilder/ValidationTarget.js.map +1 -0
  11. package/lib/src/Builders/BaseBuilder/Validations.d.ts +11 -0
  12. package/lib/src/Builders/BaseBuilder/Validations.js +57 -0
  13. package/lib/src/Builders/BaseBuilder/Validations.js.map +1 -0
  14. package/lib/src/Builders/BaseBuilder.d.ts +11 -0
  15. package/lib/src/Builders/BaseBuilder.js +17 -0
  16. package/lib/src/Builders/BaseBuilder.js.map +1 -0
  17. package/lib/src/Builders/ManagementBuilder.d.ts +103 -0
  18. package/lib/src/Builders/ManagementBuilder.js +228 -0
  19. package/lib/src/Builders/ManagementBuilder.js.map +1 -0
  20. package/lib/src/Builders/PayFacBuilder.d.ts +96 -0
  21. package/lib/src/Builders/PayFacBuilder.js +185 -0
  22. package/lib/src/Builders/PayFacBuilder.js.map +1 -0
  23. package/lib/src/Builders/RecurringBuilder.d.ts +13 -0
  24. package/lib/src/Builders/RecurringBuilder.js +48 -0
  25. package/lib/src/Builders/RecurringBuilder.js.map +1 -0
  26. package/lib/src/Builders/ReportBuilder.d.ts +8 -0
  27. package/lib/src/Builders/ReportBuilder.js +37 -0
  28. package/lib/src/Builders/ReportBuilder.js.map +1 -0
  29. package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomAuthorizationRequestBuilder.d.ts +22 -0
  30. package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomAuthorizationRequestBuilder.js +160 -0
  31. package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomAuthorizationRequestBuilder.js.map +1 -0
  32. package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomRequestBuilder.d.ts +6 -0
  33. package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomRequestBuilder.js +24 -0
  34. package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomRequestBuilder.js.map +1 -0
  35. package/lib/src/Builders/RequestBuilder/GpEcom/index.d.ts +2 -0
  36. package/lib/src/Builders/RequestBuilder/GpEcom/index.js +15 -0
  37. package/lib/src/Builders/RequestBuilder/GpEcom/index.js.map +1 -0
  38. package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.d.ts +6 -0
  39. package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.js +30 -0
  40. package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.js.map +1 -0
  41. package/lib/src/Builders/RequestBuilder/index.d.ts +2 -0
  42. package/lib/src/Builders/RequestBuilder/index.js +15 -0
  43. package/lib/src/Builders/RequestBuilder/index.js.map +1 -0
  44. package/lib/src/Builders/TransactionBuilder.d.ts +10 -0
  45. package/lib/src/Builders/TransactionBuilder.js +47 -0
  46. package/lib/src/Builders/TransactionBuilder.js.map +1 -0
  47. package/lib/src/Builders/TransactionReportBuilder.d.ts +15 -0
  48. package/lib/src/Builders/TransactionReportBuilder.js +80 -0
  49. package/lib/src/Builders/TransactionReportBuilder.js.map +1 -0
  50. package/lib/src/Builders/index.d.ts +8 -0
  51. package/lib/src/Builders/index.js +21 -0
  52. package/lib/src/Builders/index.js.map +1 -0
  53. package/lib/src/ConfiguredServices.d.ts +22 -0
  54. package/lib/src/ConfiguredServices.js +57 -0
  55. package/lib/src/ConfiguredServices.js.map +1 -0
  56. package/lib/src/Entities/Address.d.ts +13 -0
  57. package/lib/src/Entities/Address.js +20 -0
  58. package/lib/src/Entities/Address.js.map +1 -0
  59. package/lib/src/Entities/BatchSummary.d.ts +6 -0
  60. package/lib/src/Entities/BatchSummary.js +10 -0
  61. package/lib/src/Entities/BatchSummary.js.map +1 -0
  62. package/lib/src/Entities/Customer.d.ts +64 -0
  63. package/lib/src/Entities/Customer.js +48 -0
  64. package/lib/src/Entities/Customer.js.map +1 -0
  65. package/lib/src/Entities/DocumentUploadData.d.ts +13 -0
  66. package/lib/src/Entities/DocumentUploadData.js +49 -0
  67. package/lib/src/Entities/DocumentUploadData.js.map +1 -0
  68. package/lib/src/Entities/EcommerceInfo.d.ts +12 -0
  69. package/lib/src/Entities/EcommerceInfo.js +15 -0
  70. package/lib/src/Entities/EcommerceInfo.js.map +1 -0
  71. package/lib/src/Entities/EncryptionData.d.ts +6 -0
  72. package/lib/src/Entities/EncryptionData.js +10 -0
  73. package/lib/src/Entities/EncryptionData.js.map +1 -0
  74. package/lib/src/Entities/Enums.d.ts +373 -0
  75. package/lib/src/Entities/Enums.js +498 -0
  76. package/lib/src/Entities/Enums.js.map +1 -0
  77. package/lib/src/Entities/Errors.d.ts +23 -0
  78. package/lib/src/Entities/Errors.js +107 -0
  79. package/lib/src/Entities/Errors.js.map +1 -0
  80. package/lib/src/Entities/HostedPaymentData.d.ts +10 -0
  81. package/lib/src/Entities/HostedPaymentData.js +11 -0
  82. package/lib/src/Entities/HostedPaymentData.js.map +1 -0
  83. package/lib/src/Entities/IRequestBuilder.d.ts +7 -0
  84. package/lib/src/Entities/IRequestBuilder.js +3 -0
  85. package/lib/src/Entities/IRequestBuilder.js.map +1 -0
  86. package/lib/src/Entities/ProFac/AccountBalanceResponseData.d.ts +7 -0
  87. package/lib/src/Entities/ProFac/AccountBalanceResponseData.js +10 -0
  88. package/lib/src/Entities/ProFac/AccountBalanceResponseData.js.map +1 -0
  89. package/lib/src/Entities/ProFac/AccountPermissions.d.ts +15 -0
  90. package/lib/src/Entities/ProFac/AccountPermissions.js +10 -0
  91. package/lib/src/Entities/ProFac/AccountPermissions.js.map +1 -0
  92. package/lib/src/Entities/ProFac/BankAccountData.d.ts +10 -0
  93. package/lib/src/Entities/ProFac/BankAccountData.js +10 -0
  94. package/lib/src/Entities/ProFac/BankAccountData.js.map +1 -0
  95. package/lib/src/Entities/ProFac/BankAccountOwnershipData.d.ts +8 -0
  96. package/lib/src/Entities/ProFac/BankAccountOwnershipData.js +12 -0
  97. package/lib/src/Entities/ProFac/BankAccountOwnershipData.js.map +1 -0
  98. package/lib/src/Entities/ProFac/BeneficialOwnerData.d.ts +6 -0
  99. package/lib/src/Entities/ProFac/BeneficialOwnerData.js +11 -0
  100. package/lib/src/Entities/ProFac/BeneficialOwnerData.js.map +1 -0
  101. package/lib/src/Entities/ProFac/BeneficialOwnerDataResult.d.ts +5 -0
  102. package/lib/src/Entities/ProFac/BeneficialOwnerDataResult.js +10 -0
  103. package/lib/src/Entities/ProFac/BeneficialOwnerDataResult.js.map +1 -0
  104. package/lib/src/Entities/ProFac/BusinessData.d.ts +14 -0
  105. package/lib/src/Entities/ProFac/BusinessData.js +12 -0
  106. package/lib/src/Entities/ProFac/BusinessData.js.map +1 -0
  107. package/lib/src/Entities/ProFac/DeviceAttributeInfo.d.ts +4 -0
  108. package/lib/src/Entities/ProFac/DeviceAttributeInfo.js +10 -0
  109. package/lib/src/Entities/ProFac/DeviceAttributeInfo.js.map +1 -0
  110. package/lib/src/Entities/ProFac/DeviceData.d.ts +5 -0
  111. package/lib/src/Entities/ProFac/DeviceData.js +11 -0
  112. package/lib/src/Entities/ProFac/DeviceData.js.map +1 -0
  113. package/lib/src/Entities/ProFac/DeviceInfo.d.ts +6 -0
  114. package/lib/src/Entities/ProFac/DeviceInfo.js +10 -0
  115. package/lib/src/Entities/ProFac/DeviceInfo.js.map +1 -0
  116. package/lib/src/Entities/ProFac/FlashFundsPaymentCardData.d.ts +7 -0
  117. package/lib/src/Entities/ProFac/FlashFundsPaymentCardData.js +14 -0
  118. package/lib/src/Entities/ProFac/FlashFundsPaymentCardData.js.map +1 -0
  119. package/lib/src/Entities/ProFac/GrossBillingInformation.d.ts +8 -0
  120. package/lib/src/Entities/ProFac/GrossBillingInformation.js +10 -0
  121. package/lib/src/Entities/ProFac/GrossBillingInformation.js.map +1 -0
  122. package/lib/src/Entities/ProFac/OrderDevice.d.ts +18 -0
  123. package/lib/src/Entities/ProFac/OrderDevice.js +10 -0
  124. package/lib/src/Entities/ProFac/OrderDevice.js.map +1 -0
  125. package/lib/src/Entities/ProFac/OwnersData.d.ts +12 -0
  126. package/lib/src/Entities/ProFac/OwnersData.js +12 -0
  127. package/lib/src/Entities/ProFac/OwnersData.js.map +1 -0
  128. package/lib/src/Entities/ProFac/PayFacResponseData.d.ts +55 -0
  129. package/lib/src/Entities/ProFac/PayFacResponseData.js +10 -0
  130. package/lib/src/Entities/ProFac/PayFacResponseData.js.map +1 -0
  131. package/lib/src/Entities/ProFac/RenewAccountData.d.ts +10 -0
  132. package/lib/src/Entities/ProFac/RenewAccountData.js +12 -0
  133. package/lib/src/Entities/ProFac/RenewAccountData.js.map +1 -0
  134. package/lib/src/Entities/ProFac/SignificantOwnerData.d.ts +8 -0
  135. package/lib/src/Entities/ProFac/SignificantOwnerData.js +12 -0
  136. package/lib/src/Entities/ProFac/SignificantOwnerData.js.map +1 -0
  137. package/lib/src/Entities/ProFac/ThreatRiskData.d.ts +5 -0
  138. package/lib/src/Entities/ProFac/ThreatRiskData.js +10 -0
  139. package/lib/src/Entities/ProFac/ThreatRiskData.js.map +1 -0
  140. package/lib/src/Entities/ProFac/UserPersonalData.d.ts +26 -0
  141. package/lib/src/Entities/ProFac/UserPersonalData.js +15 -0
  142. package/lib/src/Entities/ProFac/UserPersonalData.js.map +1 -0
  143. package/lib/src/Entities/RecurringEntity.d.ts +14 -0
  144. package/lib/src/Entities/RecurringEntity.js +87 -0
  145. package/lib/src/Entities/RecurringEntity.js.map +1 -0
  146. package/lib/src/Entities/Request.d.ts +9 -0
  147. package/lib/src/Entities/Request.js +15 -0
  148. package/lib/src/Entities/Request.js.map +1 -0
  149. package/lib/src/Entities/SSORequestData.d.ts +5 -0
  150. package/lib/src/Entities/SSORequestData.js +10 -0
  151. package/lib/src/Entities/SSORequestData.js.map +1 -0
  152. package/lib/src/Entities/Schedule.d.ts +47 -0
  153. package/lib/src/Entities/Schedule.js +254 -0
  154. package/lib/src/Entities/Schedule.js.map +1 -0
  155. package/lib/src/Entities/ServiceEndpoints.d.ts +4 -0
  156. package/lib/src/Entities/ServiceEndpoints.js +9 -0
  157. package/lib/src/Entities/ServiceEndpoints.js.map +1 -0
  158. package/lib/src/Entities/Transaction.d.ts +78 -0
  159. package/lib/src/Entities/Transaction.js +109 -0
  160. package/lib/src/Entities/Transaction.js.map +1 -0
  161. package/lib/src/Entities/TransactionSummary.d.ts +61 -0
  162. package/lib/src/Entities/TransactionSummary.js +10 -0
  163. package/lib/src/Entities/TransactionSummary.js.map +1 -0
  164. package/lib/src/Entities/index.d.ts +15 -0
  165. package/lib/src/Entities/index.js +28 -0
  166. package/lib/src/Entities/index.js.map +1 -0
  167. package/lib/src/Gateways/Gateway.d.ts +10 -0
  168. package/lib/src/Gateways/Gateway.js +43 -0
  169. package/lib/src/Gateways/Gateway.js.map +1 -0
  170. package/lib/src/Gateways/GpEcomConnector.d.ts +36 -0
  171. package/lib/src/Gateways/GpEcomConnector.js +557 -0
  172. package/lib/src/Gateways/GpEcomConnector.js.map +1 -0
  173. package/lib/src/Gateways/IPayFacProvider.d.ts +5 -0
  174. package/lib/src/Gateways/IPayFacProvider.js +3 -0
  175. package/lib/src/Gateways/IPayFacProvider.js.map +1 -0
  176. package/lib/src/Gateways/IPaymentGateway.d.ts +8 -0
  177. package/lib/src/Gateways/IPaymentGateway.js +3 -0
  178. package/lib/src/Gateways/IPaymentGateway.js.map +1 -0
  179. package/lib/src/Gateways/IRecurringService.d.ts +6 -0
  180. package/lib/src/Gateways/IRecurringService.js +3 -0
  181. package/lib/src/Gateways/IRecurringService.js.map +1 -0
  182. package/lib/src/Gateways/PayPlanConnector.d.ts +42 -0
  183. package/lib/src/Gateways/PayPlanConnector.js +553 -0
  184. package/lib/src/Gateways/PayPlanConnector.js.map +1 -0
  185. package/lib/src/Gateways/PorticoConnector.d.ts +44 -0
  186. package/lib/src/Gateways/PorticoConnector.js +1018 -0
  187. package/lib/src/Gateways/PorticoConnector.js.map +1 -0
  188. package/lib/src/Gateways/ProPayConnector.d.ts +41 -0
  189. package/lib/src/Gateways/ProPayConnector.js +695 -0
  190. package/lib/src/Gateways/ProPayConnector.js.map +1 -0
  191. package/lib/src/Gateways/RealexConnector.d.ts +30 -0
  192. package/lib/src/Gateways/RealexConnector.js +524 -0
  193. package/lib/src/Gateways/RealexConnector.js.map +1 -0
  194. package/lib/src/Gateways/RestGateway.d.ts +6 -0
  195. package/lib/src/Gateways/RestGateway.js +32 -0
  196. package/lib/src/Gateways/RestGateway.js.map +1 -0
  197. package/lib/src/Gateways/XmlGateway.d.ts +6 -0
  198. package/lib/src/Gateways/XmlGateway.js +38 -0
  199. package/lib/src/Gateways/XmlGateway.js.map +1 -0
  200. package/lib/src/Gateways/https-wrapper.d.ts +3 -0
  201. package/lib/src/Gateways/https-wrapper.js +36 -0
  202. package/lib/src/Gateways/https-wrapper.js.map +1 -0
  203. package/lib/src/Gateways/index.d.ts +8 -0
  204. package/lib/src/Gateways/index.js +21 -0
  205. package/lib/src/Gateways/index.js.map +1 -0
  206. package/lib/src/HostedPaymentConfig.d.ts +12 -0
  207. package/lib/src/HostedPaymentConfig.js +10 -0
  208. package/lib/src/HostedPaymentConfig.js.map +1 -0
  209. package/lib/src/Mapping/GpEcomMapping.d.ts +9 -0
  210. package/lib/src/Mapping/GpEcomMapping.js +74 -0
  211. package/lib/src/Mapping/GpEcomMapping.js.map +1 -0
  212. package/lib/src/Mapping/index.d.ts +1 -0
  213. package/lib/src/Mapping/index.js +14 -0
  214. package/lib/src/Mapping/index.js.map +1 -0
  215. package/lib/src/PaymentMethods/Cash.d.ts +8 -0
  216. package/lib/src/PaymentMethods/Cash.js +37 -0
  217. package/lib/src/PaymentMethods/Cash.js.map +1 -0
  218. package/lib/src/PaymentMethods/Credit.d.ts +85 -0
  219. package/lib/src/PaymentMethods/Credit.js +107 -0
  220. package/lib/src/PaymentMethods/Credit.js.map +1 -0
  221. package/lib/src/PaymentMethods/CreditCardData.d.ts +20 -0
  222. package/lib/src/PaymentMethods/CreditCardData.js +58 -0
  223. package/lib/src/PaymentMethods/CreditCardData.js.map +1 -0
  224. package/lib/src/PaymentMethods/CreditTrackData.d.ts +7 -0
  225. package/lib/src/PaymentMethods/CreditTrackData.js +28 -0
  226. package/lib/src/PaymentMethods/CreditTrackData.js.map +1 -0
  227. package/lib/src/PaymentMethods/Debit.d.ts +40 -0
  228. package/lib/src/PaymentMethods/Debit.js +71 -0
  229. package/lib/src/PaymentMethods/Debit.js.map +1 -0
  230. package/lib/src/PaymentMethods/DebitTrackData.d.ts +7 -0
  231. package/lib/src/PaymentMethods/DebitTrackData.js +28 -0
  232. package/lib/src/PaymentMethods/DebitTrackData.js.map +1 -0
  233. package/lib/src/PaymentMethods/EBT.d.ts +48 -0
  234. package/lib/src/PaymentMethods/EBT.js +89 -0
  235. package/lib/src/PaymentMethods/EBT.js.map +1 -0
  236. package/lib/src/PaymentMethods/EBTCardData.d.ts +16 -0
  237. package/lib/src/PaymentMethods/EBTCardData.js +33 -0
  238. package/lib/src/PaymentMethods/EBTCardData.js.map +1 -0
  239. package/lib/src/PaymentMethods/EBTTrackData.d.ts +8 -0
  240. package/lib/src/PaymentMethods/EBTTrackData.js +28 -0
  241. package/lib/src/PaymentMethods/EBTTrackData.js.map +1 -0
  242. package/lib/src/PaymentMethods/ECheck.d.ts +32 -0
  243. package/lib/src/PaymentMethods/ECheck.js +41 -0
  244. package/lib/src/PaymentMethods/ECheck.js.map +1 -0
  245. package/lib/src/PaymentMethods/GiftCard.d.ts +131 -0
  246. package/lib/src/PaymentMethods/GiftCard.js +206 -0
  247. package/lib/src/PaymentMethods/GiftCard.js.map +1 -0
  248. package/lib/src/PaymentMethods/Interfaces.d.ts +55 -0
  249. package/lib/src/PaymentMethods/Interfaces.js +3 -0
  250. package/lib/src/PaymentMethods/Interfaces.js.map +1 -0
  251. package/lib/src/PaymentMethods/PaymentMethod.d.ts +19 -0
  252. package/lib/src/PaymentMethods/PaymentMethod.js +115 -0
  253. package/lib/src/PaymentMethods/PaymentMethod.js.map +1 -0
  254. package/lib/src/PaymentMethods/RecurringPaymentMethod.d.ts +23 -0
  255. package/lib/src/PaymentMethods/RecurringPaymentMethod.js +78 -0
  256. package/lib/src/PaymentMethods/RecurringPaymentMethod.js.map +1 -0
  257. package/lib/src/PaymentMethods/TransactionReference.d.ts +10 -0
  258. package/lib/src/PaymentMethods/TransactionReference.js +13 -0
  259. package/lib/src/PaymentMethods/TransactionReference.js.map +1 -0
  260. package/lib/src/PaymentMethods/index.d.ts +15 -0
  261. package/lib/src/PaymentMethods/index.js +28 -0
  262. package/lib/src/PaymentMethods/index.js.map +1 -0
  263. package/lib/src/ServiceConfigs/AcceptorConfig.d.ts +41 -0
  264. package/lib/src/ServiceConfigs/AcceptorConfig.js +30 -0
  265. package/lib/src/ServiceConfigs/AcceptorConfig.js.map +1 -0
  266. package/lib/src/ServiceConfigs/Configuration.d.ts +15 -0
  267. package/lib/src/ServiceConfigs/Configuration.js +16 -0
  268. package/lib/src/ServiceConfigs/Configuration.js.map +1 -0
  269. package/lib/src/ServiceConfigs/Gateways/GatewayConfig.d.ts +14 -0
  270. package/lib/src/ServiceConfigs/Gateways/GatewayConfig.js +46 -0
  271. package/lib/src/ServiceConfigs/Gateways/GatewayConfig.js.map +1 -0
  272. package/lib/src/ServiceConfigs/Gateways/GpEcomConfig.d.ts +27 -0
  273. package/lib/src/ServiceConfigs/Gateways/GpEcomConfig.js +61 -0
  274. package/lib/src/ServiceConfigs/Gateways/GpEcomConfig.js.map +1 -0
  275. package/lib/src/ServiceConfigs/Gateways/index.d.ts +2 -0
  276. package/lib/src/ServiceConfigs/Gateways/index.js +15 -0
  277. package/lib/src/ServiceConfigs/Gateways/index.js.map +1 -0
  278. package/lib/src/ServiceConfigs/ServicesConfig.d.ts +27 -0
  279. package/lib/src/ServiceConfigs/ServicesConfig.js +51 -0
  280. package/lib/src/ServiceConfigs/ServicesConfig.js.map +1 -0
  281. package/lib/src/ServiceConfigs/ServicesConfigsAdded.d.ts +10 -0
  282. package/lib/src/ServiceConfigs/ServicesConfigsAdded.js +27 -0
  283. package/lib/src/ServiceConfigs/ServicesConfigsAdded.js.map +1 -0
  284. package/lib/src/ServiceConfigs/index.d.ts +5 -0
  285. package/lib/src/ServiceConfigs/index.js +18 -0
  286. package/lib/src/ServiceConfigs/index.js.map +1 -0
  287. package/lib/src/Services/BatchService.d.ts +4 -0
  288. package/lib/src/Services/BatchService.js +18 -0
  289. package/lib/src/Services/BatchService.js.map +1 -0
  290. package/lib/src/Services/CheckService.d.ts +6 -0
  291. package/lib/src/Services/CheckService.js +21 -0
  292. package/lib/src/Services/CheckService.js.map +1 -0
  293. package/lib/src/Services/CreditService.d.ts +12 -0
  294. package/lib/src/Services/CreditService.js +55 -0
  295. package/lib/src/Services/CreditService.js.map +1 -0
  296. package/lib/src/Services/DebitService.d.ts +7 -0
  297. package/lib/src/Services/DebitService.js +29 -0
  298. package/lib/src/Services/DebitService.js.map +1 -0
  299. package/lib/src/Services/EBTService.d.ts +8 -0
  300. package/lib/src/Services/EBTService.js +33 -0
  301. package/lib/src/Services/EBTService.js.map +1 -0
  302. package/lib/src/Services/GiftService.d.ts +16 -0
  303. package/lib/src/Services/GiftService.js +55 -0
  304. package/lib/src/Services/GiftService.js.map +1 -0
  305. package/lib/src/Services/HostedService.d.ts +9 -0
  306. package/lib/src/Services/HostedService.js +60 -0
  307. package/lib/src/Services/HostedService.js.map +1 -0
  308. package/lib/src/Services/PayFacService.d.ts +26 -0
  309. package/lib/src/Services/PayFacService.js +78 -0
  310. package/lib/src/Services/PayFacService.js.map +1 -0
  311. package/lib/src/Services/RecurringService.d.ts +8 -0
  312. package/lib/src/Services/RecurringService.js +28 -0
  313. package/lib/src/Services/RecurringService.js.map +1 -0
  314. package/lib/src/Services/ReportingService.d.ts +6 -0
  315. package/lib/src/Services/ReportingService.js +20 -0
  316. package/lib/src/Services/ReportingService.js.map +1 -0
  317. package/lib/src/Services/index.d.ts +9 -0
  318. package/lib/src/Services/index.js +22 -0
  319. package/lib/src/Services/index.js.map +1 -0
  320. package/lib/src/ServicesConfig.d.ts +27 -0
  321. package/lib/src/ServicesConfig.js +51 -0
  322. package/lib/src/ServicesConfig.js.map +1 -0
  323. package/lib/src/ServicesContainer.d.ts +26 -0
  324. package/lib/src/ServicesContainer.js +140 -0
  325. package/lib/src/ServicesContainer.js.map +1 -0
  326. package/lib/src/Utils/GenerationUtils.d.ts +5 -0
  327. package/lib/src/Utils/GenerationUtils.js +37 -0
  328. package/lib/src/Utils/GenerationUtils.js.map +1 -0
  329. package/lib/src/Utils/InputValidation.d.ts +12 -0
  330. package/lib/src/Utils/InputValidation.js +73 -0
  331. package/lib/src/Utils/InputValidation.js.map +1 -0
  332. package/lib/src/Utils/Sha1.d.ts +6 -0
  333. package/lib/src/Utils/Sha1.js +226 -0
  334. package/lib/src/Utils/Sha1.js.map +1 -0
  335. package/lib/src/Utils/StringUtils.d.ts +6 -0
  336. package/lib/src/Utils/StringUtils.js +54 -0
  337. package/lib/src/Utils/StringUtils.js.map +1 -0
  338. package/lib/src/Utils/index.d.ts +2 -0
  339. package/lib/src/Utils/index.js +15 -0
  340. package/lib/src/Utils/index.js.map +1 -0
  341. package/lib/src/index.d.ts +12 -0
  342. package/lib/src/index.js +29 -0
  343. package/lib/src/index.js.map +1 -0
  344. package/lib/test/Data/TestCards.d.ts +24 -0
  345. package/lib/test/Data/TestCards.js +233 -0
  346. package/lib/test/Data/TestCards.js.map +1 -0
  347. package/lib/test/Data/TestChecks.d.ts +4 -0
  348. package/lib/test/Data/TestChecks.js +33 -0
  349. package/lib/test/Data/TestChecks.js.map +1 -0
  350. package/lib/test/Data/index.d.ts +2 -0
  351. package/lib/test/Data/index.js +15 -0
  352. package/lib/test/Data/index.js.map +1 -0
  353. package/lib/test/Integration/Gateways/PorticoConnector/AchTest.d.ts +1 -0
  354. package/lib/test/Integration/Gateways/PorticoConnector/AchTest.js +113 -0
  355. package/lib/test/Integration/Gateways/PorticoConnector/AchTest.js.map +1 -0
  356. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.d.ts +1 -0
  357. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.js +484 -0
  358. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.js.map +1 -0
  359. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.d.ts +1 -0
  360. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.js +84 -0
  361. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.js.map +1 -0
  362. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.d.ts +1 -0
  363. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.js +1721 -0
  364. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.js.map +1 -0
  365. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.d.ts +1 -0
  366. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.js +84 -0
  367. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.js.map +1 -0
  368. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.d.ts +1 -0
  369. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.js +1758 -0
  370. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.js.map +1 -0
  371. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.d.ts +1 -0
  372. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.js +683 -0
  373. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.js.map +1 -0
  374. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.d.ts +1 -0
  375. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.js +2219 -0
  376. package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.js.map +1 -0
  377. package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.d.ts +1 -0
  378. package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.js +708 -0
  379. package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.js.map +1 -0
  380. package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.d.ts +1 -0
  381. package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js +152 -0
  382. package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js.map +1 -0
  383. package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.d.ts +1 -0
  384. package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.js +172 -0
  385. package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.js.map +1 -0
  386. package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.d.ts +1 -0
  387. package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js +193 -0
  388. package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js.map +1 -0
  389. package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.d.ts +1 -0
  390. package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.js +378 -0
  391. package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.js.map +1 -0
  392. package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.d.ts +1 -0
  393. package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.js +197 -0
  394. package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.js.map +1 -0
  395. package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.d.ts +1 -0
  396. package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.js +48 -0
  397. package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.js.map +1 -0
  398. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTests.d.ts +1 -0
  399. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTests.js +101 -0
  400. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTests.js.map +1 -0
  401. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTests.d.ts +1 -0
  402. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTests.js +353 -0
  403. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTests.js.map +1 -0
  404. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTests.d.ts +1 -0
  405. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTests.js +124 -0
  406. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTests.js.map +1 -0
  407. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTests.d.ts +1 -0
  408. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTests.js +143 -0
  409. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTests.js.map +1 -0
  410. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.d.ts +39 -0
  411. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.js +372 -0
  412. package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.js.map +1 -0
  413. package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTests.d.ts +1 -0
  414. package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTests.js +101 -0
  415. package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTests.js.map +1 -0
  416. package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTests.d.ts +1 -0
  417. package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTests.js +536 -0
  418. package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTests.js.map +1 -0
  419. package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTests.d.ts +1 -0
  420. package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTests.js +125 -0
  421. package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTests.js.map +1 -0
  422. package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTests.d.ts +1 -0
  423. package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTests.js +145 -0
  424. package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTests.js.map +1 -0
  425. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.d.ts +33 -0
  426. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.js +269 -0
  427. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.js.map +1 -0
  428. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.d.ts +4 -0
  429. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.js +31 -0
  430. package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.js.map +1 -0
  431. package/lib/test/Integration/Gateways/RealexConnector/Certification/AuthTest.d.ts +1 -0
  432. package/lib/test/Integration/Gateways/RealexConnector/Certification/AuthTest.js +4374 -0
  433. package/lib/test/Integration/Gateways/RealexConnector/Certification/AuthTest.js.map +1 -0
  434. package/lib/test/Integration/Gateways/RealexConnector/Certification/AvsTest.d.ts +1 -0
  435. package/lib/test/Integration/Gateways/RealexConnector/Certification/AvsTest.js +759 -0
  436. package/lib/test/Integration/Gateways/RealexConnector/Certification/AvsTest.js.map +1 -0
  437. package/lib/test/Integration/Gateways/RealexConnector/Certification/CreditTest.d.ts +1 -0
  438. package/lib/test/Integration/Gateways/RealexConnector/Certification/CreditTest.js +2400 -0
  439. package/lib/test/Integration/Gateways/RealexConnector/Certification/CreditTest.js.map +1 -0
  440. package/lib/test/Integration/Gateways/RealexConnector/Certification/HoldTest.d.ts +1 -0
  441. package/lib/test/Integration/Gateways/RealexConnector/Certification/HoldTest.js +1657 -0
  442. package/lib/test/Integration/Gateways/RealexConnector/Certification/HoldTest.js.map +1 -0
  443. package/lib/test/Integration/Gateways/RealexConnector/Certification/ManualTest.d.ts +1 -0
  444. package/lib/test/Integration/Gateways/RealexConnector/Certification/ManualTest.js +5651 -0
  445. package/lib/test/Integration/Gateways/RealexConnector/Certification/ManualTest.js.map +1 -0
  446. package/lib/test/Integration/Gateways/RealexConnector/Certification/OtbTest.d.ts +1 -0
  447. package/lib/test/Integration/Gateways/RealexConnector/Certification/OtbTest.js +1986 -0
  448. package/lib/test/Integration/Gateways/RealexConnector/Certification/OtbTest.js.map +1 -0
  449. package/lib/test/Integration/Gateways/RealexConnector/Certification/RebateTest.d.ts +1 -0
  450. package/lib/test/Integration/Gateways/RealexConnector/Certification/RebateTest.js +2370 -0
  451. package/lib/test/Integration/Gateways/RealexConnector/Certification/RebateTest.js.map +1 -0
  452. package/lib/test/Integration/Gateways/RealexConnector/Certification/ReleaseTest.d.ts +1 -0
  453. package/lib/test/Integration/Gateways/RealexConnector/Certification/ReleaseTest.js +1704 -0
  454. package/lib/test/Integration/Gateways/RealexConnector/Certification/ReleaseTest.js.map +1 -0
  455. package/lib/test/Integration/Gateways/RealexConnector/Certification/SettleTest.d.ts +1 -0
  456. package/lib/test/Integration/Gateways/RealexConnector/Certification/SettleTest.js +2054 -0
  457. package/lib/test/Integration/Gateways/RealexConnector/Certification/SettleTest.js.map +1 -0
  458. package/lib/test/Integration/Gateways/RealexConnector/Certification/ValidationTest.d.ts +1 -0
  459. package/lib/test/Integration/Gateways/RealexConnector/Certification/ValidationTest.js +2470 -0
  460. package/lib/test/Integration/Gateways/RealexConnector/Certification/ValidationTest.js.map +1 -0
  461. package/lib/test/Integration/Gateways/RealexConnector/Certification/VerifyEnrolledTest.d.ts +1 -0
  462. package/lib/test/Integration/Gateways/RealexConnector/Certification/VerifyEnrolledTest.js +3117 -0
  463. package/lib/test/Integration/Gateways/RealexConnector/Certification/VerifyEnrolledTest.js.map +1 -0
  464. package/lib/test/Integration/Gateways/RealexConnector/Certification/VoidTest.d.ts +1 -0
  465. package/lib/test/Integration/Gateways/RealexConnector/Certification/VoidTest.js +2032 -0
  466. package/lib/test/Integration/Gateways/RealexConnector/Certification/VoidTest.js.map +1 -0
  467. package/lib/test/Integration/Gateways/RealexConnector/CreditTest.d.ts +1 -0
  468. package/lib/test/Integration/Gateways/RealexConnector/CreditTest.js +323 -0
  469. package/lib/test/Integration/Gateways/RealexConnector/CreditTest.js.map +1 -0
  470. package/lib/test/Integration/Gateways/RealexConnector/HppTest.d.ts +1 -0
  471. package/lib/test/Integration/Gateways/RealexConnector/HppTest.js +99 -0
  472. package/lib/test/Integration/Gateways/RealexConnector/HppTest.js.map +1 -0
  473. package/lib/test/Integration/Gateways/RealexConnector/RecurringTest.d.ts +1 -0
  474. package/lib/test/Integration/Gateways/RealexConnector/RecurringTest.js +264 -0
  475. package/lib/test/Integration/Gateways/RealexConnector/RecurringTest.js.map +1 -0
  476. package/lib/test/Integration/Services/CheckServiceTest.d.ts +1 -0
  477. package/lib/test/Integration/Services/CheckServiceTest.js +99 -0
  478. package/lib/test/Integration/Services/CheckServiceTest.js.map +1 -0
  479. package/lib/test/Integration/Services/CreditServiceTest.d.ts +1 -0
  480. package/lib/test/Integration/Services/CreditServiceTest.js +314 -0
  481. package/lib/test/Integration/Services/CreditServiceTest.js.map +1 -0
  482. package/lib/test/Integration/Services/DebitServiceTest.d.ts +1 -0
  483. package/lib/test/Integration/Services/DebitServiceTest.js +155 -0
  484. package/lib/test/Integration/Services/DebitServiceTest.js.map +1 -0
  485. package/lib/test/Integration/Services/EBTServiceTest.d.ts +1 -0
  486. package/lib/test/Integration/Services/EBTServiceTest.js +136 -0
  487. package/lib/test/Integration/Services/EBTServiceTest.js.map +1 -0
  488. package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.d.ts +1 -0
  489. package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.js +162 -0
  490. package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.js.map +1 -0
  491. package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.d.ts +1 -0
  492. package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.js +140 -0
  493. package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.js.map +1 -0
  494. package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.d.ts +1 -0
  495. package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.js +73 -0
  496. package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.js.map +1 -0
  497. package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.d.ts +1 -0
  498. package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.js +203 -0
  499. package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.js.map +1 -0
  500. package/lib/test/Unit/Gateways/RealexConnector/CreditTest.d.ts +1 -0
  501. package/lib/test/Unit/Gateways/RealexConnector/CreditTest.js +71 -0
  502. package/lib/test/Unit/Gateways/RealexConnector/CreditTest.js.map +1 -0
  503. package/package.json +15 -12
@@ -0,0 +1,101 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __generator = (this && this.__generator) || function (thisArg, body) {
12
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
+ function verb(n) { return function (v) { return step([n, v]); }; }
15
+ function step(op) {
16
+ if (f) throw new TypeError("Generator is already executing.");
17
+ while (_) try {
18
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
+ if (y = 0, t) op = [op[0] & 2, t.value];
20
+ switch (op[0]) {
21
+ case 0: case 1: t = op; break;
22
+ case 4: _.label++; return { value: op[1], done: false };
23
+ case 5: _.label++; y = op[1]; op = [0]; continue;
24
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
+ default:
26
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
+ if (t[2]) _.ops.pop();
31
+ _.trys.pop(); continue;
32
+ }
33
+ op = body.call(thisArg, _);
34
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
+ }
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ var ava_1 = require("ava");
40
+ var PayFacService_1 = require("../../../../src/Services/PayFacService");
41
+ var src_1 = require("../../../../src/");
42
+ var config = new src_1.ServicesConfig();
43
+ config.serviceUrl = "https://xmltest.propay.com/API/PropayAPI.aspx";
44
+ config.certificationStr = "5dbacb0fc504dd7bdc2eadeb7039dd";
45
+ config.terminalID = "7039dd";
46
+ var _service = new PayFacService_1.PayFacService();
47
+ ava_1.default.before(function (_t) {
48
+ src_1.ServicesContainer.configure(config);
49
+ });
50
+ ava_1.default("get account balance", function (t) { return __awaiter(void 0, void 0, void 0, function () {
51
+ var response;
52
+ return __generator(this, function (_a) {
53
+ switch (_a.label) {
54
+ case 0:
55
+ t.plan(2);
56
+ return [4 /*yield*/, _service.getAccountBalance()
57
+ .withAccountNumber("718135687")
58
+ .execute()];
59
+ case 1:
60
+ response = _a.sent();
61
+ t.truthy(response);
62
+ t.is("00", response.responseCode);
63
+ return [2 /*return*/];
64
+ }
65
+ });
66
+ }); });
67
+ ava_1.default("get account info", function (t) { return __awaiter(void 0, void 0, void 0, function () {
68
+ var response;
69
+ return __generator(this, function (_a) {
70
+ switch (_a.label) {
71
+ case 0:
72
+ t.plan(2);
73
+ return [4 /*yield*/, _service.getAccountDetails()
74
+ .withAccountNumber("718135687")
75
+ .execute()];
76
+ case 1:
77
+ response = _a.sent();
78
+ t.truthy(response);
79
+ t.is("00", response.responseCode);
80
+ return [2 /*return*/];
81
+ }
82
+ });
83
+ }); });
84
+ ava_1.default("get account info enchance", function (t) { return __awaiter(void 0, void 0, void 0, function () {
85
+ var response;
86
+ return __generator(this, function (_a) {
87
+ switch (_a.label) {
88
+ case 0:
89
+ t.plan(2);
90
+ return [4 /*yield*/, _service.getAccountDetailsEnhanced()
91
+ .withAccountNumber("718135687")
92
+ .execute()];
93
+ case 1:
94
+ response = _a.sent();
95
+ t.truthy(response);
96
+ t.is("00", response.responseCode);
97
+ return [2 /*return*/];
98
+ }
99
+ });
100
+ }); });
101
+ //# sourceMappingURL=GetInformationTests.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetInformationTests.js","sourceRoot":"","sources":["../../../../../test/Integration/Gateways/ProPayConnector/GetInformationTests.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2BAAuB;AACvB,wEAAuE;AACvE,wCAE0B;AAE1B,IAAM,MAAM,GAAG,IAAI,oBAAc,EAAE,CAAC;AACpC,MAAM,CAAC,UAAU,GAAG,+CAA+C,CAAC;AACpE,MAAM,CAAC,gBAAgB,GAAG,gCAAgC,CAAC;AAC3D,MAAM,CAAC,UAAU,GAAG,QAAQ,CAAC;AAC7B,IAAM,QAAQ,GAAG,IAAI,6BAAa,EAAE,CAAC;AAErC,aAAI,CAAC,MAAM,CAAC,UAAC,EAAE;IACb,uBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;AACtC,CAAC,CAAC,CAAC;AAEH,aAAI,CAAC,qBAAqB,EAAE,UAAO,CAAC;;;;;gBAClC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACK,qBAAM,QAAQ,CAAC,iBAAiB,EAAE;yBAC9C,iBAAiB,CAAC,WAAW,CAAC;yBAC9B,OAAO,EAAE,EAAA;;gBAFR,QAAQ,GAAG,SAEH;gBAEZ,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACnB,CAAC,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,CAAC,YAAY,CAAC,CAAC;;;;KACnC,CAAC,CAAC;AAEH,aAAI,CAAC,kBAAkB,EAAE,UAAO,CAAC;;;;;gBAC/B,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACK,qBAAM,QAAQ,CAAC,iBAAiB,EAAE;yBAC9C,iBAAiB,CAAC,WAAW,CAAC;yBAC9B,OAAO,EAAE,EAAA;;gBAFR,QAAQ,GAAG,SAEH;gBAEZ,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACnB,CAAC,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,CAAC,YAAY,CAAC,CAAC;;;;KACnC,CAAC,CAAC;AAEH,aAAI,CAAC,2BAA2B,EAAE,UAAO,CAAC;;;;;gBACxC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACK,qBAAM,QAAQ,CAAC,yBAAyB,EAAE;yBACtD,iBAAiB,CAAC,WAAW,CAAC;yBAC9B,OAAO,EAAE,EAAA;;gBAFR,QAAQ,GAAG,SAEH;gBAEZ,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACnB,CAAC,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,CAAC,YAAY,CAAC,CAAC;;;;KACnC,CAAC,CAAC"}
@@ -0,0 +1,536 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __generator = (this && this.__generator) || function (thisArg, body) {
12
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
+ function verb(n) { return function (v) { return step([n, v]); }; }
15
+ function step(op) {
16
+ if (f) throw new TypeError("Generator is already executing.");
17
+ while (_) try {
18
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
+ if (y = 0, t) op = [op[0] & 2, t.value];
20
+ switch (op[0]) {
21
+ case 0: case 1: t = op; break;
22
+ case 4: _.label++; return { value: op[1], done: false };
23
+ case 5: _.label++; y = op[1]; op = [0]; continue;
24
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
+ default:
26
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
+ if (t[2]) _.ops.pop();
31
+ _.trys.pop(); continue;
32
+ }
33
+ op = body.call(thisArg, _);
34
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
+ }
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ var ava_1 = require("ava");
40
+ var PayFacService_1 = require("../../../../src/Services/PayFacService");
41
+ var src_1 = require("../../../../src/");
42
+ var TestAccountData_1 = require("./TestData/TestAccountData");
43
+ var UserPersonalData_1 = require("../../../../src/Entities/ProFac/UserPersonalData");
44
+ var SSORequestData_1 = require("../../../../src/Entities/SSORequestData");
45
+ var BankAccountOwnershipData_1 = require("../../../../src/Entities/ProFac/BankAccountOwnershipData");
46
+ var DocumentUploadData_1 = require("../../../../src/Entities/DocumentUploadData");
47
+ var config = new src_1.ServicesConfig();
48
+ config.serviceUrl = "https://xmltest.propay.com/API/PropayAPI.aspx";
49
+ config.certificationStr = "5dbacb0fc504dd7bdc2eadeb7039dd";
50
+ config.terminalID = "7039dd";
51
+ config.x509CertificationPath = "test/Integration/Gateways/ProPayConnector/TestData/selfSignedCertificate.crt";
52
+ config.x509CertificateString = "MIICpDCCAYygAwIBAgIIS7Y5fijJytIwDQYJKoZIhvcNAQENBQAwETEPMA0GA1UEAwwGUFJPUEFZMB4XDTE5MDkxOTAwMDAwMFoXDTI5MDkxOTAwMDAwMFowEzERMA8GA1UEAwwIMTI3LjAuMDEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCCwvq2ho43oeeGX3L9+2aD7bna7qjdLwWumeIpwhPZLa44MeQ5100wy4W2hKk3pOb5yaHqyhzoHDriveQnq/EpZJk9m7sizXsxZtBHtt+wghSZjdNhnon3R54SH5J7oEPybRSAKXSEzHjN+kCu7W3TmXSLve6YuODnjUpbOcAsHG2wE+zpCoEbe8toH5Tt7g8HzEc5mJYkkILTq6j9pwDE50r2NVbV3SXwmQ1ifxf54Z9EFB5bQv5cI3+GL/VwlQeJdiKMGj1rs8zTR8TjbAjVlJbz6bBkFItUsqexgwAHIJZAaU7an8ZamGRlPjf6dp3mOEu4B47igNj5KOSgCNdRAgMBAAEwDQYJKoZIhvcNAQENBQADggEBAF88u367yrduqd3PfEIo2ClaI2QPRIIWKKACMcZDl3z1BzVzNFOZNG2vLcSuKnGRH89tJPCjyxdJa0RyDTkXMSLqb5FgUseEjmj3ULAvFqLZNW35PY9mmlmCY+S3CC/bQR4iyPLo8lsRq0Nl6hlvB440+9zS8UQjtc2957QgcXfD427UJb698gXzsfQcNeaQWy8pNm7FzDfHTJbo/t6FOpmfR+RMZky9FrlWabInkrkf3w2XJL0uUAYU9jGQa+l/vnZD2KNzs1mO1EqkS6yB/fsn85mkgGe4Vfbo9GQ/S+KmDujewFA0ma7O03fy1W5v6Amn/nAcFTCddVL3BDNEtOM=";
53
+ var _service = new PayFacService_1.PayFacService();
54
+ ava_1.default.before(function (_t) {
55
+ src_1.ServicesContainer.configure(config);
56
+ });
57
+ ava_1.default("create account", function (t) { return __awaiter(void 0, void 0, void 0, function () {
58
+ var bankAccountInfo, userBusinessInfo, accountPersonalInfo, threatRiskData, significantOwnerData, ownersInfo, creditCardInfo, achInfo, mailingAddressInfo, secondaryBankInformation, deviceData, response;
59
+ return __generator(this, function (_a) {
60
+ switch (_a.label) {
61
+ case 0:
62
+ t.plan(5);
63
+ bankAccountInfo = TestAccountData_1.TestAccountData.GetBankAccountData();
64
+ userBusinessInfo = TestAccountData_1.TestAccountData.GetBusinessData();
65
+ accountPersonalInfo = TestAccountData_1.TestAccountData.GetUserPersonalData();
66
+ threatRiskData = TestAccountData_1.TestAccountData.GetThreatRiskData();
67
+ significantOwnerData = TestAccountData_1.TestAccountData.GetSignificantOwnerData();
68
+ ownersInfo = TestAccountData_1.TestAccountData.GetBeneficialOwnerData();
69
+ creditCardInfo = TestAccountData_1.TestAccountData.GetCreditCardData();
70
+ achInfo = TestAccountData_1.TestAccountData.GetACHData();
71
+ mailingAddressInfo = TestAccountData_1.TestAccountData.GetMailingAddress();
72
+ secondaryBankInformation = TestAccountData_1.TestAccountData.GetSecondaryBankAccountData();
73
+ deviceData = TestAccountData_1.TestAccountData.GetDeviceData(1, false);
74
+ return [4 /*yield*/, _service.createAccount()
75
+ .withBankAccountData(bankAccountInfo)
76
+ .withBusinessData(userBusinessInfo)
77
+ .withUserPersonalData(accountPersonalInfo)
78
+ .withThreatRiskData(threatRiskData)
79
+ .withSignificantOwnerData(significantOwnerData)
80
+ .withBeneficialOwnerData(ownersInfo)
81
+ .withCreditCardData(creditCardInfo)
82
+ .withACHData(achInfo)
83
+ .withMailingAddress(mailingAddressInfo)
84
+ .withSecondaryBankAccountData(secondaryBankInformation)
85
+ .withDeviceData(deviceData)
86
+ .withTimeZone("ET")
87
+ .execute()];
88
+ case 1:
89
+ response = _a.sent();
90
+ t.truthy(response);
91
+ t.is("00", response.responseCode);
92
+ t.truthy(response.payFacData.accountNumber);
93
+ t.truthy(response.payFacData.password);
94
+ t.truthy(response.payFacData.sourceEmail);
95
+ return [2 /*return*/];
96
+ }
97
+ });
98
+ }); });
99
+ ava_1.default("Order a new device", function (t) { return __awaiter(void 0, void 0, void 0, function () {
100
+ var orderDeviceInfo, response;
101
+ return __generator(this, function (_a) {
102
+ switch (_a.label) {
103
+ case 0:
104
+ t.plan(2);
105
+ orderDeviceInfo = TestAccountData_1.TestAccountData.GetOrderNewDeviceData();
106
+ return [4 /*yield*/, _service.orderDevice()
107
+ .withOrderDevice(orderDeviceInfo)
108
+ .execute()];
109
+ case 1:
110
+ response = _a.sent();
111
+ t.truthy(response);
112
+ t.is("00", response.responseCode);
113
+ return [2 /*return*/];
114
+ }
115
+ });
116
+ }); });
117
+ ava_1.default("reset password", function (t) { return __awaiter(void 0, void 0, void 0, function () {
118
+ var response;
119
+ return __generator(this, function (_a) {
120
+ switch (_a.label) {
121
+ case 0: return [4 /*yield*/, _service.resetPassword()
122
+ .withAccountNumber('718150930')
123
+ .withNegativeLimit('1')
124
+ .execute()];
125
+ case 1:
126
+ response = _a.sent();
127
+ t.truthy(response);
128
+ return [2 /*return*/];
129
+ }
130
+ });
131
+ }); });
132
+ /* Note : This method may be used to add new beneficial owner information when the original account boarding call included OwnerCount,
133
+ * but did not include all owner data
134
+ */
135
+ ava_1.default("update beneficial data", function (t) { return __awaiter(void 0, void 0, void 0, function () {
136
+ var ownersInfo, response;
137
+ return __generator(this, function (_a) {
138
+ switch (_a.label) {
139
+ case 0:
140
+ ownersInfo = TestAccountData_1.TestAccountData.GetBeneficialOwnerData();
141
+ return [4 /*yield*/, _service.updateBeneficialOwnershipInfo()
142
+ .withAccountNumber('718568507')
143
+ .withBeneficialOwnerData(ownersInfo)
144
+ .execute()];
145
+ case 1:
146
+ response = _a.sent();
147
+ t.truthy(response);
148
+ return [2 /*return*/];
149
+ }
150
+ });
151
+ }); });
152
+ //#region edit aacount
153
+ ava_1.default("edit account information", function (t) { return __awaiter(void 0, void 0, void 0, function () {
154
+ var accountPersonalInfo, response;
155
+ return __generator(this, function (_a) {
156
+ switch (_a.label) {
157
+ case 0:
158
+ t.plan(2);
159
+ accountPersonalInfo = new UserPersonalData_1.UserPersonalData();
160
+ accountPersonalInfo.dayPhone = "4464464464";
161
+ accountPersonalInfo.eveningPhone = "4464464464";
162
+ accountPersonalInfo.externalID = String(getRandomInt(100000000, 999999999));
163
+ accountPersonalInfo.firstName = "John";
164
+ accountPersonalInfo.lastName = "Doe";
165
+ accountPersonalInfo.middleInitial = "A";
166
+ accountPersonalInfo.sourceEmail = 'user' + getRandomInt(1, 10000) + '@user.com';
167
+ accountPersonalInfo.sSN = '1234';
168
+ return [4 /*yield*/, _service.editAccount()
169
+ .withAccountNumber("718135662")
170
+ .withUserPersonalData(accountPersonalInfo)
171
+ .execute()];
172
+ case 1:
173
+ response = _a.sent();
174
+ t.truthy(response);
175
+ t.is("00", response.responseCode);
176
+ return [2 /*return*/];
177
+ }
178
+ });
179
+ }); });
180
+ ava_1.default("edit account password", function (t) { return __awaiter(void 0, void 0, void 0, function () {
181
+ var response;
182
+ return __generator(this, function (_a) {
183
+ switch (_a.label) {
184
+ case 0:
185
+ t.plan(2);
186
+ return [4 /*yield*/, _service.editAccount()
187
+ .withAccountNumber("718568506")
188
+ .withPassword("testPwd_" + getRandomInt(1, 100))
189
+ .execute()];
190
+ case 1:
191
+ response = _a.sent();
192
+ t.truthy(response);
193
+ t.is("00", response.responseCode);
194
+ return [2 /*return*/];
195
+ }
196
+ });
197
+ }); });
198
+ ava_1.default("edit account address", function (t) { return __awaiter(void 0, void 0, void 0, function () {
199
+ var personalInfo, response;
200
+ return __generator(this, function (_a) {
201
+ switch (_a.label) {
202
+ case 0:
203
+ t.plan(2);
204
+ personalInfo = new UserPersonalData_1.UserPersonalData();
205
+ personalInfo.dayPhone = "4464464464";
206
+ personalInfo.eveningPhone = "4464464464";
207
+ personalInfo.firstName = "John";
208
+ personalInfo.lastName = "Doe";
209
+ personalInfo.middleInitial = "A";
210
+ personalInfo.sourceEmail = 'user' + getRandomInt(1, 10000) + '@user.com';
211
+ personalInfo.externalID = String(getRandomInt(100000000, 999999999));
212
+ return [4 /*yield*/, _service.editAccount()
213
+ .withAccountNumber("718138433")
214
+ .withUserPersonalData(personalInfo)
215
+ .execute()];
216
+ case 1:
217
+ response = _a.sent();
218
+ t.truthy(response);
219
+ t.is("00", response.responseCode);
220
+ return [2 /*return*/];
221
+ }
222
+ });
223
+ }); });
224
+ ava_1.default("edit account permissions", function (t) { return __awaiter(void 0, void 0, void 0, function () {
225
+ var response;
226
+ return __generator(this, function (_a) {
227
+ switch (_a.label) {
228
+ case 0:
229
+ t.plan(2);
230
+ return [4 /*yield*/, _service.editAccount()
231
+ .withAccountNumber("718135662")
232
+ .withAccountPermissions(TestAccountData_1.TestAccountData.GetAccountPermissions())
233
+ .execute()];
234
+ case 1:
235
+ response = _a.sent();
236
+ t.truthy(response);
237
+ t.is("00", response.responseCode);
238
+ return [2 /*return*/];
239
+ }
240
+ });
241
+ }); });
242
+ ava_1.default("edit account timeZone", function (t) { return __awaiter(void 0, void 0, void 0, function () {
243
+ var userPersonalData, response;
244
+ return __generator(this, function (_a) {
245
+ switch (_a.label) {
246
+ case 0:
247
+ t.plan(2);
248
+ userPersonalData = new UserPersonalData_1.UserPersonalData();
249
+ userPersonalData.dayPhone = "4464464464";
250
+ userPersonalData.eveningPhone = "4464464464";
251
+ userPersonalData.firstName = "John";
252
+ userPersonalData.lastName = "Doe";
253
+ userPersonalData.middleInitial = "A";
254
+ userPersonalData.sourceEmail = 'user' + getRandomInt(1, 10000) + '@user.com';
255
+ return [4 /*yield*/, _service.editAccount()
256
+ .withAccountNumber("718216467")
257
+ .withUserPersonalData(userPersonalData)
258
+ .withTimeZone("ET")
259
+ .execute()];
260
+ case 1:
261
+ response = _a.sent();
262
+ t.truthy(response);
263
+ t.is("00", response.responseCode);
264
+ return [2 /*return*/];
265
+ }
266
+ });
267
+ }); });
268
+ //#endregion
269
+ //#region renew account
270
+ ava_1.default("renew account", function (t) { return __awaiter(void 0, void 0, void 0, function () {
271
+ var response;
272
+ return __generator(this, function (_a) {
273
+ switch (_a.label) {
274
+ case 0:
275
+ t.plan(2);
276
+ return [4 /*yield*/, _service.renewAccount()
277
+ .withRenewalAccountData(TestAccountData_1.TestAccountData.GetRenewAccountDetails(true))
278
+ .withAccountNumber("718568507")
279
+ .execute()];
280
+ case 1:
281
+ response = _a.sent();
282
+ t.truthy(response);
283
+ t.is("00", response.responseCode);
284
+ return [2 /*return*/];
285
+ }
286
+ });
287
+ }); });
288
+ ava_1.default("renew account by credit card", function (t) { return __awaiter(void 0, void 0, void 0, function () {
289
+ var response;
290
+ return __generator(this, function (_a) {
291
+ switch (_a.label) {
292
+ case 0:
293
+ t.plan(2);
294
+ return [4 /*yield*/, _service.renewAccount()
295
+ .withAccountNumber("718135662")
296
+ .withRenewalAccountData(TestAccountData_1.TestAccountData.GetRenewAccountDetails(true))
297
+ .execute()];
298
+ case 1:
299
+ response = _a.sent();
300
+ t.truthy(response);
301
+ t.is("00", response.responseCode);
302
+ return [2 /*return*/];
303
+ }
304
+ });
305
+ }); });
306
+ ava_1.default("renew account by bank account", function (t) { return __awaiter(void 0, void 0, void 0, function () {
307
+ var response;
308
+ return __generator(this, function (_a) {
309
+ switch (_a.label) {
310
+ case 0:
311
+ t.plan(2);
312
+ return [4 /*yield*/, _service.renewAccount()
313
+ .withAccountNumber("718135662")
314
+ .withRenewalAccountData(TestAccountData_1.TestAccountData.GetRenewAccountDetails(false))
315
+ .execute()];
316
+ case 1:
317
+ response = _a.sent();
318
+ t.truthy(response);
319
+ t.is("00", response.responseCode);
320
+ return [2 /*return*/];
321
+ }
322
+ });
323
+ }); });
324
+ //#endregion
325
+ ava_1.default("update account beneficial ownership", function (t) { return __awaiter(void 0, void 0, void 0, function () {
326
+ var beneficialOwners, response;
327
+ return __generator(this, function (_a) {
328
+ switch (_a.label) {
329
+ case 0:
330
+ t.plan(3);
331
+ beneficialOwners = TestAccountData_1.TestAccountData.GetBeneficialOwnerData();
332
+ return [4 /*yield*/, _service.updateBeneficialOwnershipInfo()
333
+ .withAccountNumber("718134589") // This account must have been created with a beneficial owner count specified, but no owner details passed
334
+ .withBeneficialOwnerData(beneficialOwners)
335
+ .execute()];
336
+ case 1:
337
+ response = _a.sent();
338
+ t.truthy(response);
339
+ t.is("00", response.responseCode);
340
+ t.truthy(response.payFacData.beneficialOwnerDataResults);
341
+ return [2 /*return*/];
342
+ }
343
+ });
344
+ }); });
345
+ ava_1.default.skip("disown account", function (t) { return __awaiter(void 0, void 0, void 0, function () {
346
+ var response;
347
+ return __generator(this, function (_a) {
348
+ switch (_a.label) {
349
+ case 0:
350
+ t.plan(2);
351
+ return [4 /*yield*/, _service.disownAccount()
352
+ .withAccountNumber("718134204") // The account being "disowned" needs to have another affiliation set. Contact propayimplementations@tsys.com and they will set one if necessary
353
+ .execute()];
354
+ case 1:
355
+ response = _a.sent();
356
+ t.truthy(response);
357
+ t.is("00", response.responseCode);
358
+ return [2 /*return*/];
359
+ }
360
+ });
361
+ }); });
362
+ // Note : The transaction number of the chargeback you need to dispute. (can be verify at certification process)
363
+ ava_1.default("upload document chargeback", function (t) { return __awaiter(void 0, void 0, void 0, function () {
364
+ var docUploadData, response;
365
+ return __generator(this, function (_a) {
366
+ switch (_a.label) {
367
+ case 0:
368
+ t.plan(2);
369
+ docUploadData = new DocumentUploadData_1.DocumentUploadData();
370
+ docUploadData.documentName = "TestDocCB_12345";
371
+ docUploadData.transactionReference = "123456789";
372
+ docUploadData.documentPath = 'test/Integration/Gateways/ProPayConnector/TestData/TestDocChargeback.docx';
373
+ docUploadData.DocumentPath(docUploadData.documentPath);
374
+ return [4 /*yield*/, _service.uploadDocumentChargeback()
375
+ .withAccountNumber("718567300")
376
+ .withDocumentUploadData(docUploadData)
377
+ .execute()];
378
+ case 1:
379
+ response = _a.sent();
380
+ t.truthy(response);
381
+ t.is("00", response.responseCode);
382
+ return [2 /*return*/];
383
+ }
384
+ });
385
+ }); });
386
+ ava_1.default("upload document", function (t) { return __awaiter(void 0, void 0, void 0, function () {
387
+ var docUploadData, response;
388
+ return __generator(this, function (_a) {
389
+ switch (_a.label) {
390
+ case 0:
391
+ t.plan(2);
392
+ docUploadData = new DocumentUploadData_1.DocumentUploadData();
393
+ docUploadData.documentName = "TestDoc_12345";
394
+ docUploadData.docCategory = "Verification";
395
+ docUploadData.documentPath = 'test/Integration/Gateways/ProPayConnector/TestData/TestDoc.docx';
396
+ docUploadData.DocumentPath(docUploadData.documentPath);
397
+ return [4 /*yield*/, _service.uploadDocument()
398
+ .withAccountNumber("718134204")
399
+ .withDocumentUploadData(docUploadData)
400
+ .execute()];
401
+ case 1:
402
+ response = _a.sent();
403
+ t.truthy(response);
404
+ t.is("00", response.responseCode);
405
+ return [2 /*return*/];
406
+ }
407
+ });
408
+ }); });
409
+ ava_1.default("upload document chargeback by document string", function (t) { return __awaiter(void 0, void 0, void 0, function () {
410
+ var docUploadData, response;
411
+ return __generator(this, function (_a) {
412
+ switch (_a.label) {
413
+ case 0:
414
+ t.plan(2);
415
+ docUploadData = new DocumentUploadData_1.DocumentUploadData();
416
+ docUploadData.documentName = "TestDocCB_12345";
417
+ docUploadData.transactionReference = "123456789";
418
+ docUploadData.document = TestAccountData_1.TestAccountData.GetDocumentBase64String('test/Integration/Gateways/ProPayConnector/TestData/TestDocChargeback.docx');
419
+ docUploadData.docType = "docx";
420
+ return [4 /*yield*/, _service.uploadDocumentChargeback()
421
+ .withAccountNumber("718134204")
422
+ .withDocumentUploadData(docUploadData)
423
+ .execute()];
424
+ case 1:
425
+ response = _a.sent();
426
+ t.truthy(response);
427
+ t.is("00", response.responseCode);
428
+ return [2 /*return*/];
429
+ }
430
+ });
431
+ }); });
432
+ ava_1.default("upload document by document string", function (t) { return __awaiter(void 0, void 0, void 0, function () {
433
+ var docUploadData, response;
434
+ return __generator(this, function (_a) {
435
+ switch (_a.label) {
436
+ case 0:
437
+ t.plan(2);
438
+ docUploadData = new DocumentUploadData_1.DocumentUploadData();
439
+ docUploadData.documentName = "TestDoc_12345";
440
+ docUploadData.docCategory = "Verification";
441
+ docUploadData.document = TestAccountData_1.TestAccountData.GetDocumentBase64String('test/Integration/Gateways/ProPayConnector/TestData/TestDoc.docx');
442
+ docUploadData.docType = "docx";
443
+ return [4 /*yield*/, _service.uploadDocument()
444
+ .withAccountNumber("718134204")
445
+ .withDocumentUploadData(docUploadData)
446
+ .execute()];
447
+ case 1:
448
+ response = _a.sent();
449
+ t.truthy(response);
450
+ t.is("00", response.responseCode);
451
+ return [2 /*return*/];
452
+ }
453
+ });
454
+ }); });
455
+ ava_1.default("obtain sSO key", function (t) { return __awaiter(void 0, void 0, void 0, function () {
456
+ var ssoRequestData, response;
457
+ return __generator(this, function (_a) {
458
+ switch (_a.label) {
459
+ case 0:
460
+ t.plan(3);
461
+ ssoRequestData = new SSORequestData_1.SSORequestData();
462
+ ssoRequestData.referrerURL = "https://www.globalpaymentsinc.com/";
463
+ ssoRequestData.iPAddress = "40.81.11.219";
464
+ ssoRequestData.iPSubnetMask = "255.255.255.0";
465
+ return [4 /*yield*/, _service.obtainSSOKey()
466
+ .withAccountNumber("718037672")
467
+ .withSSORequestData(ssoRequestData)
468
+ .execute()];
469
+ case 1:
470
+ response = _a.sent();
471
+ t.truthy(response);
472
+ t.is("00", response.responseCode);
473
+ t.truthy(response.payFacData.authToken);
474
+ return [2 /*return*/];
475
+ }
476
+ });
477
+ }); });
478
+ ava_1.default("update bank account ownership info", function (t) { return __awaiter(void 0, void 0, void 0, function () {
479
+ var primaryOwner, ownerAddress, secondaryOwner, secondaryOwnerAddress, response;
480
+ return __generator(this, function (_a) {
481
+ switch (_a.label) {
482
+ case 0:
483
+ t.plan(2);
484
+ config.x509CertificationPath = "test/Integration/Gateways/ProPayConnector/TestData/selfSignedCertificateCAN.crt";
485
+ config.serviceUrl = "https://xmltestcanada.propay.com/API/PropayAPI.aspx";
486
+ config.certificationStr = "7c4ddcba7054a1d9e00bcac4743b98";
487
+ config.terminalID = "3b98";
488
+ src_1.ServicesContainer.configure(config);
489
+ primaryOwner = new BankAccountOwnershipData_1.BankAccountOwnershipData();
490
+ primaryOwner.firstName = "Style";
491
+ primaryOwner.lastName = "Stallone";
492
+ primaryOwner.phoneNumber = "123456789";
493
+ ownerAddress = new src_1.Address();
494
+ ownerAddress.streetAddress1 = "3400 N Ashton Blvd";
495
+ ownerAddress.streetAddress2 = "3401 M Ashton Clad";
496
+ ownerAddress.streetAddress3 = "3402 L Ashton Blvd";
497
+ ownerAddress.city = "Orlando";
498
+ ownerAddress.state = "FL";
499
+ ownerAddress.postalCode = "X0A 0H0";
500
+ ownerAddress.country = "CAN";
501
+ primaryOwner.ownerAddress = ownerAddress;
502
+ secondaryOwner = new BankAccountOwnershipData_1.BankAccountOwnershipData();
503
+ secondaryOwner.firstName = "Thomas";
504
+ secondaryOwner.lastName = "Hanks";
505
+ secondaryOwner.phoneNumber = "123456789";
506
+ secondaryOwnerAddress = new src_1.Address();
507
+ secondaryOwnerAddress.streetAddress1 = "1970 Diamond Blvd";
508
+ secondaryOwnerAddress.streetAddress2 = "1971 Diamond Blvd";
509
+ secondaryOwnerAddress.streetAddress3 = "1972 Diamond Blvd";
510
+ secondaryOwnerAddress.city = "Orlando";
511
+ secondaryOwnerAddress.state = "FL";
512
+ secondaryOwnerAddress.postalCode = "X0A 0H0";
513
+ secondaryOwnerAddress.country = "CAN";
514
+ secondaryOwner.ownerAddress = secondaryOwnerAddress;
515
+ return [4 /*yield*/, _service.updateBankAccountOwnershipInfo()
516
+ .withAccountNumber("716016890")
517
+ .withPrimaryBankAccountOwner(primaryOwner)
518
+ .withSecondaryBankAccountOwner(secondaryOwner)
519
+ .execute()];
520
+ case 1:
521
+ response = _a.sent();
522
+ t.truthy(response);
523
+ t.is("00", response.responseCode);
524
+ return [2 /*return*/];
525
+ }
526
+ });
527
+ }); });
528
+ function getRandomInt(min, max) {
529
+ var floatRandom = Math.random();
530
+ var difference = max - min;
531
+ // random between 0 and the difference
532
+ var random = Math.round(difference * floatRandom);
533
+ var randomWithinRange = random + min;
534
+ return randomWithinRange;
535
+ }
536
+ //# sourceMappingURL=ProPayAccountTests.js.map