globalpayments-api 3.6.2 → 3.8.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.
- package/CHANGELOG.md +143 -125
- package/lib/src/Builders/AuthorizationBuilder.d.ts +9 -1
- package/lib/src/Builders/AuthorizationBuilder.js +10 -1
- package/lib/src/Builders/AuthorizationBuilder.js.map +1 -1
- package/lib/src/Builders/BaseBuilder/Validations.d.ts +3 -1
- package/lib/src/Builders/BaseBuilder/Validations.js +5 -5
- package/lib/src/Builders/BaseBuilder/Validations.js.map +1 -1
- package/lib/src/Builders/ManagementBuilder.d.ts +17 -1
- package/lib/src/Builders/ManagementBuilder.js +22 -0
- package/lib/src/Builders/ManagementBuilder.js.map +1 -1
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiManagementRequestBuilder.js +19 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiManagementRequestBuilder.js.map +1 -1
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiReportRequestBuilder.d.ts +2 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiReportRequestBuilder.js +120 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiReportRequestBuilder.js.map +1 -1
- package/lib/src/Builders/TransactionReportBuilder.d.ts +7 -2
- package/lib/src/Builders/TransactionReportBuilder.js +28 -0
- package/lib/src/Builders/TransactionReportBuilder.js.map +1 -1
- package/lib/src/Entities/DisputeDocument.d.ts +5 -0
- package/lib/src/Entities/DisputeDocument.js +10 -0
- package/lib/src/Entities/DisputeDocument.js.map +1 -0
- package/lib/src/Entities/Document.d.ts +10 -0
- package/lib/src/Entities/Document.js +13 -0
- package/lib/src/Entities/Document.js.map +1 -0
- package/lib/src/Entities/Enums/DepositSortProperty.d.ts +6 -0
- package/lib/src/Entities/Enums/DepositSortProperty.js +11 -0
- package/lib/src/Entities/Enums/DepositSortProperty.js.map +1 -0
- package/lib/src/Entities/Enums/DisputeSortProperty.d.ts +12 -0
- package/lib/src/Entities/Enums/DisputeSortProperty.js +17 -0
- package/lib/src/Entities/Enums/DisputeSortProperty.js.map +1 -0
- package/lib/src/Entities/Enums/DisputeStage.d.ts +11 -0
- package/lib/src/Entities/Enums/DisputeStage.js +16 -0
- package/lib/src/Entities/Enums/DisputeStage.js.map +1 -0
- package/lib/src/Entities/Enums/DisputeStatus.d.ts +7 -0
- package/lib/src/Entities/Enums/DisputeStatus.js +12 -0
- package/lib/src/Entities/Enums/DisputeStatus.js.map +1 -0
- package/lib/src/Entities/Enums/DocumentCategory.d.ts +5 -0
- package/lib/src/Entities/Enums/DocumentCategory.js +10 -0
- package/lib/src/Entities/Enums/DocumentCategory.js.map +1 -0
- package/lib/src/Entities/Enums/FileType.d.ts +11 -0
- package/lib/src/Entities/Enums/FileType.js +16 -0
- package/lib/src/Entities/Enums/FileType.js.map +1 -0
- package/lib/src/Entities/Enums.d.ts +8 -0
- package/lib/src/Entities/Enums.js +8 -0
- package/lib/src/Entities/Enums.js.map +1 -1
- package/lib/src/Entities/HostedPaymentData.d.ts +3 -0
- package/lib/src/Entities/HostedPaymentData.js +3 -0
- package/lib/src/Entities/HostedPaymentData.js.map +1 -1
- package/lib/src/Entities/Reporting/DepositSummary.d.ts +29 -0
- package/lib/src/Entities/Reporting/DepositSummary.js +34 -0
- package/lib/src/Entities/Reporting/DepositSummary.js.map +1 -0
- package/lib/src/Entities/Reporting/DisputeSummary.d.ts +53 -0
- package/lib/src/Entities/Reporting/DisputeSummary.js +64 -0
- package/lib/src/Entities/Reporting/DisputeSummary.js.map +1 -0
- package/lib/src/Entities/Reporting/SearchCriteriaBuilder.d.ts +4 -2
- package/lib/src/Entities/Reporting/SearchCriteriaBuilder.js +2 -0
- package/lib/src/Entities/Reporting/SearchCriteriaBuilder.js.map +1 -1
- package/lib/src/Entities/Reporting/index.d.ts +2 -0
- package/lib/src/Entities/Reporting/index.js +2 -0
- package/lib/src/Entities/Reporting/index.js.map +1 -1
- package/lib/src/Entities/Transaction.d.ts +15 -1
- package/lib/src/Entities/Transaction.js +34 -0
- package/lib/src/Entities/Transaction.js.map +1 -1
- package/lib/src/Entities/index.d.ts +8 -0
- package/lib/src/Entities/index.js +8 -0
- package/lib/src/Entities/index.js.map +1 -1
- package/lib/src/Gateways/GpApiConnector.js +3 -0
- package/lib/src/Gateways/GpApiConnector.js.map +1 -1
- package/lib/src/Gateways/GpEcomConnector.js +9 -0
- package/lib/src/Gateways/GpEcomConnector.js.map +1 -1
- package/lib/src/Gateways/PorticoConnector.js +5 -0
- package/lib/src/Gateways/PorticoConnector.js.map +1 -1
- package/lib/src/Mapping/GpApiMapping.d.ts +3 -0
- package/lib/src/Mapping/GpApiMapping.js +128 -13
- package/lib/src/Mapping/GpApiMapping.js.map +1 -1
- package/lib/src/Services/ReportingService.d.ts +8 -1
- package/lib/src/Services/ReportingService.js +21 -0
- package/lib/src/Services/ReportingService.js.map +1 -1
- package/lib/test/Data/BaseGpApiTestConfig.d.ts +14 -0
- package/lib/test/Data/BaseGpApiTestConfig.js +50 -0
- package/lib/test/Data/BaseGpApiTestConfig.js.map +1 -0
- package/lib/test/Data/GpApi3DSTestCards.d.ts +17 -0
- package/lib/test/Data/GpApi3DSTestCards.js +22 -0
- package/lib/test/Data/GpApi3DSTestCards.js.map +1 -0
- package/lib/test/Data/TestCards.d.ts +24 -0
- package/lib/test/Data/TestCards.js +220 -0
- package/lib/test/Data/TestCards.js.map +1 -0
- package/lib/test/Data/TestChecks.d.ts +4 -0
- package/lib/test/Data/TestChecks.js +27 -0
- package/lib/test/Data/TestChecks.js.map +1 -0
- package/lib/test/Data/index.d.ts +4 -0
- package/lib/test/Data/index.js +21 -0
- package/lib/test/Data/index.js.map +1 -0
- package/lib/test/Integration/Gateways/AcsResponse.d.ts +12 -0
- package/lib/test/Integration/Gateways/AcsResponse.js +33 -0
- package/lib/test/Integration/Gateways/AcsResponse.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DS2.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DS2.test.js +1026 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DS2.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DS2Test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DS2Test.js +1029 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DS2Test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DSecure.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DSecure.test.js +643 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DSecure.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DSecureTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DSecureTest.js +649 -0
- package/lib/test/Integration/Gateways/GpApiConnector/3DSecureTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/AccessToken.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/AccessToken.test.js +130 -0
- package/lib/test/Integration/Gateways/GpApiConnector/AccessToken.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/AccessTokenTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/AccessTokenTest.js +109 -0
- package/lib/test/Integration/Gateways/GpApiConnector/AccessTokenTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresent.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresent.test.js +1070 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresent.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.js +1025 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardPresentTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardPresentTest.js +439 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardPresentTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/DebitCard.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/DebitCard.test.js +137 -0
- package/lib/test/Integration/Gateways/GpApiConnector/DebitCard.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/DebitCardTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/DebitCardTest.js +143 -0
- package/lib/test/Integration/Gateways/GpApiConnector/DebitCardTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiCertification.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiCertification.test.js +642 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiCertification.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiCertificationTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiCertificationTest.js +639 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiCertificationTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiTokenManagement.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiTokenManagement.test.js +151 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiTokenManagement.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiTokenManagementTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiTokenManagementTest.js +149 -0
- package/lib/test/Integration/Gateways/GpApiConnector/GpApiTokenManagementTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDeposits.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDeposits.test.js +226 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDeposits.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDepositsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDepositsTest.js +226 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDepositsTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDisputes.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDisputes.test.js +571 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingDisputes.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactions.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactions.test.js +430 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactions.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactionsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactionsTest.js +434 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingSettlementTransactionsTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethods.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethods.test.js +216 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethods.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethodsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethodsTest.js +217 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingStoredPaymentMethodsTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactions.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactions.test.js +340 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactions.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.js +338 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Auth.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Auth.test.js +2426 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Auth.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AuthTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AuthTest.js +2446 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AuthTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Avs.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Avs.test.js +562 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Avs.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AvsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AvsTest.js +506 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/AvsTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Credit.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Credit.test.js +1292 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Credit.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/CreditTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/CreditTest.js +1296 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/CreditTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Hold.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Hold.test.js +880 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/Hold.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/HoldTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/HoldTest.js +847 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Certification/HoldTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Credit.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Credit.test.js +207 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Credit.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/CreditTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/CreditTest.js +215 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/CreditTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Hpp.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Hpp.test.js +137 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Hpp.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/HppTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/HppTest.js +99 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/HppTest.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Recurring.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Recurring.test.js +124 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/Recurring.test.js.map +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/RecurringTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/RecurringTest.js +133 -0
- package/lib/test/Integration/Gateways/GpEcomConnector/RecurringTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ach.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ach.test.js +54 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ach.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/AchTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/AchTest.js +59 -0
- package/lib/test/Integration/Gateways/PorticoConnector/AchTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Check.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Check.test.js +357 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Check.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.js +378 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/CheckTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Ecommerce.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Ecommerce.test.js +1667 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Ecommerce.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheck.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheck.test.js +80 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheck.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.js +86 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceCheckTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.js +1723 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/EcommerceTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Moto.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Moto.test.js +1487 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Moto.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheck.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheck.test.js +80 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheck.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.js +86 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoCheckTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.js +1760 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/MotoTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Recurring.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Recurring.test.js +393 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Recurring.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.js +420 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RecurringTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Retail.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Retail.test.js +2102 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/Retail.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.js +2221 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Certifications/RetailTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Credit.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Credit.test.js +367 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Credit.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.js +392 -0
- package/lib/test/Integration/Gateways/PorticoConnector/CreditTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Debit.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Debit.test.js +83 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Debit.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js +88 -0
- package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ebt.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ebt.test.js +63 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ebt.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.js +72 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EbtTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ecommerce.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ecommerce.test.js +136 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Ecommerce.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js +143 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Gift.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Gift.test.js +121 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Gift.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.js +147 -0
- package/lib/test/Integration/Gateways/PorticoConnector/GiftTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementToken.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementToken.test.js +40 -0
- package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementToken.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementTokenTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementTokenTest.js +48 -0
- package/lib/test/Integration/Gateways/PorticoConnector/PorticoManagementTokenTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Recurring.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Recurring.test.js +87 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Recurring.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.js +101 -0
- package/lib/test/Integration/Gateways/PorticoConnector/RecurringTest.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Reporting.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Reporting.test.js +44 -0
- package/lib/test/Integration/Gateways/PorticoConnector/Reporting.test.js.map +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.js +50 -0
- package/lib/test/Integration/Gateways/PorticoConnector/ReportingTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertification.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertification.test.js +38 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertification.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTest.js +44 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/GetInformationCertificationTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertification.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertification.test.js +206 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertification.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTest.js +221 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayAccountCertificationTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertification.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertification.test.js +52 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertification.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTest.js +60 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayFundCertificationTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertification.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertification.test.js +72 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertification.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTest.js +80 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/ProPayInNetworkTransactionCertificationTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.d.ts +39 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.js +393 -0
- package/lib/test/Integration/Gateways/ProPayConnector/Certifications/TestData/TestAccountData.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/GetInformation.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/GetInformation.test.js +37 -0
- package/lib/test/Integration/Gateways/ProPayConnector/GetInformation.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTest.js +44 -0
- package/lib/test/Integration/Gateways/ProPayConnector/GetInformationTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccount.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccount.test.js +310 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccount.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTest.js +330 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayAccountTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayFunds.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayFunds.test.js +53 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayFunds.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTest.js +60 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayFundsTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransaction.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransaction.test.js +72 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransaction.test.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.js +80 -0
- package/lib/test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.d.ts +34 -0
- package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.js +322 -0
- package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.js.map +1 -0
- package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.d.ts +4 -0
- package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.js +28 -0
- package/lib/test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.js.map +1 -0
- package/lib/test/Integration/Gateways/Terminals/RequestIdProvider.d.ts +4 -0
- package/lib/test/Integration/Gateways/Terminals/RequestIdProvider.js +10 -0
- package/lib/test/Integration/Gateways/Terminals/RequestIdProvider.js.map +1 -0
- package/lib/test/Integration/Gateways/Terminals/UPA/UpaMic.test.d.ts +1 -0
- package/lib/test/Integration/Gateways/Terminals/UPA/UpaMic.test.js +165 -0
- package/lib/test/Integration/Gateways/Terminals/UPA/UpaMic.test.js.map +1 -0
- package/lib/test/Integration/Gateways/Terminals/UPA/UpaMicTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/Terminals/UPA/UpaMicTest.js +149 -0
- package/lib/test/Integration/Gateways/Terminals/UPA/UpaMicTest.js.map +1 -0
- package/lib/test/Integration/Gateways/ThreeDSecureAsClient.d.ts +16 -0
- package/lib/test/Integration/Gateways/ThreeDSecureAsClient.js +212 -0
- package/lib/test/Integration/Gateways/ThreeDSecureAsClient.js.map +1 -0
- package/lib/test/Integration/Services/CheckService.test.d.ts +1 -0
- package/lib/test/Integration/Services/CheckService.test.js +38 -0
- package/lib/test/Integration/Services/CheckService.test.js.map +1 -0
- package/lib/test/Integration/Services/CheckServiceTest.d.ts +1 -0
- package/lib/test/Integration/Services/CheckServiceTest.js +45 -0
- package/lib/test/Integration/Services/CheckServiceTest.js.map +1 -0
- package/lib/test/Integration/Services/CreditService.test.d.ts +1 -0
- package/lib/test/Integration/Services/CreditService.test.js +158 -0
- package/lib/test/Integration/Services/CreditService.test.js.map +1 -0
- package/lib/test/Integration/Services/CreditServiceTest.d.ts +1 -0
- package/lib/test/Integration/Services/CreditServiceTest.js +174 -0
- package/lib/test/Integration/Services/CreditServiceTest.js.map +1 -0
- package/lib/test/Integration/Services/DebitService.test.d.ts +1 -0
- package/lib/test/Integration/Services/DebitService.test.js +77 -0
- package/lib/test/Integration/Services/DebitService.test.js.map +1 -0
- package/lib/test/Integration/Services/DebitServiceTest.d.ts +1 -0
- package/lib/test/Integration/Services/DebitServiceTest.js +81 -0
- package/lib/test/Integration/Services/DebitServiceTest.js.map +1 -0
- package/lib/test/Integration/Services/EBTService.test.d.ts +1 -0
- package/lib/test/Integration/Services/EBTService.test.js +54 -0
- package/lib/test/Integration/Services/EBTService.test.js.map +1 -0
- package/lib/test/Integration/Services/EBTServiceTest.d.ts +1 -0
- package/lib/test/Integration/Services/EBTServiceTest.js +64 -0
- package/lib/test/Integration/Services/EBTServiceTest.js.map +1 -0
- package/lib/test/Unit/Builders/AuthorizationBuilder/Validation.test.d.ts +1 -0
- package/lib/test/Unit/Builders/AuthorizationBuilder/Validation.test.js +122 -0
- package/lib/test/Unit/Builders/AuthorizationBuilder/Validation.test.js.map +1 -0
- package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.d.ts +1 -0
- package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.js +111 -0
- package/lib/test/Unit/Builders/AuthorizationBuilder/ValidationTest.js.map +1 -0
- package/lib/test/Unit/Builders/ReportBuilder/Validation.test.d.ts +1 -0
- package/lib/test/Unit/Builders/ReportBuilder/Validation.test.js +66 -0
- package/lib/test/Unit/Builders/ReportBuilder/Validation.test.js.map +1 -0
- package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.d.ts +1 -0
- package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.js +62 -0
- package/lib/test/Unit/Builders/ReportBuilder/ValidationTest.js.map +1 -0
- package/lib/test/Unit/Gateways/GpEcomConnector/Credit.test.d.ts +1 -0
- package/lib/test/Unit/Gateways/GpEcomConnector/Credit.test.js +32 -0
- package/lib/test/Unit/Gateways/GpEcomConnector/Credit.test.js.map +1 -0
- package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.d.ts +1 -0
- package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.js +34 -0
- package/lib/test/Unit/Gateways/GpEcomConnector/CreditTest.js.map +1 -0
- package/lib/test/Unit/Gateways/PorticoConnector/InputValidation.test.d.ts +1 -0
- package/lib/test/Unit/Gateways/PorticoConnector/InputValidation.test.js +128 -0
- package/lib/test/Unit/Gateways/PorticoConnector/InputValidation.test.js.map +1 -0
- package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.d.ts +1 -0
- package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.js +125 -0
- package/lib/test/Unit/Gateways/PorticoConnector/InputValidationTest.js.map +1 -0
- package/package.json +62 -71
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProPayInNetworkTransactionTest.js","sourceRoot":"","sources":["../../../../../test/Integration/Gateways/ProPayConnector/ProPayInNetworkTransactionTest.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AccountPermissions } from "../../../../../src/Entities/ProFac/AccountPermissions";
|
|
2
|
+
import { BankAccountData } from "../../../../../src/Entities/ProFac/BankAccountData";
|
|
3
|
+
import { BeneficialOwnerData } from "../../../../../src/Entities/ProFac/BeneficialOwnerData";
|
|
4
|
+
import { BusinessData } from "../../../../../src/Entities/ProFac/BusinessData";
|
|
5
|
+
import { DeviceData } from "../../../../../src/Entities/ProFac/DeviceData";
|
|
6
|
+
import { GrossBillingInformation } from "../../../../../src/Entities/ProFac/GrossBillingInformation";
|
|
7
|
+
import { RenewAccountData } from "../../../../../src/Entities/ProFac/RenewAccountData";
|
|
8
|
+
import { SignificantOwnerData } from "../../../../../src/Entities/ProFac/SignificantOwnerData";
|
|
9
|
+
import { ThreatRiskData } from "../../../../../src/Entities/ProFac/ThreatRiskData";
|
|
10
|
+
import { UserPersonalData } from "../../../../../src/Entities/ProFac/UserPersonalData";
|
|
11
|
+
import { CreditCardData } from "../../../../../src/PaymentMethods";
|
|
12
|
+
import { Address } from "../../../../../src/Entities/Address";
|
|
13
|
+
import { OrderDevice } from "../../../../../src/Entities/ProFac/OrderDevice";
|
|
14
|
+
export declare class TestAccountData {
|
|
15
|
+
static GetBankAccountData(): BankAccountData;
|
|
16
|
+
static GetOrderNewDeviceData(): OrderDevice;
|
|
17
|
+
static GetDeviceDataForOrderDevice(numDeviceTypes?: number, withAttributes?: boolean): DeviceData;
|
|
18
|
+
static GetBusinessData(): BusinessData;
|
|
19
|
+
static GetUserPersonalData(): UserPersonalData;
|
|
20
|
+
static GetThreatRiskData(): ThreatRiskData;
|
|
21
|
+
static GetSignificantOwnerData(): SignificantOwnerData;
|
|
22
|
+
static GetBeneficialOwnerData(): BeneficialOwnerData;
|
|
23
|
+
static GetCreditCardData(): CreditCardData;
|
|
24
|
+
static GetACHData(): BankAccountData;
|
|
25
|
+
static GetMailingAddress(): Address;
|
|
26
|
+
static GetSecondaryBankAccountData(): BankAccountData;
|
|
27
|
+
static GetGrossBillingSettleData(): GrossBillingInformation;
|
|
28
|
+
static GetAccountPermissions(): AccountPermissions;
|
|
29
|
+
static GetRenewAccountDetails(): RenewAccountData;
|
|
30
|
+
static GetDeviceData(numDeviceTypes?: number, withAttributes?: boolean): DeviceData;
|
|
31
|
+
static GetDocumentBase64String(filepath: string): string;
|
|
32
|
+
private static getByteArray;
|
|
33
|
+
static getRandomInt(min: number, max: number): number;
|
|
34
|
+
}
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.TestAccountData = void 0;
|
|
27
|
+
const AccountPermissions_1 = require("../../../../../src/Entities/ProFac/AccountPermissions");
|
|
28
|
+
const BankAccountData_1 = require("../../../../../src/Entities/ProFac/BankAccountData");
|
|
29
|
+
const BeneficialOwnerData_1 = require("../../../../../src/Entities/ProFac/BeneficialOwnerData");
|
|
30
|
+
const BusinessData_1 = require("../../../../../src/Entities/ProFac/BusinessData");
|
|
31
|
+
const DeviceData_1 = require("../../../../../src/Entities/ProFac/DeviceData");
|
|
32
|
+
const DeviceInfo_1 = require("../../../../../src/Entities/ProFac/DeviceInfo");
|
|
33
|
+
const GrossBillingInformation_1 = require("../../../../../src/Entities/ProFac/GrossBillingInformation");
|
|
34
|
+
const OwnersData_1 = require("../../../../../src/Entities/ProFac/OwnersData");
|
|
35
|
+
const RenewAccountData_1 = require("../../../../../src/Entities/ProFac/RenewAccountData");
|
|
36
|
+
const SignificantOwnerData_1 = require("../../../../../src/Entities/ProFac/SignificantOwnerData");
|
|
37
|
+
const ThreatRiskData_1 = require("../../../../../src/Entities/ProFac/ThreatRiskData");
|
|
38
|
+
const UserPersonalData_1 = require("../../../../../src/Entities/ProFac/UserPersonalData");
|
|
39
|
+
const PaymentMethods_1 = require("../../../../../src/PaymentMethods");
|
|
40
|
+
const fs = __importStar(require("fs"));
|
|
41
|
+
const DeviceAttributeInfo_1 = require("../../../../../src/Entities/ProFac/DeviceAttributeInfo");
|
|
42
|
+
const Address_1 = require("../../../../../src/Entities/Address");
|
|
43
|
+
const OrderDevice_1 = require("../../../../../src/Entities/ProFac/OrderDevice");
|
|
44
|
+
class TestAccountData {
|
|
45
|
+
static GetBankAccountData() {
|
|
46
|
+
const bankAccountInformation = new BankAccountData_1.BankAccountData();
|
|
47
|
+
bankAccountInformation.accountCountryCode = "USA";
|
|
48
|
+
bankAccountInformation.accountName = "MyBankAccount";
|
|
49
|
+
bankAccountInformation.accountNumber = "123456789";
|
|
50
|
+
bankAccountInformation.accountOwnershipType = "C";
|
|
51
|
+
bankAccountInformation.routingNumber = "102000076";
|
|
52
|
+
return bankAccountInformation;
|
|
53
|
+
}
|
|
54
|
+
static GetOrderNewDeviceData() {
|
|
55
|
+
const orderDevice = new OrderDevice_1.OrderDevice();
|
|
56
|
+
orderDevice.accountNum = 718581359;
|
|
57
|
+
orderDevice.shipTo = "Test Company";
|
|
58
|
+
orderDevice.shipToContact = "John Q. Public";
|
|
59
|
+
orderDevice.shipToAddress = "2675 W 600 N";
|
|
60
|
+
orderDevice.shipToAddress2 = "Apt G";
|
|
61
|
+
orderDevice.shipToCity = "Lindon";
|
|
62
|
+
orderDevice.shipToState = "UT";
|
|
63
|
+
orderDevice.shipToZip = "84042";
|
|
64
|
+
orderDevice.shipToPhone = "801-555-1212";
|
|
65
|
+
orderDevice.cardholderName = "Johnny Cage";
|
|
66
|
+
orderDevice.ccNum = "4111111111111111";
|
|
67
|
+
orderDevice.expDate = "0427";
|
|
68
|
+
orderDevice.cVV2 = "999";
|
|
69
|
+
orderDevice.billingZip = "84003";
|
|
70
|
+
return orderDevice;
|
|
71
|
+
}
|
|
72
|
+
static GetDeviceDataForOrderDevice(numDeviceTypes = 1, withAttributes = true) {
|
|
73
|
+
const deviceTypes = ["Secure Submit"];
|
|
74
|
+
const deviceData = new DeviceData_1.DeviceData();
|
|
75
|
+
deviceData.devices = Array();
|
|
76
|
+
for (let i = 0; i < numDeviceTypes; i++) {
|
|
77
|
+
const deviceInfo = new DeviceInfo_1.DeviceInfo();
|
|
78
|
+
if (i >= deviceTypes.length)
|
|
79
|
+
break;
|
|
80
|
+
deviceInfo.name = deviceTypes[i];
|
|
81
|
+
deviceInfo.quantity = 1;
|
|
82
|
+
if (withAttributes) {
|
|
83
|
+
const deviceAtrributeInfo = new DeviceAttributeInfo_1.DeviceAttributeInfo();
|
|
84
|
+
deviceAtrributeInfo.name = "Heartland.AMD.OfficeKey";
|
|
85
|
+
deviceAtrributeInfo.value = "123456";
|
|
86
|
+
deviceInfo.attributes = [deviceAtrributeInfo];
|
|
87
|
+
}
|
|
88
|
+
deviceData.devices = [deviceInfo];
|
|
89
|
+
}
|
|
90
|
+
return deviceData;
|
|
91
|
+
}
|
|
92
|
+
static GetBusinessData() {
|
|
93
|
+
const businessData = new BusinessData_1.BusinessData();
|
|
94
|
+
businessData.businessLegalName = "Twain Enterprises";
|
|
95
|
+
businessData.doingBusinessAs = "Twain Enterprises";
|
|
96
|
+
businessData.employerIdentificationNumber = String(this.getRandomInt(100000000, 999999999));
|
|
97
|
+
businessData.businessDescription = "Accounting Services";
|
|
98
|
+
businessData.websiteURL = "https://www.Propay.com";
|
|
99
|
+
businessData.merchantCategoryCode = "5399";
|
|
100
|
+
businessData.monthlyBankCardVolume = "50000";
|
|
101
|
+
businessData.averageTicket = "100";
|
|
102
|
+
businessData.highestTicket = "300";
|
|
103
|
+
businessData.businessType = "D";
|
|
104
|
+
const businessAddress = new Address_1.Address();
|
|
105
|
+
businessAddress.streetAddress1 = "123 Main St.";
|
|
106
|
+
businessAddress.city = "Downtown";
|
|
107
|
+
businessAddress.state = "NJ";
|
|
108
|
+
businessAddress.postalCode = "12345";
|
|
109
|
+
businessAddress.country = "USA";
|
|
110
|
+
businessData.businessAddress = businessAddress;
|
|
111
|
+
return businessData;
|
|
112
|
+
}
|
|
113
|
+
static GetUserPersonalData() {
|
|
114
|
+
const accountPersonalInformation = new UserPersonalData_1.UserPersonalData();
|
|
115
|
+
accountPersonalInformation.dayPhone = "4464464464";
|
|
116
|
+
accountPersonalInformation.eveningPhone = "4464464464";
|
|
117
|
+
accountPersonalInformation.externalID = String(this.getRandomInt(1000000, 999999999));
|
|
118
|
+
accountPersonalInformation.firstName = "David";
|
|
119
|
+
accountPersonalInformation.lastName = "Tennant";
|
|
120
|
+
accountPersonalInformation.phonePIN = "1234";
|
|
121
|
+
accountPersonalInformation.sourceEmail =
|
|
122
|
+
"user" + this.getRandomInt(1, 10000) + "@user.com";
|
|
123
|
+
accountPersonalInformation.sSN = "123456789";
|
|
124
|
+
accountPersonalInformation.dateOfBirth = "01-01-1981";
|
|
125
|
+
accountPersonalInformation.tier = "TestEIN";
|
|
126
|
+
accountPersonalInformation.ipSignup = "4.14.150.145";
|
|
127
|
+
accountPersonalInformation.uSCitizen = true;
|
|
128
|
+
accountPersonalInformation.bOAttestation = true;
|
|
129
|
+
accountPersonalInformation.termsAcceptanceIP = "4.14.150.145";
|
|
130
|
+
accountPersonalInformation.termsAcceptanceTimeStamp =
|
|
131
|
+
"2022-10-27 12:57:08.2021237";
|
|
132
|
+
accountPersonalInformation.termsVersion = 1;
|
|
133
|
+
const userAddress = new Address_1.Address();
|
|
134
|
+
userAddress.streetAddress1 = "123 Main St.";
|
|
135
|
+
userAddress.city = "Downtown";
|
|
136
|
+
userAddress.state = "NJ";
|
|
137
|
+
userAddress.postalCode = "12345";
|
|
138
|
+
userAddress.country = "USA";
|
|
139
|
+
accountPersonalInformation.userAddress = userAddress;
|
|
140
|
+
const mailingAddress = new Address_1.Address();
|
|
141
|
+
mailingAddress.streetAddress1 = "123 Main St.";
|
|
142
|
+
mailingAddress.city = "Downtown";
|
|
143
|
+
mailingAddress.state = "NJ";
|
|
144
|
+
mailingAddress.postalCode = "12345";
|
|
145
|
+
mailingAddress.country = "USA";
|
|
146
|
+
accountPersonalInformation.mailingAddress = mailingAddress;
|
|
147
|
+
return accountPersonalInformation;
|
|
148
|
+
}
|
|
149
|
+
static GetThreatRiskData() {
|
|
150
|
+
const threatRiskData = new ThreatRiskData_1.ThreatRiskData();
|
|
151
|
+
threatRiskData.merchantSourceIP = "8.8.8.8";
|
|
152
|
+
threatRiskData.threatMetrixPolicy = "Default";
|
|
153
|
+
threatRiskData.threatMetrixSessionID =
|
|
154
|
+
"dad889c1-1ca4-4fq71-8f6f-807eb4408bc7";
|
|
155
|
+
return threatRiskData;
|
|
156
|
+
}
|
|
157
|
+
static GetSignificantOwnerData() {
|
|
158
|
+
const significantOwnerData = new SignificantOwnerData_1.SignificantOwnerData();
|
|
159
|
+
significantOwnerData.authorizedSignerFirstName = "John";
|
|
160
|
+
significantOwnerData.authorizedSignerLastName = "Doe";
|
|
161
|
+
significantOwnerData.authorizedSignerTitle = "Director";
|
|
162
|
+
significantOwnerData.significantOwner.firstName = "John";
|
|
163
|
+
return significantOwnerData;
|
|
164
|
+
}
|
|
165
|
+
static GetBeneficialOwnerData() {
|
|
166
|
+
const ownersInformation = new BeneficialOwnerData_1.BeneficialOwnerData();
|
|
167
|
+
ownersInformation.ownersCount = "2";
|
|
168
|
+
const firstOwner = new OwnersData_1.OwnersData();
|
|
169
|
+
firstOwner.firstName = "First1";
|
|
170
|
+
firstOwner.lastName = "Last1";
|
|
171
|
+
firstOwner.title = "CEO";
|
|
172
|
+
firstOwner.email = "abc@qamail.com";
|
|
173
|
+
firstOwner.DateOfBirth = "11-11-1988";
|
|
174
|
+
firstOwner.sSN = "123545677";
|
|
175
|
+
const firstOwnerAddress = new Address_1.Address();
|
|
176
|
+
firstOwnerAddress.streetAddress1 = "123 Main St.";
|
|
177
|
+
firstOwnerAddress.city = "Downtown";
|
|
178
|
+
firstOwnerAddress.state = "NJ";
|
|
179
|
+
firstOwnerAddress.postalCode = "12345";
|
|
180
|
+
firstOwnerAddress.country = "USA";
|
|
181
|
+
firstOwner.ownerAddress = firstOwnerAddress;
|
|
182
|
+
//Second Owner
|
|
183
|
+
const secondOwner = new OwnersData_1.OwnersData();
|
|
184
|
+
secondOwner.firstName = "First4";
|
|
185
|
+
secondOwner.lastName = "Last4";
|
|
186
|
+
secondOwner.title = "Director";
|
|
187
|
+
secondOwner.email = "abc1@qamail.com";
|
|
188
|
+
secondOwner.DateOfBirth = "11-11-1989";
|
|
189
|
+
secondOwner.sSN = "123545677";
|
|
190
|
+
const secondOwnerAddress = new Address_1.Address();
|
|
191
|
+
secondOwnerAddress.streetAddress1 = "123 Main St.";
|
|
192
|
+
secondOwnerAddress.city = "Downtown";
|
|
193
|
+
secondOwnerAddress.state = "NJ";
|
|
194
|
+
secondOwnerAddress.postalCode = "12345";
|
|
195
|
+
secondOwnerAddress.country = "USA";
|
|
196
|
+
secondOwner.ownerAddress = secondOwnerAddress;
|
|
197
|
+
ownersInformation.ownersList = [firstOwner, secondOwner];
|
|
198
|
+
return ownersInformation;
|
|
199
|
+
}
|
|
200
|
+
static GetCreditCardData() {
|
|
201
|
+
const card = new PaymentMethods_1.CreditCardData();
|
|
202
|
+
card.number = "4111111111111111";
|
|
203
|
+
card.expMonth = "12";
|
|
204
|
+
card.expYear = "2025";
|
|
205
|
+
card.cvn = "123";
|
|
206
|
+
card.cardHolderName = "Joe Smith";
|
|
207
|
+
return card;
|
|
208
|
+
}
|
|
209
|
+
static GetACHData() {
|
|
210
|
+
const bankAccountInformation = new BankAccountData_1.BankAccountData();
|
|
211
|
+
bankAccountInformation.accountNumber = "123456789";
|
|
212
|
+
bankAccountInformation.accountType = "C";
|
|
213
|
+
bankAccountInformation.routingNumber = "102000076";
|
|
214
|
+
return bankAccountInformation;
|
|
215
|
+
}
|
|
216
|
+
static GetMailingAddress() {
|
|
217
|
+
const address = new Address_1.Address();
|
|
218
|
+
address.streetAddress1 = "123 Main St.";
|
|
219
|
+
address.city = "Downtown";
|
|
220
|
+
address.state = "NJ";
|
|
221
|
+
address.postalCode = "12345";
|
|
222
|
+
address.country = "USA";
|
|
223
|
+
return address;
|
|
224
|
+
}
|
|
225
|
+
static GetSecondaryBankAccountData() {
|
|
226
|
+
const bankAccountInformation = new BankAccountData_1.BankAccountData();
|
|
227
|
+
bankAccountInformation.accountCountryCode = "USA";
|
|
228
|
+
bankAccountInformation.accountName = "MyBankAccount";
|
|
229
|
+
bankAccountInformation.accountNumber = "123456788";
|
|
230
|
+
bankAccountInformation.accountOwnershipType = "Personal";
|
|
231
|
+
bankAccountInformation.accountType = "C";
|
|
232
|
+
bankAccountInformation.routingNumber = "102000076";
|
|
233
|
+
bankAccountInformation.bankName = "My Bank";
|
|
234
|
+
return bankAccountInformation;
|
|
235
|
+
}
|
|
236
|
+
static GetGrossBillingSettleData() {
|
|
237
|
+
const grossBillingInformation = new GrossBillingInformation_1.GrossBillingInformation();
|
|
238
|
+
const grossSettleBankData = new BankAccountData_1.BankAccountData();
|
|
239
|
+
grossSettleBankData.accountCountryCode = "USA";
|
|
240
|
+
grossSettleBankData.accountName = "MyBankAccount";
|
|
241
|
+
grossSettleBankData.accountNumber = "123456788";
|
|
242
|
+
grossSettleBankData.accountOwnershipType = "Personal";
|
|
243
|
+
grossSettleBankData.accountType = "C";
|
|
244
|
+
grossSettleBankData.routingNumber = "102000076";
|
|
245
|
+
grossSettleBankData.accountHolderName = "John";
|
|
246
|
+
grossBillingInformation.grossSettleBankData = grossSettleBankData;
|
|
247
|
+
const grossSettleAddress = new Address_1.Address();
|
|
248
|
+
grossSettleAddress.streetAddress1 = "123 Main St.";
|
|
249
|
+
grossSettleAddress.city = "Downtown";
|
|
250
|
+
grossSettleAddress.state = "NJ";
|
|
251
|
+
grossSettleAddress.postalCode = "12345";
|
|
252
|
+
grossSettleAddress.country = "USA";
|
|
253
|
+
grossBillingInformation.grossSettleAddress = grossSettleAddress;
|
|
254
|
+
const grossSettleCreditCardData = new PaymentMethods_1.CreditCardData();
|
|
255
|
+
grossSettleCreditCardData.number = "4111111111111111";
|
|
256
|
+
grossSettleCreditCardData.expMonth = "12";
|
|
257
|
+
grossSettleCreditCardData.expYear = "2025";
|
|
258
|
+
grossSettleCreditCardData.cvn = "123";
|
|
259
|
+
grossSettleCreditCardData.cardHolderName = "Joe Smith";
|
|
260
|
+
grossBillingInformation.grossSettleCreditCardData =
|
|
261
|
+
grossSettleCreditCardData;
|
|
262
|
+
return grossBillingInformation;
|
|
263
|
+
}
|
|
264
|
+
static GetAccountPermissions() {
|
|
265
|
+
const accountPermissions = new AccountPermissions_1.AccountPermissions();
|
|
266
|
+
accountPermissions.cCProcessing = true;
|
|
267
|
+
return accountPermissions;
|
|
268
|
+
}
|
|
269
|
+
static GetRenewAccountDetails() {
|
|
270
|
+
const renewAccountData = new RenewAccountData_1.RenewAccountData();
|
|
271
|
+
renewAccountData.tier = "TestEIN";
|
|
272
|
+
renewAccountData.zipCode = "12345";
|
|
273
|
+
renewAccountData.creditCard = new PaymentMethods_1.CreditCardData();
|
|
274
|
+
renewAccountData.creditCard.number = "4111111111111111";
|
|
275
|
+
renewAccountData.creditCard.expMonth = "12";
|
|
276
|
+
renewAccountData.creditCard.expYear = "2025";
|
|
277
|
+
renewAccountData.creditCard.cvn = "123";
|
|
278
|
+
renewAccountData.paymentBankAccountNumber = "123456789";
|
|
279
|
+
renewAccountData.paymentBankRoutingNumber = "102000076";
|
|
280
|
+
renewAccountData.paymentBankAccountType = "Checking";
|
|
281
|
+
return renewAccountData;
|
|
282
|
+
}
|
|
283
|
+
static GetDeviceData(numDeviceTypes = 1, withAttributes = true) {
|
|
284
|
+
const deviceTypes = ["PAX S500", "Secure Submit"];
|
|
285
|
+
const deviceData = new DeviceData_1.DeviceData();
|
|
286
|
+
deviceData.devices = Array();
|
|
287
|
+
for (let i = 0; i < numDeviceTypes; i++) {
|
|
288
|
+
const deviceInfo = new DeviceInfo_1.DeviceInfo();
|
|
289
|
+
if (i >= deviceTypes.length)
|
|
290
|
+
break;
|
|
291
|
+
deviceInfo.name = deviceTypes[i];
|
|
292
|
+
deviceInfo.quantity = 1;
|
|
293
|
+
if (withAttributes) {
|
|
294
|
+
const deviceAtrributeInfo = new DeviceAttributeInfo_1.DeviceAttributeInfo();
|
|
295
|
+
deviceAtrributeInfo.name = "Heartland.AMD.OfficeKey";
|
|
296
|
+
deviceAtrributeInfo.value = "123456";
|
|
297
|
+
deviceInfo.attributes = [deviceAtrributeInfo];
|
|
298
|
+
}
|
|
299
|
+
deviceData.devices = [deviceInfo];
|
|
300
|
+
}
|
|
301
|
+
return deviceData;
|
|
302
|
+
}
|
|
303
|
+
static GetDocumentBase64String(filepath) {
|
|
304
|
+
return this.getByteArray(filepath);
|
|
305
|
+
}
|
|
306
|
+
static getByteArray(filePath) {
|
|
307
|
+
const fileData = fs.readFileSync(filePath);
|
|
308
|
+
const buff = Buffer.from(fileData);
|
|
309
|
+
const base64data = buff.toString("base64");
|
|
310
|
+
return base64data;
|
|
311
|
+
}
|
|
312
|
+
static getRandomInt(min, max) {
|
|
313
|
+
const floatRandom = Math.random();
|
|
314
|
+
const difference = max - min;
|
|
315
|
+
// random between 0 and the difference
|
|
316
|
+
const random = Math.round(difference * floatRandom);
|
|
317
|
+
const randomWithinRange = random + min;
|
|
318
|
+
return randomWithinRange;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
exports.TestAccountData = TestAccountData;
|
|
322
|
+
//# sourceMappingURL=TestAccountData.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TestAccountData.js","sourceRoot":"","sources":["../../../../../../test/Integration/Gateways/ProPayConnector/TestData/TestAccountData.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TestFundsData = void 0;
|
|
4
|
+
const PaymentMethods_1 = require("../../../../../src/PaymentMethods");
|
|
5
|
+
const Address_1 = require("../../../../../src/Entities/Address");
|
|
6
|
+
const FlashFundsPaymentCardData_1 = require("../../../../../src/Entities/ProFac/FlashFundsPaymentCardData");
|
|
7
|
+
class TestFundsData {
|
|
8
|
+
static GetFlashFundsPaymentCardData() {
|
|
9
|
+
const cardData = new FlashFundsPaymentCardData_1.FlashFundsPaymentCardData();
|
|
10
|
+
const creditCard = new PaymentMethods_1.CreditCardData();
|
|
11
|
+
creditCard.number = "4895142232120006";
|
|
12
|
+
creditCard.expMonth = "10";
|
|
13
|
+
creditCard.expYear = "2025";
|
|
14
|
+
creditCard.cvn = "022";
|
|
15
|
+
creditCard.cardHolderName = "Clint Eastwood";
|
|
16
|
+
cardData.creditCard = creditCard;
|
|
17
|
+
const cardholderAddress = new Address_1.Address();
|
|
18
|
+
cardholderAddress.streetAddress1 = "900 Metro Center Blv";
|
|
19
|
+
cardholderAddress.city = "San Fransisco";
|
|
20
|
+
cardholderAddress.state = "CA";
|
|
21
|
+
cardholderAddress.postalCode = "94404";
|
|
22
|
+
cardholderAddress.country = "USA";
|
|
23
|
+
cardData.cardholderAddress = cardholderAddress;
|
|
24
|
+
return cardData;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
exports.TestFundsData = TestFundsData;
|
|
28
|
+
//# sourceMappingURL=TestFundsData.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TestFundsData.js","sourceRoot":"","sources":["../../../../../../test/Integration/Gateways/ProPayConnector/TestData/TestFundsData.ts"],"names":[],"mappings":";;;AAAA,sEAAmE;AACnE,iEAA8D;AAC9D,4GAAyG;AAEzG,MAAa,aAAa;IACjB,MAAM,CAAC,4BAA4B;QACxC,MAAM,QAAQ,GAAG,IAAI,qDAAyB,EAAE,CAAC;QACjD,MAAM,UAAU,GAAG,IAAI,+BAAc,EAAE,CAAC;QACxC,UAAU,CAAC,MAAM,GAAG,kBAAkB,CAAC;QACvC,UAAU,CAAC,QAAQ,GAAG,IAAI,CAAC;QAC3B,UAAU,CAAC,OAAO,GAAG,MAAM,CAAC;QAC5B,UAAU,CAAC,GAAG,GAAG,KAAK,CAAC;QACvB,UAAU,CAAC,cAAc,GAAG,gBAAgB,CAAC;QAC7C,QAAQ,CAAC,UAAU,GAAG,UAAU,CAAC;QACjC,MAAM,iBAAiB,GAAG,IAAI,iBAAO,EAAE,CAAC;QACxC,iBAAiB,CAAC,cAAc,GAAG,sBAAsB,CAAC;QAC1D,iBAAiB,CAAC,IAAI,GAAG,eAAe,CAAC;QACzC,iBAAiB,CAAC,KAAK,GAAG,IAAI,CAAC;QAC/B,iBAAiB,CAAC,UAAU,GAAG,OAAO,CAAC;QACvC,iBAAiB,CAAC,OAAO,GAAG,KAAK,CAAC;QAClC,QAAQ,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;QAC/C,OAAO,QAAQ,CAAC;IAClB,CAAC;CACF;AAnBD,sCAmBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RequestIdProvider = void 0;
|
|
4
|
+
class RequestIdProvider {
|
|
5
|
+
getRequestId() {
|
|
6
|
+
return 10000 + Math.round(10000 * Math.random());
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
exports.RequestIdProvider = RequestIdProvider;
|
|
10
|
+
//# sourceMappingURL=RequestIdProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RequestIdProvider.js","sourceRoot":"","sources":["../../../../../test/Integration/Gateways/Terminals/RequestIdProvider.ts"],"names":[],"mappings":";;;AAEA,MAAa,iBAAiB;IACrB,YAAY;QACjB,OAAO,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;IACnD,CAAC;CACF;AAJD,8CAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const src_1 = require("../../../../../src");
|
|
4
|
+
const BaseGpApiTestConfig_1 = require("../../../../Data/BaseGpApiTestConfig");
|
|
5
|
+
const DeviceService_1 = require("../../../../../src/Services/DeviceService");
|
|
6
|
+
const Enums_1 = require("../../../../../src/Terminals/Enums");
|
|
7
|
+
const RequestIdProvider_1 = require("../RequestIdProvider");
|
|
8
|
+
let device;
|
|
9
|
+
const getConfig = () => {
|
|
10
|
+
const config = new src_1.ConnectionConfig();
|
|
11
|
+
config.deviceType = src_1.DeviceType.UPA_DEVICE;
|
|
12
|
+
config.connectionMode = Enums_1.ConnectionModes.MEET_IN_THE_CLOUD;
|
|
13
|
+
const gpApiConfig = BaseGpApiTestConfig_1.BaseGpApiTestConfig.gpApiSetupConfig(src_1.Channel.CardPresent);
|
|
14
|
+
gpApiConfig.country = "US";
|
|
15
|
+
gpApiConfig.deviceCurrency = "USD";
|
|
16
|
+
const accessTokenInfo = new src_1.AccessTokenInfo();
|
|
17
|
+
accessTokenInfo.transactionProcessingAccountName = "transaction_processing";
|
|
18
|
+
gpApiConfig.accessTokenInfo = accessTokenInfo;
|
|
19
|
+
config.gatewayConfig = gpApiConfig;
|
|
20
|
+
config.requestIdProvider = new RequestIdProvider_1.RequestIdProvider();
|
|
21
|
+
return config;
|
|
22
|
+
};
|
|
23
|
+
beforeAll(() => {
|
|
24
|
+
device = DeviceService_1.DeviceService.create(getConfig());
|
|
25
|
+
});
|
|
26
|
+
test("credit sale", async () => {
|
|
27
|
+
const response = await device.sale(15).withEcrId(13).execute();
|
|
28
|
+
expect(response).toBeTruthy();
|
|
29
|
+
expect(response.responseText).toBe("SUCCESS");
|
|
30
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
31
|
+
});
|
|
32
|
+
test("credit sale with terminal ref number", async () => {
|
|
33
|
+
const response = await device
|
|
34
|
+
.sale(15)
|
|
35
|
+
.withTerminalRefNumber(src_1.GenerationUtils.getGuuid())
|
|
36
|
+
.execute();
|
|
37
|
+
expect(response).toBeTruthy();
|
|
38
|
+
expect(response.responseText).toBe("SUCCESS");
|
|
39
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
40
|
+
});
|
|
41
|
+
test("line item", async () => {
|
|
42
|
+
const response = await device.lineItem("Line Item #1", "10.00");
|
|
43
|
+
expect(response).toBeTruthy();
|
|
44
|
+
expect(response.deviceResponseCode).toBe("SUCCESS");
|
|
45
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
46
|
+
});
|
|
47
|
+
test("credit auth", async () => {
|
|
48
|
+
const response = await device
|
|
49
|
+
.authorize(10)
|
|
50
|
+
.withEcrId(13)
|
|
51
|
+
.withTerminalRefNumber("1234")
|
|
52
|
+
.execute();
|
|
53
|
+
expect(response).toBeTruthy();
|
|
54
|
+
expect(response.responseText).toBe("SUCCESS");
|
|
55
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
56
|
+
});
|
|
57
|
+
test("credit auth and capture", async () => {
|
|
58
|
+
const response = await device
|
|
59
|
+
.authorize(15)
|
|
60
|
+
.withEcrId(13)
|
|
61
|
+
.withTerminalRefNumber("1234")
|
|
62
|
+
.execute();
|
|
63
|
+
expect(response).toBeTruthy();
|
|
64
|
+
expect(response.responseText).toBe("SUCCESS");
|
|
65
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
66
|
+
const capture = await device
|
|
67
|
+
.capture(15)
|
|
68
|
+
.withTransactionId(response.transactionId)
|
|
69
|
+
.execute();
|
|
70
|
+
expect(capture).toBeTruthy();
|
|
71
|
+
expect(capture.responseText).toBe("SUCCESS");
|
|
72
|
+
expect(capture.deviceResponseText).toBe("INITIATED");
|
|
73
|
+
});
|
|
74
|
+
test("credit capture randomId", async () => {
|
|
75
|
+
const capture = await device
|
|
76
|
+
.capture(15)
|
|
77
|
+
.withTransactionId(src_1.GenerationUtils.getGuuid())
|
|
78
|
+
.execute();
|
|
79
|
+
expect(capture).toBeTruthy();
|
|
80
|
+
expect(capture.responseText).toBe("SUCCESS");
|
|
81
|
+
expect(capture.deviceResponseText).toBe("INITIATED");
|
|
82
|
+
});
|
|
83
|
+
test("credit refund", async () => {
|
|
84
|
+
const response = await device.sale(10).execute();
|
|
85
|
+
expect(response).toBeTruthy();
|
|
86
|
+
expect(response.responseText).toBe("SUCCESS");
|
|
87
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
88
|
+
expect(response.transactionId).toBeTruthy();
|
|
89
|
+
const refund = await device
|
|
90
|
+
.refundById(10)
|
|
91
|
+
.withTransactionId(response.transactionId)
|
|
92
|
+
.execute();
|
|
93
|
+
expect(refund).toBeTruthy();
|
|
94
|
+
expect(refund.responseText).toBe("SUCCESS");
|
|
95
|
+
expect(refund.deviceResponseText).toBe("INITIATED");
|
|
96
|
+
});
|
|
97
|
+
test("credit verify", async () => {
|
|
98
|
+
const verify = await device.verify().execute();
|
|
99
|
+
expect(verify).toBeTruthy();
|
|
100
|
+
expect(verify.responseText).toBe("SUCCESS");
|
|
101
|
+
expect(verify.deviceResponseText).toBe("INITIATED");
|
|
102
|
+
});
|
|
103
|
+
test("credit void", async () => {
|
|
104
|
+
const response = await device.sale(10).execute();
|
|
105
|
+
expect(response).toBeTruthy();
|
|
106
|
+
expect(response.responseText).toBe("SUCCESS");
|
|
107
|
+
expect(response.deviceResponseText).toBe("INITIATED");
|
|
108
|
+
expect(response.transactionId).toBeTruthy();
|
|
109
|
+
const voided = await device
|
|
110
|
+
.void()
|
|
111
|
+
.withTransactionId(response.transactionId)
|
|
112
|
+
.execute();
|
|
113
|
+
expect(voided).toBeTruthy();
|
|
114
|
+
expect(voided.responseText).toBe("SUCCESS");
|
|
115
|
+
expect(voided.deviceResponseText).toBe("INITIATED");
|
|
116
|
+
});
|
|
117
|
+
test("credit sale without amount", async () => {
|
|
118
|
+
try {
|
|
119
|
+
await expect(() => {
|
|
120
|
+
device.sale().execute();
|
|
121
|
+
}).rejects.toThrow(src_1.BuilderError);
|
|
122
|
+
}
|
|
123
|
+
catch (error) {
|
|
124
|
+
expect(error).toBeTruthy();
|
|
125
|
+
expect(error?.message).toBe("amount cannot be null for this transaction type.");
|
|
126
|
+
expect(error).toBeInstanceOf(src_1.BuilderError);
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
test("credit auth without amount", async () => {
|
|
130
|
+
try {
|
|
131
|
+
await expect(() => {
|
|
132
|
+
device.authorize().execute();
|
|
133
|
+
}).rejects.toThrow(src_1.BuilderError);
|
|
134
|
+
}
|
|
135
|
+
catch (error) {
|
|
136
|
+
expect(error).toBeTruthy();
|
|
137
|
+
expect(error?.message).toBe("amount cannot be null for this transaction type.");
|
|
138
|
+
expect(error).toBeInstanceOf(src_1.BuilderError);
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
test("credit capture without transactionId", async () => {
|
|
142
|
+
try {
|
|
143
|
+
await expect(() => {
|
|
144
|
+
device.capture(10).execute();
|
|
145
|
+
}).rejects.toThrow();
|
|
146
|
+
}
|
|
147
|
+
catch (error) {
|
|
148
|
+
expect(error).toBeTruthy();
|
|
149
|
+
expect(error?.message).toBe("transactionId cannot be null for this transaction type.");
|
|
150
|
+
expect(error).toBeInstanceOf(src_1.BuilderError);
|
|
151
|
+
}
|
|
152
|
+
});
|
|
153
|
+
test("credit refund without amount", async () => {
|
|
154
|
+
try {
|
|
155
|
+
await expect(() => {
|
|
156
|
+
device.refund().execute();
|
|
157
|
+
}).rejects.toThrow();
|
|
158
|
+
}
|
|
159
|
+
catch (error) {
|
|
160
|
+
expect(error).toBeTruthy();
|
|
161
|
+
expect(error?.message).toBe("amount cannot be null for this transaction type.");
|
|
162
|
+
expect(error).toBeInstanceOf(src_1.BuilderError);
|
|
163
|
+
}
|
|
164
|
+
});
|
|
165
|
+
//# sourceMappingURL=UpaMic.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpaMic.test.js","sourceRoot":"","sources":["../../../../../../test/Integration/Gateways/Terminals/UPA/UpaMic.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|