globalpayments-api 3.5.1-fix-2 → 3.5.1-fix-4
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/lib/src/Builders/AuthorizationBuilder.d.ts +348 -0
- package/lib/src/Builders/AuthorizationBuilder.js +668 -0
- package/lib/src/Builders/AuthorizationBuilder.js.map +1 -0
- package/lib/src/Builders/BaseBuilder/ValidationClause.d.ts +16 -0
- package/lib/src/Builders/BaseBuilder/ValidationClause.js +92 -0
- package/lib/src/Builders/BaseBuilder/ValidationClause.js.map +1 -0
- package/lib/src/Builders/BaseBuilder/ValidationTarget.d.ts +16 -0
- package/lib/src/Builders/BaseBuilder/ValidationTarget.js +36 -0
- package/lib/src/Builders/BaseBuilder/ValidationTarget.js.map +1 -0
- package/lib/src/Builders/BaseBuilder/Validations.d.ts +11 -0
- package/lib/src/Builders/BaseBuilder/Validations.js +55 -0
- package/lib/src/Builders/BaseBuilder/Validations.js.map +1 -0
- package/lib/src/Builders/BaseBuilder.d.ts +11 -0
- package/lib/src/Builders/BaseBuilder.js +17 -0
- package/lib/src/Builders/BaseBuilder.js.map +1 -0
- package/lib/src/Builders/ManagementBuilder.d.ts +122 -0
- package/lib/src/Builders/ManagementBuilder.js +244 -0
- package/lib/src/Builders/ManagementBuilder.js.map +1 -0
- package/lib/src/Builders/PayFacBuilder.d.ts +97 -0
- package/lib/src/Builders/PayFacBuilder.js +233 -0
- package/lib/src/Builders/PayFacBuilder.js.map +1 -0
- package/lib/src/Builders/RecurringBuilder.d.ts +13 -0
- package/lib/src/Builders/RecurringBuilder.js +34 -0
- package/lib/src/Builders/RecurringBuilder.js.map +1 -0
- package/lib/src/Builders/ReportBuilder.d.ts +10 -0
- package/lib/src/Builders/ReportBuilder.js +27 -0
- package/lib/src/Builders/ReportBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/AccessTokenRequest.d.ts +11 -0
- package/lib/src/Builders/RequestBuilder/GpApi/AccessTokenRequest.js +23 -0
- package/lib/src/Builders/RequestBuilder/GpApi/AccessTokenRequest.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiAuthorizationRequestBuilder.d.ts +35 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiAuthorizationRequestBuilder.js +448 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiAuthorizationRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiManagementRequestBuilder.d.ts +7 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiManagementRequestBuilder.js +179 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiManagementRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiMiCRequestBuilder.d.ts +16 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiMiCRequestBuilder.js +34 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiMiCRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiReportRequestBuilder.d.ts +11 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiReportRequestBuilder.js +163 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiReportRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiSessionInfo.d.ts +6 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiSessionInfo.js +49 -0
- package/lib/src/Builders/RequestBuilder/GpApi/GpApiSessionInfo.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpApi/index.d.ts +4 -0
- package/lib/src/Builders/RequestBuilder/GpApi/index.js +21 -0
- package/lib/src/Builders/RequestBuilder/GpApi/index.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomAuthorizationRequestBuilder.d.ts +18 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomAuthorizationRequestBuilder.js +125 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomAuthorizationRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomManagementRequestBuilder.d.ts +11 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomManagementRequestBuilder.js +83 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomManagementRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomRequestBuilder.d.ts +9 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomRequestBuilder.js +66 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/GpEcomRequestBuilder.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/index.d.ts +3 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/index.js +20 -0
- package/lib/src/Builders/RequestBuilder/GpEcom/index.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.d.ts +8 -0
- package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.js +39 -0
- package/lib/src/Builders/RequestBuilder/RequestBuilderFactory.js.map +1 -0
- package/lib/src/Builders/RequestBuilder/index.d.ts +3 -0
- package/lib/src/Builders/RequestBuilder/index.js +20 -0
- package/lib/src/Builders/RequestBuilder/index.js.map +1 -0
- package/lib/src/Builders/TransactionBuilder.d.ts +13 -0
- package/lib/src/Builders/TransactionBuilder.js +47 -0
- package/lib/src/Builders/TransactionBuilder.js.map +1 -0
- package/lib/src/Builders/TransactionReportBuilder.d.ts +19 -0
- package/lib/src/Builders/TransactionReportBuilder.js +92 -0
- package/lib/src/Builders/TransactionReportBuilder.js.map +1 -0
- package/lib/src/Builders/index.d.ts +8 -0
- package/lib/src/Builders/index.js +25 -0
- package/lib/src/Builders/index.js.map +1 -0
- package/lib/src/ConfiguredServices.d.ts +24 -0
- package/lib/src/ConfiguredServices.js +33 -0
- package/lib/src/ConfiguredServices.js.map +1 -0
- package/lib/src/Entities/Address.d.ts +14 -0
- package/lib/src/Entities/Address.js +23 -0
- package/lib/src/Entities/Address.js.map +1 -0
- package/lib/src/Entities/BatchSummary.d.ts +6 -0
- package/lib/src/Entities/BatchSummary.js +11 -0
- package/lib/src/Entities/BatchSummary.js.map +1 -0
- package/lib/src/Entities/Card.d.ts +36 -0
- package/lib/src/Entities/Card.js +41 -0
- package/lib/src/Entities/Card.js.map +1 -0
- package/lib/src/Entities/CardIssuerResponse.d.ts +22 -0
- package/lib/src/Entities/CardIssuerResponse.js +27 -0
- package/lib/src/Entities/CardIssuerResponse.js.map +1 -0
- package/lib/src/Entities/Customer.d.ts +74 -0
- package/lib/src/Entities/Customer.js +94 -0
- package/lib/src/Entities/Customer.js.map +1 -0
- package/lib/src/Entities/CustomerDocument.d.ts +8 -0
- package/lib/src/Entities/CustomerDocument.js +16 -0
- package/lib/src/Entities/CustomerDocument.js.map +1 -0
- package/lib/src/Entities/DocumentUploadData.d.ts +13 -0
- package/lib/src/Entities/DocumentUploadData.js +81 -0
- package/lib/src/Entities/DocumentUploadData.js.map +1 -0
- package/lib/src/Entities/EcommerceInfo.d.ts +12 -0
- package/lib/src/Entities/EcommerceInfo.js +22 -0
- package/lib/src/Entities/EcommerceInfo.js.map +1 -0
- package/lib/src/Entities/EncryptionData.d.ts +7 -0
- package/lib/src/Entities/EncryptionData.js +16 -0
- package/lib/src/Entities/EncryptionData.js.map +1 -0
- package/lib/src/Entities/Enums/AcquisitionType.d.ts +10 -0
- package/lib/src/Entities/Enums/AcquisitionType.js +15 -0
- package/lib/src/Entities/Enums/AcquisitionType.js.map +1 -0
- package/lib/src/Entities/Enums/CardTypeFilter.d.ts +7 -0
- package/lib/src/Entities/Enums/CardTypeFilter.js +12 -0
- package/lib/src/Entities/Enums/CardTypeFilter.js.map +1 -0
- package/lib/src/Entities/Enums.d.ts +669 -0
- package/lib/src/Entities/Enums.js +859 -0
- package/lib/src/Entities/Enums.js.map +1 -0
- package/lib/src/Entities/Errors.d.ts +23 -0
- package/lib/src/Entities/Errors.js +72 -0
- package/lib/src/Entities/Errors.js.map +1 -0
- package/lib/src/Entities/FraudRule.d.ts +8 -0
- package/lib/src/Entities/FraudRule.js +17 -0
- package/lib/src/Entities/FraudRule.js.map +1 -0
- package/lib/src/Entities/GpApi/AccessTokenInfo.d.ts +16 -0
- package/lib/src/Entities/GpApi/AccessTokenInfo.js +21 -0
- package/lib/src/Entities/GpApi/AccessTokenInfo.js.map +1 -0
- package/lib/src/Entities/GpApi/DTO/Card.d.ts +16 -0
- package/lib/src/Entities/GpApi/DTO/Card.js +21 -0
- package/lib/src/Entities/GpApi/DTO/Card.js.map +1 -0
- package/lib/src/Entities/GpApi/DTO/PaymentMethod.d.ts +17 -0
- package/lib/src/Entities/GpApi/DTO/PaymentMethod.js +21 -0
- package/lib/src/Entities/GpApi/DTO/PaymentMethod.js.map +1 -0
- package/lib/src/Entities/GpApi/DTO/index.d.ts +2 -0
- package/lib/src/Entities/GpApi/DTO/index.js +19 -0
- package/lib/src/Entities/GpApi/DTO/index.js.map +1 -0
- package/lib/src/Entities/GpApi/GpApiAccount.d.ts +5 -0
- package/lib/src/Entities/GpApi/GpApiAccount.js +13 -0
- package/lib/src/Entities/GpApi/GpApiAccount.js.map +1 -0
- package/lib/src/Entities/GpApi/GpApiRequest.d.ts +21 -0
- package/lib/src/Entities/GpApi/GpApiRequest.js +26 -0
- package/lib/src/Entities/GpApi/GpApiRequest.js.map +1 -0
- package/lib/src/Entities/GpApi/GpApiTokenResponse.d.ts +52 -0
- package/lib/src/Entities/GpApi/GpApiTokenResponse.js +115 -0
- package/lib/src/Entities/GpApi/GpApiTokenResponse.js.map +1 -0
- package/lib/src/Entities/GpApi/PageResult.d.ts +8 -0
- package/lib/src/Entities/GpApi/PageResult.js +13 -0
- package/lib/src/Entities/GpApi/PageResult.js.map +1 -0
- package/lib/src/Entities/GpApi/index.d.ts +5 -0
- package/lib/src/Entities/GpApi/index.js +22 -0
- package/lib/src/Entities/GpApi/index.js.map +1 -0
- package/lib/src/Entities/HostedPaymentData.d.ts +10 -0
- package/lib/src/Entities/HostedPaymentData.js +17 -0
- package/lib/src/Entities/HostedPaymentData.js.map +1 -0
- package/lib/src/Entities/IRequestBuilder.d.ts +6 -0
- package/lib/src/Entities/IRequestBuilder.js +3 -0
- package/lib/src/Entities/IRequestBuilder.js.map +1 -0
- package/lib/src/Entities/IRequestLogger.d.ts +8 -0
- package/lib/src/Entities/IRequestLogger.js +3 -0
- package/lib/src/Entities/IRequestLogger.js.map +1 -0
- package/lib/src/Entities/LodgingData.d.ts +14 -0
- package/lib/src/Entities/LodgingData.js +18 -0
- package/lib/src/Entities/LodgingData.js.map +1 -0
- package/lib/src/Entities/LodgingItems.d.ts +6 -0
- package/lib/src/Entities/LodgingItems.js +11 -0
- package/lib/src/Entities/LodgingItems.js.map +1 -0
- package/lib/src/Entities/MaskedValueCollection.d.ts +12 -0
- package/lib/src/Entities/MaskedValueCollection.js +53 -0
- package/lib/src/Entities/MaskedValueCollection.js.map +1 -0
- package/lib/src/Entities/PayerDetails.d.ts +8 -0
- package/lib/src/Entities/PayerDetails.js +12 -0
- package/lib/src/Entities/PayerDetails.js.map +1 -0
- package/lib/src/Entities/PhoneNumber.d.ts +6 -0
- package/lib/src/Entities/PhoneNumber.js +15 -0
- package/lib/src/Entities/PhoneNumber.js.map +1 -0
- package/lib/src/Entities/ProFac/AccountBalanceResponseData.d.ts +7 -0
- package/lib/src/Entities/ProFac/AccountBalanceResponseData.js +12 -0
- package/lib/src/Entities/ProFac/AccountBalanceResponseData.js.map +1 -0
- package/lib/src/Entities/ProFac/AccountPermissions.d.ts +15 -0
- package/lib/src/Entities/ProFac/AccountPermissions.js +19 -0
- package/lib/src/Entities/ProFac/AccountPermissions.js.map +1 -0
- package/lib/src/Entities/ProFac/BankAccountData.d.ts +10 -0
- package/lib/src/Entities/ProFac/BankAccountData.js +42 -0
- package/lib/src/Entities/ProFac/BankAccountData.js.map +1 -0
- package/lib/src/Entities/ProFac/BankAccountOwnershipData.d.ts +8 -0
- package/lib/src/Entities/ProFac/BankAccountOwnershipData.js +15 -0
- package/lib/src/Entities/ProFac/BankAccountOwnershipData.js.map +1 -0
- package/lib/src/Entities/ProFac/BeneficialOwnerData.d.ts +6 -0
- package/lib/src/Entities/ProFac/BeneficialOwnerData.js +12 -0
- package/lib/src/Entities/ProFac/BeneficialOwnerData.js.map +1 -0
- package/lib/src/Entities/ProFac/BeneficialOwnerDataResult.d.ts +5 -0
- package/lib/src/Entities/ProFac/BeneficialOwnerDataResult.js +10 -0
- package/lib/src/Entities/ProFac/BeneficialOwnerDataResult.js.map +1 -0
- package/lib/src/Entities/ProFac/BusinessData.d.ts +15 -0
- package/lib/src/Entities/ProFac/BusinessData.js +50 -0
- package/lib/src/Entities/ProFac/BusinessData.js.map +1 -0
- package/lib/src/Entities/ProFac/DeviceAttributeInfo.d.ts +4 -0
- package/lib/src/Entities/ProFac/DeviceAttributeInfo.js +17 -0
- package/lib/src/Entities/ProFac/DeviceAttributeInfo.js.map +1 -0
- package/lib/src/Entities/ProFac/DeviceData.d.ts +5 -0
- package/lib/src/Entities/ProFac/DeviceData.js +11 -0
- package/lib/src/Entities/ProFac/DeviceData.js.map +1 -0
- package/lib/src/Entities/ProFac/DeviceInfo.d.ts +6 -0
- package/lib/src/Entities/ProFac/DeviceInfo.js +19 -0
- package/lib/src/Entities/ProFac/DeviceInfo.js.map +1 -0
- package/lib/src/Entities/ProFac/FlashFundsPaymentCardData.d.ts +7 -0
- package/lib/src/Entities/ProFac/FlashFundsPaymentCardData.js +15 -0
- package/lib/src/Entities/ProFac/FlashFundsPaymentCardData.js.map +1 -0
- package/lib/src/Entities/ProFac/GrossBillingInformation.d.ts +8 -0
- package/lib/src/Entities/ProFac/GrossBillingInformation.js +10 -0
- package/lib/src/Entities/ProFac/GrossBillingInformation.js.map +1 -0
- package/lib/src/Entities/ProFac/OrderDevice.d.ts +18 -0
- package/lib/src/Entities/ProFac/OrderDevice.js +23 -0
- package/lib/src/Entities/ProFac/OrderDevice.js.map +1 -0
- package/lib/src/Entities/ProFac/OwnersData.d.ts +12 -0
- package/lib/src/Entities/ProFac/OwnersData.js +43 -0
- package/lib/src/Entities/ProFac/OwnersData.js.map +1 -0
- package/lib/src/Entities/ProFac/PayFacResponseData.d.ts +55 -0
- package/lib/src/Entities/ProFac/PayFacResponseData.js +62 -0
- package/lib/src/Entities/ProFac/PayFacResponseData.js.map +1 -0
- package/lib/src/Entities/ProFac/RenewAccountData.d.ts +10 -0
- package/lib/src/Entities/ProFac/RenewAccountData.js +38 -0
- package/lib/src/Entities/ProFac/RenewAccountData.js.map +1 -0
- package/lib/src/Entities/ProFac/SignificantOwnerData.d.ts +8 -0
- package/lib/src/Entities/ProFac/SignificantOwnerData.js +27 -0
- package/lib/src/Entities/ProFac/SignificantOwnerData.js.map +1 -0
- package/lib/src/Entities/ProFac/ThreatRiskData.d.ts +5 -0
- package/lib/src/Entities/ProFac/ThreatRiskData.js +19 -0
- package/lib/src/Entities/ProFac/ThreatRiskData.js.map +1 -0
- package/lib/src/Entities/ProFac/UserPersonalData.d.ts +26 -0
- package/lib/src/Entities/ProFac/UserPersonalData.js +82 -0
- package/lib/src/Entities/ProFac/UserPersonalData.js.map +1 -0
- package/lib/src/Entities/RecurringEntity.d.ts +14 -0
- package/lib/src/Entities/RecurringEntity.js +92 -0
- package/lib/src/Entities/RecurringEntity.js.map +1 -0
- package/lib/src/Entities/Reporting/BaseSummary.d.ts +8 -0
- package/lib/src/Entities/Reporting/BaseSummary.js +13 -0
- package/lib/src/Entities/Reporting/BaseSummary.js.map +1 -0
- package/lib/src/Entities/Reporting/SearchCriteriaBuilder.d.ts +108 -0
- package/lib/src/Entities/Reporting/SearchCriteriaBuilder.js +125 -0
- package/lib/src/Entities/Reporting/SearchCriteriaBuilder.js.map +1 -0
- package/lib/src/Entities/Reporting/StoredPaymentMethodSummary.d.ts +11 -0
- package/lib/src/Entities/Reporting/StoredPaymentMethodSummary.js +16 -0
- package/lib/src/Entities/Reporting/StoredPaymentMethodSummary.js.map +1 -0
- package/lib/src/Entities/Reporting/index.d.ts +3 -0
- package/lib/src/Entities/Reporting/index.js +20 -0
- package/lib/src/Entities/Reporting/index.js.map +1 -0
- package/lib/src/Entities/Request.d.ts +10 -0
- package/lib/src/Entities/Request.js +18 -0
- package/lib/src/Entities/Request.js.map +1 -0
- package/lib/src/Entities/SSORequestData.d.ts +5 -0
- package/lib/src/Entities/SSORequestData.js +19 -0
- package/lib/src/Entities/SSORequestData.js.map +1 -0
- package/lib/src/Entities/Schedule.d.ts +47 -0
- package/lib/src/Entities/Schedule.js +325 -0
- package/lib/src/Entities/Schedule.js.map +1 -0
- package/lib/src/Entities/ServiceEndpoints.d.ts +12 -0
- package/lib/src/Entities/ServiceEndpoints.js +17 -0
- package/lib/src/Entities/ServiceEndpoints.js.map +1 -0
- package/lib/src/Entities/StoredCredentials.d.ts +9 -0
- package/lib/src/Entities/StoredCredentials.js +13 -0
- package/lib/src/Entities/StoredCredentials.js.map +1 -0
- package/lib/src/Entities/Transaction.d.ts +96 -0
- package/lib/src/Entities/Transaction.js +157 -0
- package/lib/src/Entities/Transaction.js.map +1 -0
- package/lib/src/Entities/TransactionStatus.d.ts +13 -0
- package/lib/src/Entities/TransactionStatus.js +29 -0
- package/lib/src/Entities/TransactionStatus.js.map +1 -0
- package/lib/src/Entities/TransactionSummary.d.ts +78 -0
- package/lib/src/Entities/TransactionSummary.js +83 -0
- package/lib/src/Entities/TransactionSummary.js.map +1 -0
- package/lib/src/Entities/UPA/ProcessIndicator.d.ts +7 -0
- package/lib/src/Entities/UPA/ProcessIndicator.js +11 -0
- package/lib/src/Entities/UPA/ProcessIndicator.js.map +1 -0
- package/lib/src/Entities/UPA/UpaParam.d.ts +10 -0
- package/lib/src/Entities/UPA/UpaParam.js +14 -0
- package/lib/src/Entities/UPA/UpaParam.js.map +1 -0
- package/lib/src/Entities/UPA/UpaTransactionData.d.ts +8 -0
- package/lib/src/Entities/UPA/UpaTransactionData.js +12 -0
- package/lib/src/Entities/UPA/UpaTransactionData.js.map +1 -0
- package/lib/src/Entities/UPA/index.d.ts +3 -0
- package/lib/src/Entities/UPA/index.js +20 -0
- package/lib/src/Entities/UPA/index.js.map +1 -0
- package/lib/src/Entities/index.d.ts +31 -0
- package/lib/src/Entities/index.js +48 -0
- package/lib/src/Entities/index.js.map +1 -0
- package/lib/src/Gateways/Gateway.d.ts +16 -0
- package/lib/src/Gateways/Gateway.js +94 -0
- package/lib/src/Gateways/Gateway.js.map +1 -0
- package/lib/src/Gateways/GatewayResponse.d.ts +8 -0
- package/lib/src/Gateways/GatewayResponse.js +15 -0
- package/lib/src/Gateways/GatewayResponse.js.map +1 -0
- package/lib/src/Gateways/GpApiConnector.d.ts +42 -0
- package/lib/src/Gateways/GpApiConnector.js +232 -0
- package/lib/src/Gateways/GpApiConnector.js.map +1 -0
- package/lib/src/Gateways/GpEcomConnector.d.ts +36 -0
- package/lib/src/Gateways/GpEcomConnector.js +468 -0
- package/lib/src/Gateways/GpEcomConnector.js.map +1 -0
- package/lib/src/Gateways/IPayFacProvider.d.ts +5 -0
- package/lib/src/Gateways/IPayFacProvider.js +3 -0
- package/lib/src/Gateways/IPayFacProvider.js.map +1 -0
- package/lib/src/Gateways/IPaymentGateway.d.ts +8 -0
- package/lib/src/Gateways/IPaymentGateway.js +3 -0
- package/lib/src/Gateways/IPaymentGateway.js.map +1 -0
- package/lib/src/Gateways/IRecurringService.d.ts +6 -0
- package/lib/src/Gateways/IRecurringService.js +3 -0
- package/lib/src/Gateways/IRecurringService.js.map +1 -0
- package/lib/src/Gateways/PayPlanConnector.d.ts +42 -0
- package/lib/src/Gateways/PayPlanConnector.js +545 -0
- package/lib/src/Gateways/PayPlanConnector.js.map +1 -0
- package/lib/src/Gateways/PorticoConnector.d.ts +48 -0
- package/lib/src/Gateways/PorticoConnector.js +1013 -0
- package/lib/src/Gateways/PorticoConnector.js.map +1 -0
- package/lib/src/Gateways/ProPayConnector.d.ts +45 -0
- package/lib/src/Gateways/ProPayConnector.js +801 -0
- package/lib/src/Gateways/ProPayConnector.js.map +1 -0
- package/lib/src/Gateways/RestGateway.d.ts +9 -0
- package/lib/src/Gateways/RestGateway.js +77 -0
- package/lib/src/Gateways/RestGateway.js.map +1 -0
- package/lib/src/Gateways/XmlGateway.d.ts +6 -0
- package/lib/src/Gateways/XmlGateway.js +54 -0
- package/lib/src/Gateways/XmlGateway.js.map +1 -0
- package/lib/src/Gateways/https-wrapper.d.ts +3 -0
- package/lib/src/Gateways/https-wrapper.js +81 -0
- package/lib/src/Gateways/https-wrapper.js.map +1 -0
- package/lib/src/Gateways/index.d.ts +9 -0
- package/lib/src/Gateways/index.js +26 -0
- package/lib/src/Gateways/index.js.map +1 -0
- package/lib/src/HostedPaymentConfig.d.ts +12 -0
- package/lib/src/HostedPaymentConfig.js +16 -0
- package/lib/src/HostedPaymentConfig.js.map +1 -0
- package/lib/src/Mapping/EnumMapping.d.ts +8 -0
- package/lib/src/Mapping/EnumMapping.js +84 -0
- package/lib/src/Mapping/EnumMapping.js.map +1 -0
- package/lib/src/Mapping/GpApiMapping.d.ts +15 -0
- package/lib/src/Mapping/GpApiMapping.js +285 -0
- package/lib/src/Mapping/GpApiMapping.js.map +1 -0
- package/lib/src/Mapping/GpEcomMapping.d.ts +9 -0
- package/lib/src/Mapping/GpEcomMapping.js +85 -0
- package/lib/src/Mapping/GpEcomMapping.js.map +1 -0
- package/lib/src/Mapping/index.d.ts +3 -0
- package/lib/src/Mapping/index.js +20 -0
- package/lib/src/Mapping/index.js.map +1 -0
- package/lib/src/PaymentMethods/AlternativePaymentMethod.d.ts +22 -0
- package/lib/src/PaymentMethods/AlternativePaymentMethod.js +47 -0
- package/lib/src/PaymentMethods/AlternativePaymentMethod.js.map +1 -0
- package/lib/src/PaymentMethods/Cash.d.ts +8 -0
- package/lib/src/PaymentMethods/Cash.js +16 -0
- package/lib/src/PaymentMethods/Cash.js.map +1 -0
- package/lib/src/PaymentMethods/Credit.d.ts +109 -0
- package/lib/src/PaymentMethods/Credit.js +161 -0
- package/lib/src/PaymentMethods/Credit.js.map +1 -0
- package/lib/src/PaymentMethods/CreditCardData.d.ts +20 -0
- package/lib/src/PaymentMethods/CreditCardData.js +47 -0
- package/lib/src/PaymentMethods/CreditCardData.js.map +1 -0
- package/lib/src/PaymentMethods/CreditTrackData.d.ts +15 -0
- package/lib/src/PaymentMethods/CreditTrackData.js +36 -0
- package/lib/src/PaymentMethods/CreditTrackData.js.map +1 -0
- package/lib/src/PaymentMethods/Debit.d.ts +48 -0
- package/lib/src/PaymentMethods/Debit.js +64 -0
- package/lib/src/PaymentMethods/Debit.js.map +1 -0
- package/lib/src/PaymentMethods/DebitTrackData.d.ts +9 -0
- package/lib/src/PaymentMethods/DebitTrackData.js +24 -0
- package/lib/src/PaymentMethods/DebitTrackData.js.map +1 -0
- package/lib/src/PaymentMethods/EBT.d.ts +48 -0
- package/lib/src/PaymentMethods/EBT.js +68 -0
- package/lib/src/PaymentMethods/EBT.js.map +1 -0
- package/lib/src/PaymentMethods/EBTCardData.d.ts +16 -0
- package/lib/src/PaymentMethods/EBTCardData.js +25 -0
- package/lib/src/PaymentMethods/EBTCardData.js.map +1 -0
- package/lib/src/PaymentMethods/EBTTrackData.d.ts +8 -0
- package/lib/src/PaymentMethods/EBTTrackData.js +11 -0
- package/lib/src/PaymentMethods/EBTTrackData.js.map +1 -0
- package/lib/src/PaymentMethods/ECheck.d.ts +32 -0
- package/lib/src/PaymentMethods/ECheck.js +38 -0
- package/lib/src/PaymentMethods/ECheck.js.map +1 -0
- package/lib/src/PaymentMethods/GiftCard.d.ts +131 -0
- package/lib/src/PaymentMethods/GiftCard.js +189 -0
- package/lib/src/PaymentMethods/GiftCard.js.map +1 -0
- package/lib/src/PaymentMethods/Interfaces.d.ts +59 -0
- package/lib/src/PaymentMethods/Interfaces.js +3 -0
- package/lib/src/PaymentMethods/Interfaces.js.map +1 -0
- package/lib/src/PaymentMethods/PaymentMethod.d.ts +19 -0
- package/lib/src/PaymentMethods/PaymentMethod.js +57 -0
- package/lib/src/PaymentMethods/PaymentMethod.js.map +1 -0
- package/lib/src/PaymentMethods/RecurringPaymentMethod.d.ts +25 -0
- package/lib/src/PaymentMethods/RecurringPaymentMethod.js +69 -0
- package/lib/src/PaymentMethods/RecurringPaymentMethod.js.map +1 -0
- package/lib/src/PaymentMethods/TransactionReference.d.ts +10 -0
- package/lib/src/PaymentMethods/TransactionReference.js +17 -0
- package/lib/src/PaymentMethods/TransactionReference.js.map +1 -0
- package/lib/src/PaymentMethods/index.d.ts +17 -0
- package/lib/src/PaymentMethods/index.js +34 -0
- package/lib/src/PaymentMethods/index.js.map +1 -0
- package/lib/src/ServiceConfigs/AcceptorConfig.d.ts +29 -0
- package/lib/src/ServiceConfigs/AcceptorConfig.js +43 -0
- package/lib/src/ServiceConfigs/AcceptorConfig.js.map +1 -0
- package/lib/src/ServiceConfigs/Configuration.d.ts +15 -0
- package/lib/src/ServiceConfigs/Configuration.js +20 -0
- package/lib/src/ServiceConfigs/Configuration.js.map +1 -0
- package/lib/src/ServiceConfigs/Gateways/GatewayConfig.d.ts +14 -0
- package/lib/src/ServiceConfigs/Gateways/GatewayConfig.js +30 -0
- package/lib/src/ServiceConfigs/Gateways/GatewayConfig.js.map +1 -0
- package/lib/src/ServiceConfigs/Gateways/GpApiConfig.d.ts +21 -0
- package/lib/src/ServiceConfigs/Gateways/GpApiConfig.js +45 -0
- package/lib/src/ServiceConfigs/Gateways/GpApiConfig.js.map +1 -0
- package/lib/src/ServiceConfigs/Gateways/GpEcomConfig.d.ts +21 -0
- package/lib/src/ServiceConfigs/Gateways/GpEcomConfig.js +51 -0
- package/lib/src/ServiceConfigs/Gateways/GpEcomConfig.js.map +1 -0
- package/lib/src/ServiceConfigs/Gateways/PorticoConfig.d.ts +22 -0
- package/lib/src/ServiceConfigs/Gateways/PorticoConfig.js +117 -0
- package/lib/src/ServiceConfigs/Gateways/PorticoConfig.js.map +1 -0
- package/lib/src/ServiceConfigs/Gateways/index.d.ts +4 -0
- package/lib/src/ServiceConfigs/Gateways/index.js +21 -0
- package/lib/src/ServiceConfigs/Gateways/index.js.map +1 -0
- package/lib/src/ServiceConfigs/ServicesConfigs.d.ts +8 -0
- package/lib/src/ServiceConfigs/ServicesConfigs.js +15 -0
- package/lib/src/ServiceConfigs/ServicesConfigs.js.map +1 -0
- package/lib/src/ServiceConfigs/index.d.ts +4 -0
- package/lib/src/ServiceConfigs/index.js +21 -0
- package/lib/src/ServiceConfigs/index.js.map +1 -0
- package/lib/src/Services/BatchService.d.ts +4 -0
- package/lib/src/Services/BatchService.js +15 -0
- package/lib/src/Services/BatchService.js.map +1 -0
- package/lib/src/Services/CheckService.d.ts +7 -0
- package/lib/src/Services/CheckService.js +20 -0
- package/lib/src/Services/CheckService.js.map +1 -0
- package/lib/src/Services/CreditService.d.ts +13 -0
- package/lib/src/Services/CreditService.js +54 -0
- package/lib/src/Services/CreditService.js.map +1 -0
- package/lib/src/Services/DebitService.d.ts +8 -0
- package/lib/src/Services/DebitService.js +28 -0
- package/lib/src/Services/DebitService.js.map +1 -0
- package/lib/src/Services/DeviceService.d.ts +5 -0
- package/lib/src/Services/DeviceService.js +19 -0
- package/lib/src/Services/DeviceService.js.map +1 -0
- package/lib/src/Services/EBTService.d.ts +9 -0
- package/lib/src/Services/EBTService.js +31 -0
- package/lib/src/Services/EBTService.js.map +1 -0
- package/lib/src/Services/GiftService.d.ts +17 -0
- package/lib/src/Services/GiftService.js +54 -0
- package/lib/src/Services/GiftService.js.map +1 -0
- package/lib/src/Services/GpApiServices.d.ts +4 -0
- package/lib/src/Services/GpApiServices.js +44 -0
- package/lib/src/Services/GpApiServices.js.map +1 -0
- package/lib/src/Services/HostedService.d.ts +10 -0
- package/lib/src/Services/HostedService.js +59 -0
- package/lib/src/Services/HostedService.js.map +1 -0
- package/lib/src/Services/PayFacService.d.ts +26 -0
- package/lib/src/Services/PayFacService.js +76 -0
- package/lib/src/Services/PayFacService.js.map +1 -0
- package/lib/src/Services/RecurringService.d.ts +8 -0
- package/lib/src/Services/RecurringService.js +24 -0
- package/lib/src/Services/RecurringService.js.map +1 -0
- package/lib/src/Services/ReportingService.d.ts +10 -0
- package/lib/src/Services/ReportingService.js +34 -0
- package/lib/src/Services/ReportingService.js.map +1 -0
- package/lib/src/Services/index.d.ts +10 -0
- package/lib/src/Services/index.js +27 -0
- package/lib/src/Services/index.js.map +1 -0
- package/lib/src/ServicesContainer.d.ts +19 -0
- package/lib/src/ServicesContainer.js +64 -0
- package/lib/src/ServicesContainer.js.map +1 -0
- package/lib/src/Terminals/Abstractions/IDeviceCommInterface.d.ts +6 -0
- package/lib/src/Terminals/Abstractions/IDeviceCommInterface.js +3 -0
- package/lib/src/Terminals/Abstractions/IDeviceCommInterface.js.map +1 -0
- package/lib/src/Terminals/Abstractions/IDeviceInterface.d.ts +13 -0
- package/lib/src/Terminals/Abstractions/IDeviceInterface.js +3 -0
- package/lib/src/Terminals/Abstractions/IDeviceInterface.js.map +1 -0
- package/lib/src/Terminals/Abstractions/IDeviceMessage.d.ts +4 -0
- package/lib/src/Terminals/Abstractions/IDeviceMessage.js +3 -0
- package/lib/src/Terminals/Abstractions/IDeviceMessage.js.map +1 -0
- package/lib/src/Terminals/Abstractions/IDeviceResponse.d.ts +52 -0
- package/lib/src/Terminals/Abstractions/IDeviceResponse.js +3 -0
- package/lib/src/Terminals/Abstractions/IDeviceResponse.js.map +1 -0
- package/lib/src/Terminals/Abstractions/IRequestIdProvider.d.ts +3 -0
- package/lib/src/Terminals/Abstractions/IRequestIdProvider.js +3 -0
- package/lib/src/Terminals/Abstractions/IRequestIdProvider.js.map +1 -0
- package/lib/src/Terminals/Abstractions/IRequestSubGroup.d.ts +3 -0
- package/lib/src/Terminals/Abstractions/IRequestSubGroup.js +3 -0
- package/lib/src/Terminals/Abstractions/IRequestSubGroup.js.map +1 -0
- package/lib/src/Terminals/Abstractions/ITerminalConfiguration.d.ts +16 -0
- package/lib/src/Terminals/Abstractions/ITerminalConfiguration.js +3 -0
- package/lib/src/Terminals/Abstractions/ITerminalConfiguration.js.map +1 -0
- package/lib/src/Terminals/Abstractions/index.d.ts +7 -0
- package/lib/src/Terminals/Abstractions/index.js +24 -0
- package/lib/src/Terminals/Abstractions/index.js.map +1 -0
- package/lib/src/Terminals/Builders/TerminalAuthBuilder.d.ts +65 -0
- package/lib/src/Terminals/Builders/TerminalAuthBuilder.js +172 -0
- package/lib/src/Terminals/Builders/TerminalAuthBuilder.js.map +1 -0
- package/lib/src/Terminals/Builders/TerminalBuilder.d.ts +12 -0
- package/lib/src/Terminals/Builders/TerminalBuilder.js +32 -0
- package/lib/src/Terminals/Builders/TerminalBuilder.js.map +1 -0
- package/lib/src/Terminals/Builders/TerminalManageBuilder.d.ts +30 -0
- package/lib/src/Terminals/Builders/TerminalManageBuilder.js +95 -0
- package/lib/src/Terminals/Builders/TerminalManageBuilder.js.map +1 -0
- package/lib/src/Terminals/Builders/index.d.ts +2 -0
- package/lib/src/Terminals/Builders/index.js +19 -0
- package/lib/src/Terminals/Builders/index.js.map +1 -0
- package/lib/src/Terminals/ConnectionConfig.d.ts +20 -0
- package/lib/src/Terminals/ConnectionConfig.js +49 -0
- package/lib/src/Terminals/ConnectionConfig.js.map +1 -0
- package/lib/src/Terminals/DeviceController.d.ts +23 -0
- package/lib/src/Terminals/DeviceController.js +42 -0
- package/lib/src/Terminals/DeviceController.js.map +1 -0
- package/lib/src/Terminals/DeviceInterface.d.ts +21 -0
- package/lib/src/Terminals/DeviceInterface.js +50 -0
- package/lib/src/Terminals/DeviceInterface.js.map +1 -0
- package/lib/src/Terminals/DeviceMessage.d.ts +15 -0
- package/lib/src/Terminals/DeviceMessage.js +42 -0
- package/lib/src/Terminals/DeviceMessage.js.map +1 -0
- package/lib/src/Terminals/DeviceResponse.d.ts +10 -0
- package/lib/src/Terminals/DeviceResponse.js +16 -0
- package/lib/src/Terminals/DeviceResponse.js.map +1 -0
- package/lib/src/Terminals/Enums/ControlCodes.d.ts +5 -0
- package/lib/src/Terminals/Enums/ControlCodes.js +10 -0
- package/lib/src/Terminals/Enums/ControlCodes.js.map +1 -0
- package/lib/src/Terminals/Enums/index.d.ts +1 -0
- package/lib/src/Terminals/Enums/index.js +18 -0
- package/lib/src/Terminals/Enums/index.js.map +1 -0
- package/lib/src/Terminals/Enums.d.ts +12 -0
- package/lib/src/Terminals/Enums.js +18 -0
- package/lib/src/Terminals/Enums.js.map +1 -0
- package/lib/src/Terminals/SummaryResponse.d.ts +28 -0
- package/lib/src/Terminals/SummaryResponse.js +33 -0
- package/lib/src/Terminals/SummaryResponse.js.map +1 -0
- package/lib/src/Terminals/TerminalResponse.d.ts +42 -0
- package/lib/src/Terminals/TerminalResponse.js +49 -0
- package/lib/src/Terminals/TerminalResponse.js.map +1 -0
- package/lib/src/Terminals/TerminalUtils.d.ts +4 -0
- package/lib/src/Terminals/TerminalUtils.js +24 -0
- package/lib/src/Terminals/TerminalUtils.js.map +1 -0
- package/lib/src/Terminals/UPA/Entities/UpaMessageId.d.ts +20 -0
- package/lib/src/Terminals/UPA/Entities/UpaMessageId.js +25 -0
- package/lib/src/Terminals/UPA/Entities/UpaMessageId.js.map +1 -0
- package/lib/src/Terminals/UPA/Entities/index.d.ts +1 -0
- package/lib/src/Terminals/UPA/Entities/index.js +18 -0
- package/lib/src/Terminals/UPA/Entities/index.js.map +1 -0
- package/lib/src/Terminals/UPA/Interfaces/UpaMicInterface.d.ts +12 -0
- package/lib/src/Terminals/UPA/Interfaces/UpaMicInterface.js +76 -0
- package/lib/src/Terminals/UPA/Interfaces/UpaMicInterface.js.map +1 -0
- package/lib/src/Terminals/UPA/Interfaces/index.d.ts +1 -0
- package/lib/src/Terminals/UPA/Interfaces/index.js +18 -0
- package/lib/src/Terminals/UPA/Interfaces/index.js.map +1 -0
- package/lib/src/Terminals/UPA/Reponses/TransactionResponse.d.ts +53 -0
- package/lib/src/Terminals/UPA/Reponses/TransactionResponse.js +70 -0
- package/lib/src/Terminals/UPA/Reponses/TransactionResponse.js.map +1 -0
- package/lib/src/Terminals/UPA/Reponses/index.d.ts +1 -0
- package/lib/src/Terminals/UPA/Reponses/index.js +18 -0
- package/lib/src/Terminals/UPA/Reponses/index.js.map +1 -0
- package/lib/src/Terminals/UPA/Request/BaseRequest.d.ts +7 -0
- package/lib/src/Terminals/UPA/Request/BaseRequest.js +11 -0
- package/lib/src/Terminals/UPA/Request/BaseRequest.js.map +1 -0
- package/lib/src/Terminals/UPA/Request/GroupRequest.d.ts +5 -0
- package/lib/src/Terminals/UPA/Request/GroupRequest.js +9 -0
- package/lib/src/Terminals/UPA/Request/GroupRequest.js.map +1 -0
- package/lib/src/Terminals/UPA/Request/RequestParams.d.ts +9 -0
- package/lib/src/Terminals/UPA/Request/RequestParams.js +14 -0
- package/lib/src/Terminals/UPA/Request/RequestParams.js.map +1 -0
- package/lib/src/Terminals/UPA/Request/RootRequest.d.ts +5 -0
- package/lib/src/Terminals/UPA/Request/RootRequest.js +9 -0
- package/lib/src/Terminals/UPA/Request/RootRequest.js.map +1 -0
- package/lib/src/Terminals/UPA/Request/TransactionRequest.d.ts +10 -0
- package/lib/src/Terminals/UPA/Request/TransactionRequest.js +15 -0
- package/lib/src/Terminals/UPA/Request/TransactionRequest.js.map +1 -0
- package/lib/src/Terminals/UPA/Request/index.d.ts +5 -0
- package/lib/src/Terminals/UPA/Request/index.js +22 -0
- package/lib/src/Terminals/UPA/Request/index.js.map +1 -0
- package/lib/src/Terminals/UPA/UpaController.d.ts +16 -0
- package/lib/src/Terminals/UPA/UpaController.js +213 -0
- package/lib/src/Terminals/UPA/UpaController.js.map +1 -0
- package/lib/src/Terminals/UPA/UpaInterface.d.ts +10 -0
- package/lib/src/Terminals/UPA/UpaInterface.js +44 -0
- package/lib/src/Terminals/UPA/UpaInterface.js.map +1 -0
- package/lib/src/Terminals/UPA/UpaMessageType.d.ts +8 -0
- package/lib/src/Terminals/UPA/UpaMessageType.js +13 -0
- package/lib/src/Terminals/UPA/UpaMessageType.js.map +1 -0
- package/lib/src/Terminals/UPA/index.d.ts +7 -0
- package/lib/src/Terminals/UPA/index.js +24 -0
- package/lib/src/Terminals/UPA/index.js.map +1 -0
- package/lib/src/Terminals/index.d.ts +8 -0
- package/lib/src/Terminals/index.js +25 -0
- package/lib/src/Terminals/index.js.map +1 -0
- package/lib/src/Utils/CardUtils.d.ts +13 -0
- package/lib/src/Utils/CardUtils.js +221 -0
- package/lib/src/Utils/CardUtils.js.map +1 -0
- package/lib/src/Utils/GenerationUtils.d.ts +6 -0
- package/lib/src/Utils/GenerationUtils.js +79 -0
- package/lib/src/Utils/GenerationUtils.js.map +1 -0
- package/lib/src/Utils/IRawRequestBuilder.d.ts +3 -0
- package/lib/src/Utils/IRawRequestBuilder.js +3 -0
- package/lib/src/Utils/IRawRequestBuilder.js.map +1 -0
- package/lib/src/Utils/InputValidation.d.ts +12 -0
- package/lib/src/Utils/InputValidation.js +71 -0
- package/lib/src/Utils/InputValidation.js.map +1 -0
- package/lib/src/Utils/Logging/Logger.d.ts +32 -0
- package/lib/src/Utils/Logging/Logger.js +209 -0
- package/lib/src/Utils/Logging/Logger.js.map +1 -0
- package/lib/src/Utils/Logging/ProtectSensitiveData.d.ts +11 -0
- package/lib/src/Utils/Logging/ProtectSensitiveData.js +23 -0
- package/lib/src/Utils/Logging/ProtectSensitiveData.js.map +1 -0
- package/lib/src/Utils/Logging/SampleRequestLogger.d.ts +12 -0
- package/lib/src/Utils/Logging/SampleRequestLogger.js +38 -0
- package/lib/src/Utils/Logging/SampleRequestLogger.js.map +1 -0
- package/lib/src/Utils/Logging/index.d.ts +3 -0
- package/lib/src/Utils/Logging/index.js +20 -0
- package/lib/src/Utils/Logging/index.js.map +1 -0
- package/lib/src/Utils/Sha1.d.ts +6 -0
- package/lib/src/Utils/Sha1.js +231 -0
- package/lib/src/Utils/Sha1.js.map +1 -0
- package/lib/src/Utils/StringUtils.d.ts +15 -0
- package/lib/src/Utils/StringUtils.js +80 -0
- package/lib/src/Utils/StringUtils.js.map +1 -0
- package/lib/src/Utils/index.d.ts +5 -0
- package/lib/src/Utils/index.js +22 -0
- package/lib/src/Utils/index.js.map +1 -0
- package/lib/src/index.d.ts +13 -0
- package/lib/src/index.js +34 -0
- package/lib/src/index.js.map +1 -0
- 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/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 +2 -0
- package/lib/test/Data/index.js +19 -0
- package/lib/test/Data/index.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/CreditCardNotPresentTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/CreditCardNotPresentTest.js +1023 -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/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/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/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/ReportingTransactionsTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.js +337 -0
- package/lib/test/Integration/Gateways/GpApiConnector/ReportingTransactionsTest.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/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/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/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/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/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/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/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/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/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/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/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/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/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/DebitTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.js +82 -0
- package/lib/test/Integration/Gateways/PorticoConnector/DebitTest.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/EcommerceTest.d.ts +1 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.js +111 -0
- package/lib/test/Integration/Gateways/PorticoConnector/EcommerceTest.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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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 +1 -1
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
export declare enum AccountType {
|
|
2
|
+
Checking = "CHECKING",
|
|
3
|
+
Savings = "SAVINGS",
|
|
4
|
+
Credit = "Credit"
|
|
5
|
+
}
|
|
6
|
+
export declare enum AddressType {
|
|
7
|
+
Billing = 0,
|
|
8
|
+
Shipping = 1
|
|
9
|
+
}
|
|
10
|
+
export declare enum AliasAction {
|
|
11
|
+
Create = "CREATE",
|
|
12
|
+
Add = "ADD",
|
|
13
|
+
Delete = "DELETE"
|
|
14
|
+
}
|
|
15
|
+
export declare enum AlternativePaymentType {
|
|
16
|
+
Paypal = "paypal",
|
|
17
|
+
PayByBankApp = "paybybankapp"
|
|
18
|
+
}
|
|
19
|
+
export declare enum ApplicationCryptogramType {
|
|
20
|
+
TC = 0,
|
|
21
|
+
ARQC = 1
|
|
22
|
+
}
|
|
23
|
+
export declare enum BankPaymentType {
|
|
24
|
+
FASTERPAYMENTS = "FASTERPAYMENTS",
|
|
25
|
+
SEPA = "SEPA"
|
|
26
|
+
}
|
|
27
|
+
export declare enum CardDataInputCapability {
|
|
28
|
+
Unknown = "UNKNOWN",
|
|
29
|
+
NoTerminalManual = "NO_TERMINAL_MANUAL",
|
|
30
|
+
MagstripeReadOnly = "MAGSTRIPE_READ_ONLY",
|
|
31
|
+
Ocr = "OCR",
|
|
32
|
+
IccChipReadOnly = "ICC_CHIP_READ_ONLY",
|
|
33
|
+
KeyedEntryOnly = "KEYED_ENTRY_ONLY",
|
|
34
|
+
MagstripeContactlessOnly = "MAGSTRIPE_CONTACTLESS_ONLY",
|
|
35
|
+
MagstripeKeyedEntryOnly = "MAGSTRIPE_KEYED_ENTRY_ONLY",
|
|
36
|
+
MagstripeIccKeyedEntryOnly = "MAGSTRIPE_ICC_KEYED_ENTRY_ONLY",
|
|
37
|
+
MagstripeIccOnly = "MAGSTRIPE_ICC_ONLY",
|
|
38
|
+
IccKeyedEntryOnly = "ICC_KEYED_ENTRY_ONLY",
|
|
39
|
+
IccChipConctactContactless = "ICC_CHIP_CONTACT_CONTACTLESS",
|
|
40
|
+
IccContactlessOnly = "ICC_CONTACTLESS_ONLY",
|
|
41
|
+
OtherCapabilityForMastercard = "OTHER_CAPABILITY_FOR_MASTERCARD",
|
|
42
|
+
MagstripeSignatureForAmexOnly = "MAGSTRIPE_SIGNATURE_FOR_AMEX_ONLY"
|
|
43
|
+
}
|
|
44
|
+
export declare enum CardDataOutputCapability {
|
|
45
|
+
None = "NONE",
|
|
46
|
+
MagneticStripeWrite = "MAGNETIC_STRIPE_WRITE",
|
|
47
|
+
Icc = "ICC",
|
|
48
|
+
Other = "OTHER"
|
|
49
|
+
}
|
|
50
|
+
export declare enum CardHolderAuthenticationCapability {
|
|
51
|
+
NoCapability = "NO_CAPABILITY",
|
|
52
|
+
PinEntry = "PIN_ENTRY",
|
|
53
|
+
SignatureAnalysis = "SIGNATURE_ANALYSIS",
|
|
54
|
+
SignatureAnalysisInoperative = "SIGNATURE_ANALYSIS_INOPERATIVE",
|
|
55
|
+
MposSoftwareBasedPinEntryCapability = "MPOS_SOFTWARE_BASED_PIN_ENTRY_CAPABILITY",
|
|
56
|
+
Other = "OTHER",
|
|
57
|
+
Unknown = "UNKNOWN"
|
|
58
|
+
}
|
|
59
|
+
export declare enum CardHolderAuthenticationEntity {
|
|
60
|
+
NotAuthenticated = "NOT_AUTHENTICATED",
|
|
61
|
+
IccOfflinePin = "ICC_OFFLINE_PIN",
|
|
62
|
+
CardAcceptanceDevice = "CARD_ACCEPTANCE_DEVICE",
|
|
63
|
+
AuthorizingAgentOnlinePin = "AUTHORIZING_AGENT_ONLINE_PIN",
|
|
64
|
+
MerchantCardAcceptorSignature = "MERCHANT_CARD_ACCEPTOR_SIGNATURE",
|
|
65
|
+
Other = "OTHER"
|
|
66
|
+
}
|
|
67
|
+
export declare enum CardType {
|
|
68
|
+
VISA = "VISA",
|
|
69
|
+
MASTERCARD = "MASTERCARD",
|
|
70
|
+
DISCOVER = "DISCOVER",
|
|
71
|
+
AMEX = "AMEX",
|
|
72
|
+
JCB = "JCB",
|
|
73
|
+
DINERS = "DINERS"
|
|
74
|
+
}
|
|
75
|
+
export declare enum CaptureMode {
|
|
76
|
+
AUTO = "AUTO",
|
|
77
|
+
LATER = "LATER",
|
|
78
|
+
MULTIPLE = "MULTIPLE"
|
|
79
|
+
}
|
|
80
|
+
export declare enum Channel {
|
|
81
|
+
CardNotPresent = "CNP",
|
|
82
|
+
CardPresent = "CP"
|
|
83
|
+
}
|
|
84
|
+
export declare enum CheckType {
|
|
85
|
+
Personal = "PERSONAL",
|
|
86
|
+
Business = "BUSINESS",
|
|
87
|
+
Payroll = "PAYROLL"
|
|
88
|
+
}
|
|
89
|
+
export declare enum CurrencyType {
|
|
90
|
+
CURRENCY = 0,
|
|
91
|
+
POINTS = 1,
|
|
92
|
+
CASH_BENEFITS = 2,
|
|
93
|
+
FOODSTAMPS = 3,
|
|
94
|
+
VOUCHER = 4
|
|
95
|
+
}
|
|
96
|
+
export declare enum CustomerDocumentType {
|
|
97
|
+
NATIONAL = "NATIONAL",
|
|
98
|
+
CPF = "CPF",
|
|
99
|
+
CPNJ = "CPNJ",
|
|
100
|
+
CURP = "CURP",
|
|
101
|
+
SSN = "SSN",
|
|
102
|
+
DRIVER_LICENSE = "DRIVER_LICENSE",
|
|
103
|
+
PASSPORT = "PASSPORT"
|
|
104
|
+
}
|
|
105
|
+
export declare enum CvnPresenceIndicator {
|
|
106
|
+
Present = 1,
|
|
107
|
+
Illegible = 2,
|
|
108
|
+
NotOnCard = 3,
|
|
109
|
+
NotRequested = 4
|
|
110
|
+
}
|
|
111
|
+
export declare enum DataServiceCriteria {
|
|
112
|
+
Amount = "amount",
|
|
113
|
+
BankAccountNumber = "bankAccountNumber",
|
|
114
|
+
CaseId = "caseId",
|
|
115
|
+
CardNumberFirstSix = "cardNumberFirstSix",
|
|
116
|
+
CardNumberLastFour = "cardNumberLastFour",
|
|
117
|
+
CaseNumber = "caseNumber",
|
|
118
|
+
Country = "country",
|
|
119
|
+
Currency = "currency",
|
|
120
|
+
DepositReference = "depositReference",
|
|
121
|
+
EndDepositDate = "endDepositDate",
|
|
122
|
+
EndStageDate = "endStageDate",
|
|
123
|
+
Hierarchy = "hierarchy",
|
|
124
|
+
LocalTransactionEndTime = "localTransactionEndTime",
|
|
125
|
+
LocalTransactionStartTime = "localTransactionStartTime",
|
|
126
|
+
MerchantId = "merchantId",
|
|
127
|
+
OrderId = "orderId",
|
|
128
|
+
StartDepositDate = "startDepositDate",
|
|
129
|
+
StartStageDate = "startStageDate",
|
|
130
|
+
SystemHierarchy = "systemHierarchy",
|
|
131
|
+
Timezone = "timezone",
|
|
132
|
+
StartBatchDate = "startBatchDate",
|
|
133
|
+
EndBatchDate = "endBatchDate"
|
|
134
|
+
}
|
|
135
|
+
export declare enum DeviceType {
|
|
136
|
+
PAX_DEVICE = 0,
|
|
137
|
+
PAX_D200 = 1,
|
|
138
|
+
PAX_D210 = 2,
|
|
139
|
+
PAX_S300 = 3,
|
|
140
|
+
PAX_PX5 = 4,
|
|
141
|
+
PAX_PX7 = 5,
|
|
142
|
+
HPA_ISC250 = 6,
|
|
143
|
+
HPA_LANE3000 = 7,
|
|
144
|
+
UPA_DEVICE = 8,
|
|
145
|
+
GENIUS = 9,
|
|
146
|
+
NUCLEUS_SATURN_1000 = 10,
|
|
147
|
+
GENIUS_VERIFONE_P400 = 11
|
|
148
|
+
}
|
|
149
|
+
export declare enum DigitalWalletTokenFormat {
|
|
150
|
+
CARD_NUMBER = "CARD_NUMBER",
|
|
151
|
+
CARD_TOKEN = "CARD_TOKEN"
|
|
152
|
+
}
|
|
153
|
+
export declare enum EcommerceChannel {
|
|
154
|
+
Ecom = "ECOM",
|
|
155
|
+
Moto = "MOTO"
|
|
156
|
+
}
|
|
157
|
+
export declare enum EmailReceipt {
|
|
158
|
+
Never = "Never",
|
|
159
|
+
All = "All",
|
|
160
|
+
Approvals = "Approvals",
|
|
161
|
+
Declines = "Declines"
|
|
162
|
+
}
|
|
163
|
+
export declare enum EncyptedMobileType {
|
|
164
|
+
ApplePay = "apple-pay",
|
|
165
|
+
GooglePay = "pay-with-google",
|
|
166
|
+
ClickToPay = "click-to-pay"
|
|
167
|
+
}
|
|
168
|
+
export declare enum EntryMethod {
|
|
169
|
+
Swipe = "SWIPE",
|
|
170
|
+
Proximity = "PROXIMITY",
|
|
171
|
+
Manual = "MANUAL"
|
|
172
|
+
}
|
|
173
|
+
export declare enum Environment {
|
|
174
|
+
Test = "TEST",
|
|
175
|
+
Production = "PRODUCTION",
|
|
176
|
+
Qa = "QA"
|
|
177
|
+
}
|
|
178
|
+
export declare enum EmvLastChipRead {
|
|
179
|
+
SUCCESSFUL = "Successful",
|
|
180
|
+
FAILED = "Failed",
|
|
181
|
+
NOT_A_CHIP_TRANSACTION = "NotAChipTransaction",
|
|
182
|
+
UNKNOWN = "Unknown"
|
|
183
|
+
}
|
|
184
|
+
export declare enum ExceptionCodes {
|
|
185
|
+
AuthenticationError = 0,
|
|
186
|
+
InvalidConfiguration = 1,
|
|
187
|
+
InvalidAmount = 2,
|
|
188
|
+
MissingCurrency = 3,
|
|
189
|
+
InvalidCurrency = 4,
|
|
190
|
+
InvalidDate = 5,
|
|
191
|
+
MissingCheckName = 6,
|
|
192
|
+
InvalidPhoneNumber = 7,
|
|
193
|
+
InvalidZipCode = 8,
|
|
194
|
+
InvalidEmailAddress = 9,
|
|
195
|
+
InvalidInputLength = 10,
|
|
196
|
+
UnknownGatewayError = 11,
|
|
197
|
+
InvalidOriginalTransaction = 12,
|
|
198
|
+
NoOpenBatch = 13,
|
|
199
|
+
InvalidCpcData = 14,
|
|
200
|
+
InvalidCardData = 15,
|
|
201
|
+
InvalidNumber = 16,
|
|
202
|
+
GatewayTimeout = 17,
|
|
203
|
+
UnexpectedGatewayResponse = 18,
|
|
204
|
+
GatewayTimeoutReversalError = 19,
|
|
205
|
+
GatewayError = 20,
|
|
206
|
+
UnexpectedGatewayError = 21,
|
|
207
|
+
IncorrectNumber = 22,
|
|
208
|
+
ExpiredCard = 23,
|
|
209
|
+
InvalidPin = 24,
|
|
210
|
+
PinEntriesExceeded = 25,
|
|
211
|
+
InvalidExpiry = 26,
|
|
212
|
+
PinVerification = 27,
|
|
213
|
+
IssuerTimeout = 28,
|
|
214
|
+
IncorrectCvc = 29,
|
|
215
|
+
CardDeclined = 30,
|
|
216
|
+
ProcessingError = 31,
|
|
217
|
+
IssuerTimeoutReversalError = 32,
|
|
218
|
+
UnknownCreditError = 33,
|
|
219
|
+
PossibleFraudDetected = 34,
|
|
220
|
+
UnknownGiftError = 35,
|
|
221
|
+
PartialApproval = 36
|
|
222
|
+
}
|
|
223
|
+
export declare enum FraudFilterMode {
|
|
224
|
+
None = "NONE",
|
|
225
|
+
Off = "OFF",
|
|
226
|
+
Active = "ACTIVE",
|
|
227
|
+
Passive = "PASSIVE"
|
|
228
|
+
}
|
|
229
|
+
export declare enum GatewayProvider {
|
|
230
|
+
GpApi = "GP-API",
|
|
231
|
+
GpEcom = "GP_ECOM",
|
|
232
|
+
Portico = "PORTICO"
|
|
233
|
+
}
|
|
234
|
+
export declare enum GiftEntryMethod {
|
|
235
|
+
Swipe = 0,
|
|
236
|
+
Alias = 1,
|
|
237
|
+
Manual = 2
|
|
238
|
+
}
|
|
239
|
+
export declare enum HppVersion {
|
|
240
|
+
Version1 = "1",
|
|
241
|
+
Version2 = "2"
|
|
242
|
+
}
|
|
243
|
+
export declare enum InquiryType {
|
|
244
|
+
Standard = "STANDARD",
|
|
245
|
+
Foodstamp = "FOODSTAMP",
|
|
246
|
+
Cash = "CASH",
|
|
247
|
+
Points = "POINTS"
|
|
248
|
+
}
|
|
249
|
+
export declare enum IntervalToExpire {
|
|
250
|
+
WEEK = "WEEK",
|
|
251
|
+
DAY = "DAY",
|
|
252
|
+
TWELVE_HOURS = "12_HOURS",
|
|
253
|
+
SIX_HOURS = "6_HOURS",
|
|
254
|
+
THREE_HOURS = "3_HOURS",
|
|
255
|
+
ONE_HOUR = "1_HOUR",
|
|
256
|
+
THIRTY_MINUTES = "30_MINUTES",
|
|
257
|
+
TEN_MINUTES = "10_MINUTES",
|
|
258
|
+
FIVE_MINUTES = "5_MINUTES"
|
|
259
|
+
}
|
|
260
|
+
export declare enum LodgingItemType {
|
|
261
|
+
RESTAURANT = "RESTAURANT",
|
|
262
|
+
GIFT_SHOP = "GIFT_SHOP",
|
|
263
|
+
MINI_BAR = "MINI_BAR",
|
|
264
|
+
PHONE = "PHONE",
|
|
265
|
+
LAUNDRY = "LAUNDRY",
|
|
266
|
+
OTHER = "OTHER",
|
|
267
|
+
NO_SHOW = "NO_SHOW"
|
|
268
|
+
}
|
|
269
|
+
export declare enum ManualEntryMethod {
|
|
270
|
+
MOTO = 0,
|
|
271
|
+
MAIL = 1,
|
|
272
|
+
PHONE = 2,
|
|
273
|
+
KEYED = 3
|
|
274
|
+
}
|
|
275
|
+
export declare enum PayByLinkStatus {
|
|
276
|
+
ACTIVE = "ACTIVE",
|
|
277
|
+
INACTIVE = "INACTIVE",
|
|
278
|
+
CLOSED = "CLOSED",
|
|
279
|
+
EXPIRED = "EXPIRED",
|
|
280
|
+
PAID = "PAID"
|
|
281
|
+
}
|
|
282
|
+
export declare enum PaymentEntryMode {
|
|
283
|
+
MOTO = "MOTO",
|
|
284
|
+
ECOM = "ECOM",
|
|
285
|
+
IN_APP = "IN_APP",
|
|
286
|
+
CHIP = "CHIP",
|
|
287
|
+
SWIPE = "SWIPE",
|
|
288
|
+
MANUAL = "MANUAL",
|
|
289
|
+
CONTACTLESS_CHIP = "CONTACTLESS_CHIP",
|
|
290
|
+
CONTACTLESS_SWIPE = "CONTACTLESS_SWIPE",
|
|
291
|
+
PHONE = "PHONE",
|
|
292
|
+
MAIL = "MAIL"
|
|
293
|
+
}
|
|
294
|
+
export declare enum PaymentMethodName {
|
|
295
|
+
APM = "APM",
|
|
296
|
+
DIGITAL_WALLET = "DIGITAL WALLET",
|
|
297
|
+
CARD = "CARD",
|
|
298
|
+
/**
|
|
299
|
+
* ACH transaction
|
|
300
|
+
*/
|
|
301
|
+
BANK_TRANSFER = "BANK TRANSFER",
|
|
302
|
+
/** Open Banking transaction */
|
|
303
|
+
BANK_PAYMENT = "BANK PAYMENT",
|
|
304
|
+
/** @var Buy Now Pay Later (BNPL) transaction */
|
|
305
|
+
BNPL = "BNPL"
|
|
306
|
+
}
|
|
307
|
+
export declare enum PaymentMethodProgram {
|
|
308
|
+
ASSURED_RESERVATION = "ASSURED_RESERVATION",
|
|
309
|
+
CARD_DEPOSIT = "CARD_DEPOSIT",
|
|
310
|
+
PURCHASE = "PURCHASE",
|
|
311
|
+
OTHER = "OTHER"
|
|
312
|
+
}
|
|
313
|
+
export declare enum PaymentMethodType {
|
|
314
|
+
Reference = 1,
|
|
315
|
+
Credit = 2,
|
|
316
|
+
Debit = 4,
|
|
317
|
+
EBT = 8,
|
|
318
|
+
Cash = 16,
|
|
319
|
+
ACH = 32,
|
|
320
|
+
Gift = 64,
|
|
321
|
+
Recurring = 128,
|
|
322
|
+
Other = 256,
|
|
323
|
+
APM = 512,
|
|
324
|
+
Ewic = 1024,
|
|
325
|
+
BankPayment = 2048,
|
|
326
|
+
BNPL = 4096,
|
|
327
|
+
Account_Funds = 8192
|
|
328
|
+
}
|
|
329
|
+
export declare enum PaymentMethodUsageMode {
|
|
330
|
+
SINGLE = "SINGLE",
|
|
331
|
+
MULTIPLE = "MULTIPLE"
|
|
332
|
+
}
|
|
333
|
+
export declare enum PaymentProvider {
|
|
334
|
+
OPEN_BANKING = "OPEN_BANKING"
|
|
335
|
+
}
|
|
336
|
+
export declare enum PaymentSchedule {
|
|
337
|
+
Dynamic = 0,
|
|
338
|
+
FirstDayOfTheMonth = 1,
|
|
339
|
+
LastDayOfTheMonth = 2
|
|
340
|
+
}
|
|
341
|
+
export declare enum PaymentType {
|
|
342
|
+
REFUND = "REFUND",
|
|
343
|
+
SALE = "SALE"
|
|
344
|
+
}
|
|
345
|
+
export declare enum PhoneNumberType {
|
|
346
|
+
HOME = "HOME",
|
|
347
|
+
WORK = "WORK",
|
|
348
|
+
SHIPPING = "SHIPPING",
|
|
349
|
+
MOBILE = "MOBILE"
|
|
350
|
+
}
|
|
351
|
+
export declare enum ReasonCode {
|
|
352
|
+
Fraud = "FRAUD",
|
|
353
|
+
FalsePositive = "FALSEPOSITIVE",
|
|
354
|
+
OutOfStock = "OUTOFSTOCK",
|
|
355
|
+
InStock = "INSTOCK",
|
|
356
|
+
Other = "OTHER",
|
|
357
|
+
NotGiven = "NOTGIVEN"
|
|
358
|
+
}
|
|
359
|
+
export declare enum RecurringSequence {
|
|
360
|
+
First = 0,
|
|
361
|
+
Subsequent = 1,
|
|
362
|
+
Last = 2
|
|
363
|
+
}
|
|
364
|
+
export declare enum RecurringType {
|
|
365
|
+
Fixed = 0,
|
|
366
|
+
Variable = 1
|
|
367
|
+
}
|
|
368
|
+
export declare enum ReportType {
|
|
369
|
+
FindTransactions = 1,
|
|
370
|
+
Activity = 2,
|
|
371
|
+
BatchDetail = 4,
|
|
372
|
+
BatchHistory = 8,
|
|
373
|
+
BatchSummary = 16,
|
|
374
|
+
OpenAuths = 32,
|
|
375
|
+
Search = 64,
|
|
376
|
+
TransactionDetail = 128,
|
|
377
|
+
DepositDetail = 2048,
|
|
378
|
+
FindTransactionsPaged = 32768,
|
|
379
|
+
FindSettlementTransactionsPaged = 65536,
|
|
380
|
+
FindDepositsPaged = 131072,
|
|
381
|
+
FindStoredPaymentMethodsPaged = 1048576,
|
|
382
|
+
StoredPaymentMethodDetail = 2097152
|
|
383
|
+
}
|
|
384
|
+
export declare enum ScheduleFrequency {
|
|
385
|
+
Weekly = "Weekly",
|
|
386
|
+
BiWeekly = "Bi-Weekly",
|
|
387
|
+
BiMonthly = "Bi-Monthly",
|
|
388
|
+
SemiMonthly = "Semi-Monthly",
|
|
389
|
+
Monthly = "Monthly",
|
|
390
|
+
Quarterly = "Quarterly",
|
|
391
|
+
SemiAnnually = "Semi-Annually",
|
|
392
|
+
Annually = "Annually"
|
|
393
|
+
}
|
|
394
|
+
export declare enum SearchCriteria {
|
|
395
|
+
AccountName = "accountName",
|
|
396
|
+
AccountNumberLastFour = "accountNumberLastFour",
|
|
397
|
+
AltPaymentStatus = "altPaymentStatus",
|
|
398
|
+
AquirerReferenceNumber = "aquirerReferenceNumber",
|
|
399
|
+
AuthCode = "authCode",
|
|
400
|
+
BankRoutingNumber = "bankRoutingNumber",
|
|
401
|
+
BatchId = "batchId",
|
|
402
|
+
BatchSequenceNumber = "batchSequenceNumber",
|
|
403
|
+
BrandReference = "brandReference",
|
|
404
|
+
BuyerEmailAddress = "buyerEmailAddress",
|
|
405
|
+
CardBrand = "cardBrand",
|
|
406
|
+
CardHolderFirstName = "cardHolderFirstName",
|
|
407
|
+
CardHolderLastName = "cardHolderLastName",
|
|
408
|
+
CardHolderPoNumber = "cardHolderPoNumber",
|
|
409
|
+
CardNumberFirstSix = "cardNumberFirstSix",
|
|
410
|
+
CardNumberLastFour = "cardNumberLastFour",
|
|
411
|
+
Channel = "channel",
|
|
412
|
+
CheckFirstName = "checkFirstName",
|
|
413
|
+
CheckLastName = "checkLastName",
|
|
414
|
+
CheckName = "checkName",
|
|
415
|
+
CheckNumber = "checkNumber",
|
|
416
|
+
ClerkId = "clerkId",
|
|
417
|
+
ClientTransactionId = "clientTransactionId",
|
|
418
|
+
CustomerId = "customerId",
|
|
419
|
+
DepositReference = "",
|
|
420
|
+
DepositStatus = "depositStatus",
|
|
421
|
+
DisplayName = "displayName",
|
|
422
|
+
EndDate = "endDate",
|
|
423
|
+
FullyCaptured = "fullyCaptured",
|
|
424
|
+
GiftCurrency = "giftCurrency",
|
|
425
|
+
GiftMaskedAlias = "giftMaskedAlias",
|
|
426
|
+
InvoiceNumber = "invoiceNumber",
|
|
427
|
+
IssuerResult = "issuerResult",
|
|
428
|
+
IssuerTransactionId = "issuerTransactionId",
|
|
429
|
+
OneTime = "oneTime",
|
|
430
|
+
PaymentEntryMode = "paymentEntryMode",
|
|
431
|
+
PaymentMethodKey = "paymentMethodKey",
|
|
432
|
+
PaymentMethodType = "paymentMethodType",
|
|
433
|
+
PaymentType = "paymentType",
|
|
434
|
+
PaymentMethod = "paymentMethod",
|
|
435
|
+
PaymentMethodName = "paymentMethodName",
|
|
436
|
+
PaymentMethodUsageMode = "paymentMethodUsageMode",
|
|
437
|
+
PaymentProvider = "paymentProvider",
|
|
438
|
+
ReferenceNumber = "referenceNumber",
|
|
439
|
+
SettlementAmount = "settlementAmount",
|
|
440
|
+
ScheduleId = "scheduleId",
|
|
441
|
+
SiteTrace = "siteTrace",
|
|
442
|
+
StartDate = "startDate",
|
|
443
|
+
TokenFirstSix = "tokenFirstSix",
|
|
444
|
+
TokenLastFour = "tokenLastFour",
|
|
445
|
+
TransactionStatus = "transactionStatus",
|
|
446
|
+
DisputeStage = "disputeStage",
|
|
447
|
+
DisputeStatus = "disputeStatus",
|
|
448
|
+
DisputeDocumentId = "disputeDocumentId",
|
|
449
|
+
UniqueDeviceId = "uniqueDeviceId",
|
|
450
|
+
UserName = "username",
|
|
451
|
+
Name = "name",
|
|
452
|
+
DepositId = "depositId",
|
|
453
|
+
FromTimeLastUpdated = "fromTimeLastUpdated",
|
|
454
|
+
ToTimeLastUpdated = "toTimeLastUpdated",
|
|
455
|
+
StoredPaymentMethodId = "storedPaymentMethodId",
|
|
456
|
+
StoredPaymentMethodStatus = "storedPaymentMethodStatus",
|
|
457
|
+
ActionType = "actionType",
|
|
458
|
+
ActionId = "actionId",
|
|
459
|
+
Resource = "resource",
|
|
460
|
+
ResourceStatus = "resourceStatus",
|
|
461
|
+
ResourceId = "resourceId",
|
|
462
|
+
MerchantName = "merchantName",
|
|
463
|
+
AppName = "appName",
|
|
464
|
+
Version = "version",
|
|
465
|
+
ResponseCode = "responseCode",
|
|
466
|
+
HttpResponseCode = "httpResponseCode",
|
|
467
|
+
ReturnPii = "returnPii",
|
|
468
|
+
RiskAssessmentMode = "riskAssessmentMode",
|
|
469
|
+
RiskAssessmentResult = "riskAssessmentResult",
|
|
470
|
+
RiskAssessmentReasonCode = "riskAssessmentReasonCode",
|
|
471
|
+
PayByLinkStatus = "payByLinkStatus",
|
|
472
|
+
Description = "description",
|
|
473
|
+
ExpirationDate = "expirationDate",
|
|
474
|
+
AccountStatus = "accountStatus",
|
|
475
|
+
Address = "address"
|
|
476
|
+
}
|
|
477
|
+
export declare enum SecCode {
|
|
478
|
+
PPD = "PPD",
|
|
479
|
+
CCD = "CCD",
|
|
480
|
+
POP = "POP",
|
|
481
|
+
WEB = "WEB",
|
|
482
|
+
TEL = "TEL",
|
|
483
|
+
EBronze = "EBronze"
|
|
484
|
+
}
|
|
485
|
+
export declare enum Secure3dVersion {
|
|
486
|
+
NONE = "NONE",
|
|
487
|
+
ONE = "ONE",
|
|
488
|
+
TWO = "TWO",
|
|
489
|
+
ANY = "ANY"
|
|
490
|
+
}
|
|
491
|
+
export declare enum SendFileType {
|
|
492
|
+
Banner = 0,
|
|
493
|
+
Logo = 1
|
|
494
|
+
}
|
|
495
|
+
export declare enum ShaHashType {
|
|
496
|
+
SHA1 = "SHA1",
|
|
497
|
+
SHA256 = "SHA256",
|
|
498
|
+
SHA512 = "SHA512"
|
|
499
|
+
}
|
|
500
|
+
export declare enum SortDirection {
|
|
501
|
+
Asc = "ASC",
|
|
502
|
+
Desc = "DESC"
|
|
503
|
+
}
|
|
504
|
+
export declare enum StoredCredentialInitiator {
|
|
505
|
+
CardHolder = "C",
|
|
506
|
+
Merchant = "M",
|
|
507
|
+
Payer = "Payer"
|
|
508
|
+
}
|
|
509
|
+
export declare enum StoredCredentialReason {
|
|
510
|
+
INCREMENTAL = "INCREMENTAL",
|
|
511
|
+
RESUBMISSION = "RESUBMISSION",
|
|
512
|
+
REAUTHORIZATION = "REAUTHORIZATION",
|
|
513
|
+
DELAYED = "DELAYED",
|
|
514
|
+
NO_SHOW = "NO_SHOW"
|
|
515
|
+
}
|
|
516
|
+
export declare enum StoredCredentialSequence {
|
|
517
|
+
FIRST = "first",
|
|
518
|
+
SUBSEQUENT = "subsequent",
|
|
519
|
+
LAST = "last"
|
|
520
|
+
}
|
|
521
|
+
export declare enum StoredCredentialType {
|
|
522
|
+
ONEOFF = "oneoff",
|
|
523
|
+
INSTALLMENT = "installment",
|
|
524
|
+
RECURRING = "recurring",
|
|
525
|
+
UNSCHEDULED = "UNSCHEDULED",
|
|
526
|
+
SUBSCRIPTION = "SUBSCRIPTION",
|
|
527
|
+
MAINTAIN_PAYMENT_METHOD = "MAINTAIN_PAYMENT_METHOD",
|
|
528
|
+
MAINTAIN_PAYMENT_VERIFICATION = "MAINTAIN_PAYMENT_VERIFICATION",
|
|
529
|
+
ADD_PAYMENT_METHOD = "ADD_PAYMENT_METHOD",
|
|
530
|
+
SPLIT_OR_DELAYED_SHIPMENT = "SPLIT_OR_DELAYED_SHIPMENT",
|
|
531
|
+
TOP_UP = "TOP_UP",
|
|
532
|
+
MAIL_ORDER = "MAIL_ORDER",
|
|
533
|
+
TELEPHONE_ORDER = "TELEPHONE_ORDER",
|
|
534
|
+
WHITELIST_STATUS_CHECK = "WHITELIST_STATUS_CHECK",
|
|
535
|
+
OTHER_PAYMENT = "OTHER_PAYMENT",
|
|
536
|
+
BILLING_AGREEMENT = "BILLING_AGREEMENT"
|
|
537
|
+
}
|
|
538
|
+
export declare enum StoredPaymentMethodSortProperty {
|
|
539
|
+
TimeCreated = "TIME_CREATED"
|
|
540
|
+
}
|
|
541
|
+
export declare enum TaxType {
|
|
542
|
+
NotUsed = 0,
|
|
543
|
+
SalesTax = 1,
|
|
544
|
+
TaxExempt = 2
|
|
545
|
+
}
|
|
546
|
+
export declare enum TimeZoneConversion {
|
|
547
|
+
UTC = 0,
|
|
548
|
+
Merchant = 1,
|
|
549
|
+
Datacenter = 2
|
|
550
|
+
}
|
|
551
|
+
export declare enum TrackNumber {
|
|
552
|
+
UNKNOWN = 0,
|
|
553
|
+
TRACK_ONE = 1,
|
|
554
|
+
TRACK_TWO = 2,
|
|
555
|
+
BOTH_ONE_AND_TWO = 3
|
|
556
|
+
}
|
|
557
|
+
export declare enum TransactionModifier {
|
|
558
|
+
None = 1,
|
|
559
|
+
Incremental = 2,
|
|
560
|
+
Additional = 4,
|
|
561
|
+
Offline = 8,
|
|
562
|
+
LevelII = 16,
|
|
563
|
+
FraudDecline = 32,
|
|
564
|
+
ChipDecline = 64,
|
|
565
|
+
CashBack = 128,
|
|
566
|
+
Voucher = 256,
|
|
567
|
+
Secure3D = 512,
|
|
568
|
+
HostedRequest = 1024,
|
|
569
|
+
Recurring = 2048,
|
|
570
|
+
EncryptedMobile = 4096,
|
|
571
|
+
AlternativePaymentMethod = 8192,
|
|
572
|
+
DecryptedMobile = 16384
|
|
573
|
+
}
|
|
574
|
+
export declare enum TransactionSortProperty {
|
|
575
|
+
TIME_CREATED = "TIME_CREATED",
|
|
576
|
+
STATUS = "STATUS",
|
|
577
|
+
TYPE = "TYPE",
|
|
578
|
+
DEPOSIT_ID = "DEPOSIT_ID",
|
|
579
|
+
ID = "ID"
|
|
580
|
+
}
|
|
581
|
+
export declare enum TransactionType {
|
|
582
|
+
Decline = 1,
|
|
583
|
+
Verify = 2,
|
|
584
|
+
Capture = 4,
|
|
585
|
+
Auth = 8,
|
|
586
|
+
Refund = 16,
|
|
587
|
+
Reversal = 32,
|
|
588
|
+
Sale = 64,
|
|
589
|
+
Edit = 128,
|
|
590
|
+
Void = 256,
|
|
591
|
+
AddValue = 512,
|
|
592
|
+
Balance = 1024,
|
|
593
|
+
Activate = 2048,
|
|
594
|
+
EncryptedMobile = 2048,
|
|
595
|
+
Alias = 4096,
|
|
596
|
+
Replace = 8192,
|
|
597
|
+
Reward = 16384,
|
|
598
|
+
DecryptedMobile = 16384,
|
|
599
|
+
Deactivate = 32768,
|
|
600
|
+
BatchClose = 65536,
|
|
601
|
+
Create = 131072,
|
|
602
|
+
Delete = 262144,
|
|
603
|
+
BenefitWithDrawal = 1,
|
|
604
|
+
Fetch = 524288,
|
|
605
|
+
Search = 1048576,
|
|
606
|
+
Hold = 2097152,
|
|
607
|
+
Release = 8388608,
|
|
608
|
+
VerifySignature = 33554432,
|
|
609
|
+
TokenDelete = 67108864,
|
|
610
|
+
TokenUpdate = -2147483648,
|
|
611
|
+
Tokenize = 2,
|
|
612
|
+
CreateAccount = 256,
|
|
613
|
+
EditAccount = 512,
|
|
614
|
+
ResetPassword = 1024,
|
|
615
|
+
RenewAccount = 2048,
|
|
616
|
+
UpdateBeneficialOwnership = 4096,
|
|
617
|
+
DisownAccount = 8192,
|
|
618
|
+
UploadDocumentChargeback = 16384,
|
|
619
|
+
UploadDocument = 32768,
|
|
620
|
+
ObtainSSOKey = 65536,
|
|
621
|
+
UpdateBankAccountOwnership = 131072,
|
|
622
|
+
AddFunds = 262144,
|
|
623
|
+
SweepFunds = 524288,
|
|
624
|
+
AddCardFlashFunds = 1048576,
|
|
625
|
+
Detokenize = 1048576,
|
|
626
|
+
PushMoneyFlashFunds = 2097152,
|
|
627
|
+
DisburseFunds = 4194304,
|
|
628
|
+
SpendBack = 8388608,
|
|
629
|
+
ReverseSplitPay = 16777216,
|
|
630
|
+
Confirm = 16777216,
|
|
631
|
+
SplitFunds = 33554432,
|
|
632
|
+
GetAccountDetails = 67108864,
|
|
633
|
+
GetAccountBalance = 134217728,
|
|
634
|
+
Reauth = 268435456,
|
|
635
|
+
SiteConfig = 536870912,
|
|
636
|
+
TimeRequest = 1073741824,
|
|
637
|
+
GetTokenInfo = -2147483648,
|
|
638
|
+
PayLinkUpdate = -2147483648,
|
|
639
|
+
OrderDevice = 1
|
|
640
|
+
}
|
|
641
|
+
export declare enum ProPayAccountStatus {
|
|
642
|
+
ReadyToProcess = 0,
|
|
643
|
+
FraudAccount = 1,
|
|
644
|
+
RiskwiseDeclined = 2,
|
|
645
|
+
Hold = 3,
|
|
646
|
+
Canceled = 4,
|
|
647
|
+
FraudVictim = 5,
|
|
648
|
+
ClosedEula = 6,
|
|
649
|
+
ClosedExcessiveChargeback = 7
|
|
650
|
+
}
|
|
651
|
+
export declare enum MobilePaymentMethodType {
|
|
652
|
+
APPLEPAY = "apple-pay",
|
|
653
|
+
GOOGLEPAY = "pay-with-google"
|
|
654
|
+
}
|
|
655
|
+
export declare enum PaymentDataSourceType {
|
|
656
|
+
APPLEPAY = "ApplePay",
|
|
657
|
+
APPLEPAYAPP = "ApplePayApp",
|
|
658
|
+
APPLEPAYWEB = "ApplePayWeb",
|
|
659
|
+
GOOGLEPAYAPP = "GooglePayApp",
|
|
660
|
+
GOOGLEPAYWEB = "GooglePayWeb",
|
|
661
|
+
DISCOVER3DSECURE = "Discover 3DSecure"
|
|
662
|
+
}
|
|
663
|
+
export declare enum PropayTermsVersion {
|
|
664
|
+
merchantUS = 1,
|
|
665
|
+
paymentUS = 2,
|
|
666
|
+
merchantCA = 3,
|
|
667
|
+
merchantUK = 4,
|
|
668
|
+
merchantAU = 5
|
|
669
|
+
}
|