ggez-banking-sdk 0.1.81 → 0.1.87
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/dist/api/clients/account.d.ts +19 -0
- package/dist/api/clients/account.js +31 -0
- package/dist/api/clients/auth.d.ts +32 -0
- package/dist/api/clients/auth.js +55 -0
- package/dist/api/clients/blockchain.d.ts +31 -0
- package/dist/api/clients/blockchain.js +54 -0
- package/dist/api/clients/index.d.ts +10 -0
- package/dist/api/clients/index.js +10 -0
- package/dist/api/clients/ipAddressAndLocation.d.ts +13 -0
- package/dist/api/clients/ipAddressAndLocation.js +24 -0
- package/dist/api/clients/limited.d.ts +55 -0
- package/dist/api/clients/limited.js +94 -0
- package/dist/api/clients/order.d.ts +13 -0
- package/dist/api/clients/order.js +24 -0
- package/dist/api/clients/organization.d.ts +33 -0
- package/dist/api/clients/organization.js +58 -0
- package/dist/api/clients/promotion.d.ts +25 -0
- package/dist/api/clients/promotion.js +42 -0
- package/dist/api/clients/transaction.d.ts +19 -0
- package/dist/api/clients/transaction.js +35 -0
- package/dist/api/clients/user.d.ts +453 -0
- package/dist/api/clients/user.js +748 -0
- package/dist/api/data/auth.d.ts +8 -0
- package/dist/api/data/auth.js +48 -0
- package/dist/api/data/blockchain.d.ts +7 -0
- package/dist/api/data/blockchain.js +37 -0
- package/dist/api/data/index.d.ts +7 -0
- package/dist/api/data/index.js +7 -0
- package/dist/api/data/limited.d.ts +5 -0
- package/dist/api/data/limited.js +30 -0
- package/dist/api/data/order.d.ts +4 -0
- package/dist/api/data/order.js +43 -0
- package/dist/api/data/organization.d.ts +6 -0
- package/dist/api/data/organization.js +83 -0
- package/dist/api/data/transaction.d.ts +5 -0
- package/dist/api/data/transaction.js +35 -0
- package/dist/api/data/user/activity.d.ts +0 -0
- package/dist/api/data/user/activity.js +0 -0
- package/dist/api/data/user/address.d.ts +6 -0
- package/dist/api/data/user/address.js +47 -0
- package/dist/api/data/user/auth.d.ts +5 -0
- package/dist/api/data/user/auth.js +32 -0
- package/dist/api/data/user/bankAccount.d.ts +6 -0
- package/dist/api/data/user/bankAccount.js +65 -0
- package/dist/api/data/user/device.d.ts +9 -0
- package/dist/api/data/user/device.js +79 -0
- package/dist/api/data/user/document.d.ts +4 -0
- package/dist/api/data/user/document.js +30 -0
- package/dist/api/data/user/email.d.ts +11 -0
- package/dist/api/data/user/email.js +92 -0
- package/dist/api/data/user/identification.d.ts +5 -0
- package/dist/api/data/user/identification.js +37 -0
- package/dist/api/data/user/index.d.ts +18 -0
- package/dist/api/data/user/index.js +171 -0
- package/dist/api/data/user/personalInfo.d.ts +3 -0
- package/dist/api/data/user/personalInfo.js +12 -0
- package/dist/api/data/user/phone.d.ts +11 -0
- package/dist/api/data/user/phone.js +95 -0
- package/dist/api/data/user/preferences.d.ts +3 -0
- package/dist/api/data/user/preferences.js +12 -0
- package/dist/api/data/user/security.d.ts +7 -0
- package/dist/api/data/user/security.js +76 -0
- package/dist/api/data/user/ticket.d.ts +3 -0
- package/dist/api/data/user/ticket.js +29 -0
- package/dist/api/index.d.ts +3 -0
- package/dist/api/index.js +3 -0
- package/dist/api/services/account.d.ts +10 -0
- package/dist/api/services/account.js +29 -0
- package/dist/api/services/auth.d.ts +12 -0
- package/dist/api/services/auth.js +20 -0
- package/dist/api/services/base.d.ts +12 -0
- package/dist/api/services/base.js +61 -0
- package/dist/api/services/blockchain.d.ts +12 -0
- package/dist/api/services/blockchain.js +30 -0
- package/dist/api/services/index.d.ts +15 -0
- package/dist/api/services/index.js +15 -0
- package/dist/api/services/ipAddressAndLocation.d.ts +8 -0
- package/dist/api/services/ipAddressAndLocation.js +18 -0
- package/dist/api/services/limited.d.ts +14 -0
- package/dist/api/services/limited.js +43 -0
- package/dist/api/services/order.d.ts +9 -0
- package/dist/api/services/order.js +24 -0
- package/dist/api/services/organization.d.ts +13 -0
- package/dist/api/services/organization.js +43 -0
- package/dist/api/services/promotion.d.ts +13 -0
- package/dist/api/services/promotion.js +24 -0
- package/dist/api/services/transaction.d.ts +10 -0
- package/dist/api/services/transaction.js +31 -0
- package/dist/api/services/user.d.ts +72 -0
- package/dist/api/services/user.js +341 -0
- package/dist/constants/constants.d.ts +89 -0
- package/dist/constants/constants.js +89 -0
- package/dist/{bank-system/constants → constants}/enum.d.ts +880 -739
- package/dist/{bank-system/constants → constants}/enum.js +1312 -1164
- package/dist/constants/index.js +3 -0
- package/dist/constants/structure.d.ts +79 -0
- package/dist/{bank-system/constants → constants}/structure.js +13 -11
- package/dist/{bank-system/content → content}/accountCurrencies.js +1 -3
- package/dist/{bank-system/content → content}/countries.js +1 -3
- package/dist/{bank-system/content → content}/currencies.js +1 -3
- package/dist/content/index.js +4 -0
- package/dist/{bank-system/content → content}/state.js +1 -3
- package/dist/helper/api/axiosHelper.d.ts +11 -0
- package/dist/helper/api/axiosHelper.js +79 -0
- package/dist/helper/api/index.d.ts +2 -0
- package/dist/helper/api/index.js +2 -0
- package/dist/helper/api/responseHelper.d.ts +16 -0
- package/dist/helper/api/responseHelper.js +30 -0
- package/dist/helper/clientHelper.d.ts +11 -0
- package/dist/helper/clientHelper.js +26 -0
- package/dist/helper/dateTimeHelper.d.ts +8 -0
- package/dist/helper/dateTimeHelper.js +23 -0
- package/dist/helper/deviceHelper.d.ts +6 -0
- package/dist/helper/deviceHelper.js +37 -0
- package/dist/helper/geoHelper.d.ts +11 -0
- package/dist/helper/geoHelper.js +47 -0
- package/dist/helper/index.d.ts +6 -0
- package/dist/helper/index.js +6 -0
- package/dist/helper/userHelper.d.ts +10 -0
- package/dist/{bank-system/helper/index.js → helper/userHelper.js} +52 -165
- package/dist/index.d.ts +6 -8
- package/dist/index.js +5 -66
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/api/client/account.d.ts +8 -0
- package/dist/types/api/client/account.js +1 -0
- package/dist/types/api/client/auth.d.ts +8 -0
- package/dist/types/api/client/auth.js +1 -0
- package/dist/types/api/client/blockchain.d.ts +8 -0
- package/dist/types/api/client/blockchain.js +1 -0
- package/dist/types/api/client/index.d.ts +10 -0
- package/dist/types/api/client/index.js +1 -0
- package/dist/types/api/client/ipAddressAndLocation.d.ts +8 -0
- package/dist/types/api/client/ipAddressAndLocation.js +1 -0
- package/dist/types/api/client/limited.d.ts +8 -0
- package/dist/types/api/client/limited.js +1 -0
- package/dist/types/api/client/order.d.ts +8 -0
- package/dist/types/api/client/order.js +1 -0
- package/dist/types/api/client/organization.d.ts +9 -0
- package/dist/types/api/client/organization.js +1 -0
- package/dist/types/api/client/promotion.d.ts +7 -0
- package/dist/types/api/client/promotion.js +1 -0
- package/dist/types/api/client/transaction.d.ts +8 -0
- package/dist/types/api/client/transaction.js +1 -0
- package/dist/types/api/client/user.d.ts +9 -0
- package/dist/types/api/client/user.js +1 -0
- package/dist/types/api/data/account.d.ts +7 -0
- package/dist/types/api/data/account.js +1 -0
- package/dist/types/api/data/auth.d.ts +19 -0
- package/dist/types/api/data/auth.js +1 -0
- package/dist/types/api/data/blockchain.d.ts +60 -0
- package/dist/types/api/data/blockchain.js +1 -0
- package/dist/types/api/data/index.d.ts +9 -0
- package/dist/types/api/data/index.js +1 -0
- package/dist/types/api/data/limited.d.ts +16 -0
- package/dist/types/api/data/limited.js +1 -0
- package/dist/types/api/data/order.d.ts +10 -0
- package/dist/types/api/data/order.js +1 -0
- package/dist/types/api/data/organization.d.ts +37 -0
- package/dist/types/api/data/organization.js +1 -0
- package/dist/types/api/data/transaction.d.ts +22 -0
- package/dist/types/api/data/transaction.js +1 -0
- package/dist/types/api/data/user/address.d.ts +21 -0
- package/dist/types/api/data/user/address.js +1 -0
- package/dist/types/api/data/user/auth.d.ts +8 -0
- package/dist/types/api/data/user/auth.js +1 -0
- package/dist/types/api/data/user/bankAccount.d.ts +32 -0
- package/dist/types/api/data/user/bankAccount.js +1 -0
- package/dist/types/api/data/user/device.d.ts +30 -0
- package/dist/types/api/data/user/device.js +1 -0
- package/dist/types/api/data/user/document.d.ts +17 -0
- package/dist/types/api/data/user/document.js +1 -0
- package/dist/types/api/data/user/email.d.ts +28 -0
- package/dist/types/api/data/user/email.js +1 -0
- package/dist/types/api/data/user/identification.d.ts +17 -0
- package/dist/types/api/data/user/identification.js +1 -0
- package/dist/types/api/data/user/index.d.ts +42 -0
- package/dist/types/api/data/user/index.js +1 -0
- package/dist/types/api/data/user/personalInfo.d.ts +9 -0
- package/dist/types/api/data/user/personalInfo.js +1 -0
- package/dist/types/api/data/user/phone.d.ts +30 -0
- package/dist/types/api/data/user/phone.js +1 -0
- package/dist/types/api/data/user/preferences.d.ts +7 -0
- package/dist/types/api/data/user/preferences.js +1 -0
- package/dist/types/api/data/user/security.d.ts +26 -0
- package/dist/types/api/data/user/security.js +1 -0
- package/dist/types/api/data/user/ticket.d.ts +9 -0
- package/dist/types/api/data/user/ticket.js +1 -0
- package/dist/types/api/index.d.ts +2 -0
- package/dist/types/api/index.js +2 -0
- package/dist/types/banking/account/accountStatementData.d.ts +7 -0
- package/dist/types/banking/account/accountStatementData.js +1 -0
- package/dist/types/banking/account/accountdata.d.ts +19 -0
- package/dist/types/banking/account/accountdata.js +1 -0
- package/dist/types/banking/account/accountstatementdetails.d.ts +18 -0
- package/dist/types/banking/account/accountstatementdetails.js +1 -0
- package/dist/types/banking/account/accountstatementinfo.d.ts +12 -0
- package/dist/types/banking/account/accountstatementinfo.js +1 -0
- package/dist/types/banking/account/accountstatementtransaction.d.ts +15 -0
- package/dist/types/banking/account/accountstatementtransaction.js +1 -0
- package/dist/types/banking/account/chaindata/chaindata.d.ts +8 -0
- package/dist/types/banking/account/chaindata/chaindata.js +1 -0
- package/dist/types/banking/account/chaindata/index.d.ts +1 -0
- package/dist/types/banking/account/chaindata/index.js +1 -0
- package/dist/types/banking/account/creditlimit.d.ts +14 -0
- package/dist/types/banking/account/creditlimit.js +1 -0
- package/dist/types/banking/account/fulfilment.d.ts +17 -0
- package/dist/types/banking/account/fulfilment.js +1 -0
- package/dist/types/banking/account/index.d.ts +13 -0
- package/dist/types/banking/account/index.js +1 -0
- package/dist/types/banking/account/info.d.ts +32 -0
- package/dist/types/banking/account/info.js +1 -0
- package/dist/types/banking/account/limits/dailylimit.d.ts +19 -0
- package/dist/types/banking/account/limits/dailylimit.js +1 -0
- package/dist/types/banking/account/limits/deposit.d.ts +14 -0
- package/dist/types/banking/account/limits/deposit.js +1 -0
- package/dist/types/banking/account/limits/depositinterchange.d.ts +7 -0
- package/dist/types/banking/account/limits/depositinterchange.js +1 -0
- package/dist/types/banking/account/limits/depositmonthly.d.ts +8 -0
- package/dist/types/banking/account/limits/depositmonthly.js +1 -0
- package/dist/types/banking/account/limits/depositpaymentgateway.d.ts +7 -0
- package/dist/types/banking/account/limits/depositpaymentgateway.js +1 -0
- package/dist/types/banking/account/limits/deposityearly.d.ts +8 -0
- package/dist/types/banking/account/limits/deposityearly.js +1 -0
- package/dist/types/banking/account/limits/globaldailylimit.d.ts +11 -0
- package/dist/types/banking/account/limits/globaldailylimit.js +1 -0
- package/dist/types/banking/account/limits/index.d.ts +17 -0
- package/dist/types/banking/account/limits/index.js +1 -0
- package/dist/types/banking/account/limits/limits.d.ts +13 -0
- package/dist/types/banking/account/limits/limits.js +1 -0
- package/dist/types/banking/account/limits/monthlylimit.d.ts +7 -0
- package/dist/types/banking/account/limits/monthlylimit.js +1 -0
- package/dist/types/banking/account/limits/transferreceiving.d.ts +9 -0
- package/dist/types/banking/account/limits/transferreceiving.js +1 -0
- package/dist/types/banking/account/limits/transfersending.d.ts +9 -0
- package/dist/types/banking/account/limits/transfersending.js +1 -0
- package/dist/types/banking/account/limits/withdraw.d.ts +18 -0
- package/dist/types/banking/account/limits/withdraw.js +1 -0
- package/dist/types/banking/account/limits/withdrawinterchange.d.ts +7 -0
- package/dist/types/banking/account/limits/withdrawinterchange.js +1 -0
- package/dist/types/banking/account/limits/withdrawmonthly.d.ts +8 -0
- package/dist/types/banking/account/limits/withdrawmonthly.js +1 -0
- package/dist/types/banking/account/limits/withdraworder.d.ts +7 -0
- package/dist/types/banking/account/limits/withdraworder.js +1 -0
- package/dist/types/banking/account/limits/withdrawpurchaseinterchange.d.ts +7 -0
- package/dist/types/banking/account/limits/withdrawpurchaseinterchange.js +1 -0
- package/dist/types/banking/account/limits/yearlylimit.d.ts +8 -0
- package/dist/types/banking/account/limits/yearlylimit.js +1 -0
- package/dist/types/banking/account/options/bulkshipping.d.ts +11 -0
- package/dist/types/banking/account/options/bulkshipping.js +1 -0
- package/dist/types/banking/account/options/carddetails.d.ts +8 -0
- package/dist/types/banking/account/options/carddetails.js +1 -0
- package/dist/types/banking/account/options/cardproduction.d.ts +23 -0
- package/dist/types/banking/account/options/cardproduction.js +1 -0
- package/dist/types/banking/account/options/courier.d.ts +6 -0
- package/dist/types/banking/account/options/courier.js +1 -0
- package/dist/types/banking/account/options/fulfilment.d.ts +8 -0
- package/dist/types/banking/account/options/fulfilment.js +1 -0
- package/dist/types/banking/account/options/fulfilmentdetails.d.ts +7 -0
- package/dist/types/banking/account/options/fulfilmentdetails.js +1 -0
- package/dist/types/banking/account/options/fulfilmentinfo.d.ts +24 -0
- package/dist/types/banking/account/options/fulfilmentinfo.js +1 -0
- package/dist/types/banking/account/options/index.d.ts +9 -0
- package/dist/types/banking/account/options/index.js +1 -0
- package/dist/types/banking/account/options/options.d.ts +6 -0
- package/dist/types/banking/account/options/options.js +1 -0
- package/dist/types/banking/account/options/security.d.ts +4 -0
- package/dist/types/banking/account/options/security.js +1 -0
- package/dist/types/banking/account/security.d.ts +7 -0
- package/dist/types/banking/account/security.js +1 -0
- package/dist/types/banking/account/tokenization/index.d.ts +4 -0
- package/dist/types/banking/account/tokenization/index.js +1 -0
- package/dist/types/banking/account/tokenization/provision.d.ts +35 -0
- package/dist/types/banking/account/tokenization/provision.js +1 -0
- package/dist/types/banking/account/tokenization/provisionrequest.d.ts +9 -0
- package/dist/types/banking/account/tokenization/provisionrequest.js +1 -0
- package/dist/types/banking/account/tokenization/provisionresponse.d.ts +6 -0
- package/dist/types/banking/account/tokenization/provisionresponse.js +1 -0
- package/dist/types/banking/account/tokenization/tokenization.d.ts +16 -0
- package/dist/types/banking/account/tokenization/tokenization.js +1 -0
- package/dist/types/banking/blockchain/blockchainData.d.ts +8 -0
- package/dist/types/banking/blockchain/blockchainData.js +1 -0
- package/dist/types/banking/blockchain/chainTransactionData.d.ts +8 -0
- package/dist/types/banking/blockchain/chainTransactionData.js +1 -0
- package/dist/types/banking/blockchain/coin.d.ts +5 -0
- package/dist/types/banking/blockchain/coin.js +1 -0
- package/dist/types/banking/blockchain/delegateData.d.ts +3 -0
- package/dist/types/banking/blockchain/delegateData.js +1 -0
- package/dist/types/banking/blockchain/delegationData.d.ts +6 -0
- package/dist/types/banking/blockchain/delegationData.js +1 -0
- package/dist/types/banking/blockchain/index.d.ts +9 -0
- package/dist/types/banking/blockchain/index.js +1 -0
- package/dist/types/banking/blockchain/info.d.ts +16 -0
- package/dist/types/banking/blockchain/info.js +1 -0
- package/dist/types/banking/blockchain/multiSendData.d.ts +6 -0
- package/dist/types/banking/blockchain/multiSendData.js +1 -0
- package/dist/types/banking/blockchain/sendData.d.ts +6 -0
- package/dist/types/banking/blockchain/sendData.js +1 -0
- package/dist/types/banking/blockchain/undelegateData.d.ts +3 -0
- package/dist/types/banking/blockchain/undelegateData.js +1 -0
- package/dist/types/banking/common/archive.d.ts +7 -0
- package/dist/types/banking/common/archive.js +1 -0
- package/dist/types/banking/common/authentication.d.ts +5 -0
- package/dist/types/banking/common/authentication.js +1 -0
- package/dist/types/banking/common/bankextendeddata.d.ts +10 -0
- package/dist/types/banking/common/bankextendeddata.js +1 -0
- package/dist/types/banking/common/baseresult.d.ts +13 -0
- package/dist/types/banking/common/baseresult.js +1 -0
- package/dist/types/banking/common/beneficiaryaddress.d.ts +9 -0
- package/dist/types/banking/common/beneficiaryaddress.js +1 -0
- package/dist/types/banking/common/classification.d.ts +9 -0
- package/dist/types/banking/common/classification.js +1 -0
- package/dist/types/banking/common/contentfile.d.ts +6 -0
- package/dist/types/banking/common/contentfile.js +1 -0
- package/dist/types/banking/common/cryptoaddressextendeddata.d.ts +6 -0
- package/dist/types/banking/common/cryptoaddressextendeddata.js +1 -0
- package/dist/types/banking/common/currencyclouddata.d.ts +65 -0
- package/dist/types/banking/common/currencyclouddata.js +1 -0
- package/dist/types/banking/common/devicecultureinfo.d.ts +26 -0
- package/dist/types/banking/common/devicecultureinfo.js +1 -0
- package/dist/types/banking/common/externalhostinfo.d.ts +9 -0
- package/dist/types/banking/common/externalhostinfo.js +1 -0
- package/dist/types/banking/common/geocoordinates.d.ts +6 -0
- package/dist/types/banking/common/geocoordinates.js +1 -0
- package/dist/types/banking/common/history.d.ts +19 -0
- package/dist/types/banking/common/history.js +1 -0
- package/dist/types/banking/common/index.d.ts +21 -0
- package/dist/types/banking/common/index.js +1 -0
- package/dist/types/banking/common/lastactivity.d.ts +10 -0
- package/dist/types/banking/common/lastactivity.js +1 -0
- package/dist/types/banking/common/notes.d.ts +5 -0
- package/dist/types/banking/common/notes.js +1 -0
- package/dist/types/banking/common/openpayddata.d.ts +34 -0
- package/dist/types/banking/common/openpayddata.js +1 -0
- package/dist/types/banking/common/people/alias.d.ts +10 -0
- package/dist/types/banking/common/people/alias.js +1 -0
- package/dist/types/banking/common/people/billpaydata.d.ts +2 -0
- package/dist/types/banking/common/people/billpaydata.js +1 -0
- package/dist/types/banking/common/people/customerinfo.d.ts +6 -0
- package/dist/types/banking/common/people/customerinfo.js +1 -0
- package/dist/types/banking/common/people/eftdata.d.ts +2 -0
- package/dist/types/banking/common/people/eftdata.js +1 -0
- package/dist/types/banking/common/people/etransferdata.d.ts +6 -0
- package/dist/types/banking/common/people/etransferdata.js +1 -0
- package/dist/types/banking/common/people/index.d.ts +6 -0
- package/dist/types/banking/common/people/index.js +1 -0
- package/dist/types/banking/common/people/peoplesdata.d.ts +7 -0
- package/dist/types/banking/common/people/peoplesdata.js +1 -0
- package/dist/{bank-system/interfaces/commonInterface.d.ts → types/banking/common/result.d.ts} +3 -2
- package/dist/types/banking/common/result.js +1 -0
- package/dist/types/banking/common/security/index.d.ts +2 -0
- package/dist/types/banking/common/security/index.js +1 -0
- package/dist/types/banking/common/security/simplifiedaccessrule.d.ts +5 -0
- package/dist/types/banking/common/security/simplifiedaccessrule.js +1 -0
- package/dist/types/banking/common/security/simplifiedaccessruleinfo.d.ts +13 -0
- package/dist/types/banking/common/security/simplifiedaccessruleinfo.js +1 -0
- package/dist/types/banking/common/snbdata.d.ts +6 -0
- package/dist/types/banking/common/snbdata.js +1 -0
- package/dist/types/banking/common/workinghour.d.ts +11 -0
- package/dist/types/banking/common/workinghour.js +1 -0
- package/dist/types/banking/entities/address.d.ts +24 -0
- package/dist/types/banking/entities/address.js +1 -0
- package/dist/types/banking/entities/bankaccount.d.ts +43 -0
- package/dist/types/banking/entities/bankaccount.js +1 -0
- package/dist/types/banking/entities/creditcard.d.ts +25 -0
- package/dist/types/banking/entities/creditcard.js +1 -0
- package/dist/types/banking/entities/cryptoWallet.d.ts +7 -0
- package/dist/types/banking/entities/cryptoWallet.js +1 -0
- package/dist/types/banking/entities/cryptoaddress.d.ts +18 -0
- package/dist/types/banking/entities/cryptoaddress.js +1 -0
- package/dist/types/banking/entities/customField/index.d.ts +2 -0
- package/dist/types/banking/entities/customField/index.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/giftData.d.ts +12 -0
- package/dist/types/banking/entities/customField/promotionData/giftData.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/index.d.ts +3 -0
- package/dist/types/banking/entities/customField/promotionData/index.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/promotionData.d.ts +7 -0
- package/dist/types/banking/entities/customField/promotionData/promotionData.js +1 -0
- package/dist/types/banking/entities/customField/promotionData/referralData.d.ts +5 -0
- package/dist/types/banking/entities/customField/promotionData/referralData.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/action.d.ts +5 -0
- package/dist/types/banking/entities/customField/userAccessControl/action.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/index.d.ts +4 -0
- package/dist/types/banking/entities/customField/userAccessControl/index.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/page.d.ts +7 -0
- package/dist/types/banking/entities/customField/userAccessControl/page.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/section.d.ts +7 -0
- package/dist/types/banking/entities/customField/userAccessControl/section.js +1 -0
- package/dist/types/banking/entities/customField/userAccessControl/userAccessControl.d.ts +5 -0
- package/dist/types/banking/entities/customField/userAccessControl/userAccessControl.js +1 -0
- package/dist/types/banking/entities/device.d.ts +25 -0
- package/dist/types/banking/entities/device.js +1 -0
- package/dist/types/banking/entities/devicehistory.d.ts +19 -0
- package/dist/types/banking/entities/devicehistory.js +1 -0
- package/dist/types/banking/entities/email.d.ts +15 -0
- package/dist/types/banking/entities/email.js +1 -0
- package/dist/types/banking/entities/externalauthentication.d.ts +15 -0
- package/dist/types/banking/entities/externalauthentication.js +1 -0
- package/dist/types/banking/entities/generalrequirements.d.ts +10 -0
- package/dist/types/banking/entities/generalrequirements.js +1 -0
- package/dist/types/banking/entities/identification.d.ts +23 -0
- package/dist/types/banking/entities/identification.js +1 -0
- package/dist/types/banking/entities/index.d.ts +20 -0
- package/dist/types/banking/entities/index.js +1 -0
- package/dist/types/banking/entities/json/IdentificationExtraData.d.ts +5 -0
- package/dist/types/banking/entities/json/IdentificationExtraData.js +1 -0
- package/dist/types/banking/entities/json/device/deviceextendedinfo.d.ts +10 -0
- package/dist/types/banking/entities/json/device/deviceextendedinfo.js +1 -0
- package/dist/types/banking/entities/json/device/index.d.ts +2 -0
- package/dist/types/banking/entities/json/device/index.js +1 -0
- package/dist/types/banking/entities/json/device/siminfo.d.ts +8 -0
- package/dist/types/banking/entities/json/device/siminfo.js +1 -0
- package/dist/types/banking/entities/json/index.d.ts +2 -0
- package/dist/types/banking/entities/json/index.js +1 -0
- package/dist/types/banking/entities/notification.d.ts +9 -0
- package/dist/types/banking/entities/notification.js +1 -0
- package/dist/types/banking/entities/paymentCryptoAddress.d.ts +11 -0
- package/dist/types/banking/entities/paymentCryptoAddress.js +1 -0
- package/dist/types/banking/entities/paymentInfo.d.ts +16 -0
- package/dist/types/banking/entities/paymentInfo.js +1 -0
- package/dist/types/banking/entities/phone.d.ts +16 -0
- package/dist/types/banking/entities/phone.js +1 -0
- package/dist/types/banking/entities/relationship.d.ts +24 -0
- package/dist/types/banking/entities/relationship.js +1 -0
- package/dist/types/banking/entities/socialmedia.d.ts +12 -0
- package/dist/types/banking/entities/socialmedia.js +1 -0
- package/dist/types/banking/entities/termsconditions.d.ts +8 -0
- package/dist/types/banking/entities/termsconditions.js +1 -0
- package/dist/types/banking/group/details.d.ts +9 -0
- package/dist/types/banking/group/details.js +1 -0
- package/dist/types/banking/group/groupdata.d.ts +12 -0
- package/dist/types/banking/group/groupdata.js +1 -0
- package/dist/types/banking/group/groupuser.d.ts +16 -0
- package/dist/types/banking/group/groupuser.js +1 -0
- package/dist/types/banking/group/index.d.ts +7 -0
- package/dist/types/banking/group/index.js +1 -0
- package/dist/types/banking/group/info.d.ts +16 -0
- package/dist/types/banking/group/info.js +1 -0
- package/dist/types/banking/group/localization.d.ts +5 -0
- package/dist/types/banking/group/localization.js +1 -0
- package/dist/types/banking/group/media.d.ts +5 -0
- package/dist/types/banking/group/media.js +1 -0
- package/dist/types/banking/group/settings/classificationinfo.d.ts +7 -0
- package/dist/types/banking/group/settings/classificationinfo.js +1 -0
- package/dist/types/banking/group/settings/companyusers.d.ts +5 -0
- package/dist/types/banking/group/settings/companyusers.js +1 -0
- package/dist/types/banking/group/settings/externalintegration.d.ts +6 -0
- package/dist/types/banking/group/settings/externalintegration.js +1 -0
- package/dist/types/banking/group/settings/fortnox.d.ts +9 -0
- package/dist/types/banking/group/settings/fortnox.js +1 -0
- package/dist/types/banking/group/settings/index.d.ts +8 -0
- package/dist/types/banking/group/settings/index.js +1 -0
- package/dist/types/banking/group/settings/messagingsetup.d.ts +4 -0
- package/dist/types/banking/group/settings/messagingsetup.js +1 -0
- package/dist/types/banking/group/settings/qvitoo.d.ts +15 -0
- package/dist/types/banking/group/settings/qvitoo.js +1 -0
- package/dist/types/banking/group/settings/setting.d.ts +6 -0
- package/dist/types/banking/group/settings/setting.js +1 -0
- package/dist/types/banking/group/settings/voucherrows.d.ts +12 -0
- package/dist/types/banking/group/settings/voucherrows.js +1 -0
- package/dist/types/banking/index.d.ts +11 -0
- package/dist/types/banking/index.js +1 -0
- package/dist/types/banking/oauth/credentialsData.d.ts +16 -0
- package/dist/types/banking/oauth/credentialsData.js +1 -0
- package/dist/types/banking/oauth/index.d.ts +2 -0
- package/dist/types/banking/oauth/index.js +1 -0
- package/dist/types/banking/oauth/tokenData.d.ts +19 -0
- package/dist/types/banking/oauth/tokenData.js +1 -0
- package/dist/types/banking/order/customForm/ggez1.d.ts +20 -0
- package/dist/types/banking/order/customForm/ggez1.js +1 -0
- package/dist/types/banking/order/customForm/ggezGiftRewards.d.ts +12 -0
- package/dist/types/banking/order/customForm/ggezGiftRewards.js +1 -0
- package/dist/types/banking/order/customForm/ggezReferralRewards.d.ts +24 -0
- package/dist/types/banking/order/customForm/ggezReferralRewards.js +1 -0
- package/dist/types/banking/order/customForm/index.d.ts +3 -0
- package/dist/types/banking/order/customForm/index.js +1 -0
- package/dist/types/banking/order/customFormData.d.ts +6 -0
- package/dist/types/banking/order/customFormData.js +1 -0
- package/dist/types/banking/order/features.d.ts +5 -0
- package/dist/types/banking/order/features.js +1 -0
- package/dist/types/banking/order/fee.d.ts +15 -0
- package/dist/types/banking/order/fee.js +1 -0
- package/dist/types/banking/order/fulfilment/fulfilmentInfo.d.ts +12 -0
- package/dist/types/banking/order/fulfilment/fulfilmentInfo.js +1 -0
- package/dist/types/banking/order/fulfilment/index.d.ts +3 -0
- package/dist/types/banking/order/fulfilment/index.js +1 -0
- package/dist/types/banking/order/fulfilment/orderFulfilment.d.ts +15 -0
- package/dist/types/banking/order/fulfilment/orderFulfilment.js +1 -0
- package/dist/types/banking/order/fulfilment/pinCodeFulfilment.d.ts +6 -0
- package/dist/types/banking/order/fulfilment/pinCodeFulfilment.js +1 -0
- package/dist/types/banking/order/index.d.ts +22 -0
- package/dist/types/banking/order/index.js +1 -0
- package/dist/types/banking/order/info.d.ts +30 -0
- package/dist/types/banking/order/info.js +1 -0
- package/dist/types/banking/order/items/index.d.ts +2 -0
- package/dist/types/banking/order/items/index.js +2 -0
- package/dist/types/banking/order/items/info.d.ts +7 -0
- package/dist/types/banking/order/items/info.js +1 -0
- package/dist/types/banking/order/items/orderItem.d.ts +14 -0
- package/dist/types/banking/order/items/orderItem.js +1 -0
- package/dist/types/banking/order/lotteryTicket.d.ts +17 -0
- package/dist/types/banking/order/lotteryTicket.js +1 -0
- package/dist/types/banking/order/orderData.d.ts +12 -0
- package/dist/types/banking/order/orderData.js +1 -0
- package/dist/types/banking/order/orderError.d.ts +14 -0
- package/dist/types/banking/order/orderError.js +1 -0
- package/dist/types/banking/order/paymentMethod.d.ts +12 -0
- package/dist/types/banking/order/paymentMethod.js +1 -0
- package/dist/types/banking/order/pinCode.d.ts +13 -0
- package/dist/types/banking/order/pinCode.js +1 -0
- package/dist/types/banking/order/profit.d.ts +14 -0
- package/dist/types/banking/order/profit.js +1 -0
- package/dist/types/banking/order/promotion.d.ts +2 -0
- package/dist/types/banking/order/promotion.js +1 -0
- package/dist/types/banking/order/reverseData.d.ts +12 -0
- package/dist/types/banking/order/reverseData.js +1 -0
- package/dist/types/banking/order/reverseItem.d.ts +7 -0
- package/dist/types/banking/order/reverseItem.js +1 -0
- package/dist/types/banking/order/reversePinCode.d.ts +4 -0
- package/dist/types/banking/order/reversePinCode.js +1 -0
- package/dist/types/banking/order/ticket.d.ts +2 -0
- package/dist/types/banking/order/ticket.js +1 -0
- package/dist/types/banking/order/topUp.d.ts +4 -0
- package/dist/types/banking/order/topUp.js +1 -0
- package/dist/types/banking/order/variant.d.ts +26 -0
- package/dist/types/banking/order/variant.js +1 -0
- package/dist/types/banking/order/voucher.d.ts +10 -0
- package/dist/types/banking/order/voucher.js +1 -0
- package/dist/types/banking/order/voucherInfo.d.ts +7 -0
- package/dist/types/banking/order/voucherInfo.js +1 -0
- package/dist/types/banking/organization/details.d.ts +7 -0
- package/dist/types/banking/organization/details.js +1 -0
- package/dist/types/banking/organization/index.d.ts +3 -0
- package/dist/types/banking/organization/index.js +1 -0
- package/dist/types/banking/organization/info.d.ts +17 -0
- package/dist/types/banking/organization/info.js +1 -0
- package/dist/types/banking/organization/organizationdata.d.ts +22 -0
- package/dist/types/banking/organization/organizationdata.js +1 -0
- package/dist/types/banking/ticket/content.d.ts +5 -0
- package/dist/types/banking/ticket/content.js +1 -0
- package/dist/types/banking/ticket/history.d.ts +6 -0
- package/dist/types/banking/ticket/history.js +1 -0
- package/dist/types/banking/ticket/index.d.ts +5 -0
- package/dist/types/banking/ticket/index.js +1 -0
- package/dist/types/banking/ticket/info.d.ts +34 -0
- package/dist/types/banking/ticket/info.js +1 -0
- package/dist/types/banking/ticket/subentity.d.ts +7 -0
- package/dist/types/banking/ticket/subentity.js +1 -0
- package/dist/types/banking/ticket/ticketdata.d.ts +7 -0
- package/dist/types/banking/ticket/ticketdata.js +1 -0
- package/dist/types/banking/transaction/billingAddress.d.ts +11 -0
- package/dist/types/banking/transaction/billingAddress.js +1 -0
- package/dist/types/banking/transaction/conversion.d.ts +21 -0
- package/dist/types/banking/transaction/conversion.js +1 -0
- package/dist/types/banking/transaction/exchange.d.ts +10 -0
- package/dist/types/banking/transaction/exchange.js +1 -0
- package/dist/types/banking/transaction/fee.d.ts +9 -0
- package/dist/types/banking/transaction/fee.js +1 -0
- package/dist/types/banking/transaction/index.d.ts +10 -0
- package/dist/types/banking/transaction/index.js +1 -0
- package/dist/types/banking/transaction/info.d.ts +33 -0
- package/dist/types/banking/transaction/info.js +1 -0
- package/dist/types/banking/transaction/receiverInfo.d.ts +8 -0
- package/dist/types/banking/transaction/receiverInfo.js +1 -0
- package/dist/types/banking/transaction/tax.d.ts +9 -0
- package/dist/types/banking/transaction/tax.js +1 -0
- package/dist/types/banking/transaction/transactionData.d.ts +23 -0
- package/dist/types/banking/transaction/transactionData.js +1 -0
- package/dist/types/banking/transaction/transactionInquiry.d.ts +26 -0
- package/dist/types/banking/transaction/transactionInquiry.js +1 -0
- package/dist/types/banking/transaction/transfer.d.ts +10 -0
- package/dist/types/banking/transaction/transfer.js +1 -0
- package/dist/types/banking/user/activity.d.ts +15 -0
- package/dist/types/banking/user/activity.js +1 -0
- package/dist/types/banking/user/attachment.d.ts +9 -0
- package/dist/types/banking/user/attachment.js +1 -0
- package/dist/types/banking/user/commerce/commerce.d.ts +6 -0
- package/dist/types/banking/user/commerce/commerce.js +1 -0
- package/dist/types/banking/user/commerce/index.d.ts +3 -0
- package/dist/types/banking/user/commerce/index.js +1 -0
- package/dist/types/banking/user/commerce/role.d.ts +5 -0
- package/dist/types/banking/user/commerce/role.js +1 -0
- package/dist/types/banking/user/commerce/usercommerceconfiguration.d.ts +6 -0
- package/dist/types/banking/user/commerce/usercommerceconfiguration.js +1 -0
- package/dist/types/banking/user/confirmForgetSecurityData.d.ts +5 -0
- package/dist/types/banking/user/confirmForgetSecurityData.js +1 -0
- package/dist/types/banking/user/confirmSecurityData.d.ts +4 -0
- package/dist/types/banking/user/confirmSecurityData.js +1 -0
- package/dist/types/banking/user/confirmUserSecurity.d.ts +8 -0
- package/dist/types/banking/user/confirmUserSecurity.js +1 -0
- package/dist/types/banking/user/confirmUserSecurityInfo.d.ts +11 -0
- package/dist/types/banking/user/confirmUserSecurityInfo.js +1 -0
- package/dist/types/banking/user/currency.d.ts +7 -0
- package/dist/types/banking/user/currency.js +1 -0
- package/dist/types/banking/user/documentdata.d.ts +8 -0
- package/dist/types/banking/user/documentdata.js +1 -0
- package/dist/types/banking/user/documentinfo.d.ts +25 -0
- package/dist/types/banking/user/documentinfo.js +1 -0
- package/dist/types/banking/user/forgetPassword.d.ts +6 -0
- package/dist/types/banking/user/forgetPassword.js +1 -0
- package/dist/types/banking/user/forgetSecurityData.d.ts +7 -0
- package/dist/types/banking/user/forgetSecurityData.js +1 -0
- package/dist/types/banking/user/forgetSecurityInfo.d.ts +7 -0
- package/dist/types/banking/user/forgetSecurityInfo.js +1 -0
- package/dist/types/banking/user/index.d.ts +36 -0
- package/dist/types/banking/user/index.js +1 -0
- package/dist/types/banking/user/info.d.ts +16 -0
- package/dist/types/banking/user/info.js +1 -0
- package/dist/types/banking/user/personalinfo.d.ts +15 -0
- package/dist/types/banking/user/personalinfo.js +1 -0
- package/dist/types/banking/user/preferences.d.ts +15 -0
- package/dist/types/banking/user/preferences.js +1 -0
- package/dist/types/banking/user/resetPassword.d.ts +5 -0
- package/dist/types/banking/user/resetPassword.js +1 -0
- package/dist/types/banking/user/resetSecurityCode.d.ts +5 -0
- package/dist/types/banking/user/resetSecurityCode.js +1 -0
- package/dist/types/banking/user/resetSecurityData.d.ts +8 -0
- package/dist/types/banking/user/resetSecurityData.js +1 -0
- package/dist/types/banking/user/resetSecurityQuestions.d.ts +8 -0
- package/dist/types/banking/user/resetSecurityQuestions.js +1 -0
- package/dist/types/banking/user/resetUserSecurity.d.ts +7 -0
- package/dist/types/banking/user/resetUserSecurity.js +1 -0
- package/dist/types/banking/user/resetUserSecurityInfo.d.ts +11 -0
- package/dist/types/banking/user/resetUserSecurityInfo.js +1 -0
- package/dist/types/banking/user/security.d.ts +11 -0
- package/dist/types/banking/user/security.js +1 -0
- package/dist/types/banking/user/userauthenticationdata.d.ts +12 -0
- package/dist/types/banking/user/userauthenticationdata.js +1 -0
- package/dist/types/banking/user/usercreditlimit.d.ts +5 -0
- package/dist/types/banking/user/usercreditlimit.js +1 -0
- package/dist/types/banking/user/userdata.d.ts +39 -0
- package/dist/types/banking/user/userdata.js +1 -0
- package/dist/types/banking/user/validateForgetSecurityData.d.ts +7 -0
- package/dist/types/banking/user/validateForgetSecurityData.js +1 -0
- package/dist/types/banking/user/validateLimitedSecurity.d.ts +7 -0
- package/dist/types/banking/user/validateLimitedSecurity.js +1 -0
- package/dist/types/banking/user/validateLimitedSecurityData.d.ts +6 -0
- package/dist/types/banking/user/validateLimitedSecurityData.js +1 -0
- package/dist/types/banking/user/validateSecurityData.d.ts +11 -0
- package/dist/types/banking/user/validateSecurityData.js +1 -0
- package/dist/types/banking/user/validateUserSecurity.d.ts +7 -0
- package/dist/types/banking/user/validateUserSecurity.js +1 -0
- package/dist/types/banking/user/validateUserSecurityInfo.d.ts +11 -0
- package/dist/types/banking/user/validateUserSecurityInfo.js +1 -0
- package/dist/types/banking/user/validation/index.d.ts +2 -0
- package/dist/types/banking/user/validation/index.js +1 -0
- package/dist/types/banking/user/validation/info.d.ts +18 -0
- package/dist/types/banking/user/validation/info.js +1 -0
- package/dist/types/banking/user/validation/validationdata.d.ts +7 -0
- package/dist/types/banking/user/validation/validationdata.js +1 -0
- package/dist/types/banking/user/verifySecurityData.d.ts +8 -0
- package/dist/types/banking/user/verifySecurityData.js +1 -0
- package/dist/types/banking/user/verifyUserSecurity.d.ts +7 -0
- package/dist/types/banking/user/verifyUserSecurity.js +1 -0
- package/dist/types/banking/user/verifyUserSecurityInfo.d.ts +13 -0
- package/dist/types/banking/user/verifyUserSecurityInfo.js +1 -0
- package/dist/types/helper/axiosHelper.d.ts +10 -0
- package/dist/types/helper/axiosHelper.js +1 -0
- package/dist/types/helper/geoHelper.d.ts +8 -0
- package/dist/types/helper/geoHelper.js +1 -0
- package/dist/types/helper/index.d.ts +2 -0
- package/dist/types/helper/index.js +2 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.js +1 -0
- package/dist/types/node/amount.d.ts +5 -0
- package/dist/types/node/amount.js +1 -0
- package/dist/types/node/index.d.ts +3 -0
- package/dist/types/node/index.js +3 -0
- package/dist/types/node/lotteryPrize.d.ts +10 -0
- package/dist/types/node/lotteryPrize.js +1 -0
- package/dist/types/node/promotionDetails.d.ts +25 -0
- package/dist/types/node/promotionDetails.js +1 -0
- package/dist/{bank-system/utils → utils}/chainAddressMasking.js +1 -3
- package/dist/{bank-system/utils → utils}/copyText.js +1 -5
- package/dist/utils/countryAndCurrencyData.js +17 -0
- package/dist/{bank-system/utils → utils}/enumToOption.js +2 -5
- package/dist/{bank-system/utils → utils}/generateOneLiner.js +1 -4
- package/dist/{bank-system/utils → utils}/generateSourceId.js +1 -4
- package/dist/utils/getCountryName.js +20 -0
- package/dist/utils/getEnumName.js +6 -0
- package/dist/utils/getStateByCountryCode.js +8 -0
- package/dist/utils/handleEncryption/decryptData.js +35 -0
- package/dist/utils/handleEncryption/encryptData.js +11 -0
- package/dist/utils/handleEncryption/index.js +4 -0
- package/dist/{bank-system/utils → utils}/handleEncryption/key.js +10 -17
- package/dist/{bank-system/utils → utils}/index.d.ts +1 -2
- package/dist/utils/index.js +14 -0
- package/dist/{bank-system/utils → utils}/maskingFunction.js +1 -4
- package/dist/{bank-system/utils → utils}/regex.js +1 -5
- package/dist/{bank-system/utils → utils}/sortUserInfo.js +2 -5
- package/package.json +12 -5
- package/dist/bank-system/constants/constants.d.ts +0 -15
- package/dist/bank-system/constants/constants.js +0 -21
- package/dist/bank-system/constants/index.js +0 -19
- package/dist/bank-system/constants/structure.d.ts +0 -74
- package/dist/bank-system/content/index.js +0 -12
- package/dist/bank-system/helper/data.d.ts +0 -46
- package/dist/bank-system/helper/data.js +0 -57
- package/dist/bank-system/helper/dataStructure.d.ts +0 -3274
- package/dist/bank-system/helper/dataStructure.js +0 -1499
- package/dist/bank-system/helper/index.d.ts +0 -29
- package/dist/bank-system/interfaces/accountInterface.d.ts +0 -27
- package/dist/bank-system/interfaces/accountInterface.js +0 -2
- package/dist/bank-system/interfaces/bankingSystemInterface.d.ts +0 -316
- package/dist/bank-system/interfaces/bankingSystemInterface.js +0 -2
- package/dist/bank-system/interfaces/blockchain.d.ts +0 -149
- package/dist/bank-system/interfaces/blockchain.js +0 -2
- package/dist/bank-system/interfaces/commonInterface.js +0 -2
- package/dist/bank-system/interfaces/deviceInterface.d.ts +0 -34
- package/dist/bank-system/interfaces/deviceInterface.js +0 -2
- package/dist/bank-system/interfaces/index.d.ts +0 -6
- package/dist/bank-system/interfaces/index.js +0 -22
- package/dist/bank-system/interfaces/interface.d.ts +0 -578
- package/dist/bank-system/interfaces/interface.js +0 -2
- package/dist/bank-system/interfaces/organizationInterface.d.ts +0 -119
- package/dist/bank-system/interfaces/organizationInterface.js +0 -2
- package/dist/bank-system/interfaces/promotion.d.ts +0 -47
- package/dist/bank-system/interfaces/promotion.js +0 -2
- package/dist/bank-system/interfaces/signInterface.d.ts +0 -128
- package/dist/bank-system/interfaces/signInterface.js +0 -2
- package/dist/bank-system/interfaces/transactionInterface.d.ts +0 -11
- package/dist/bank-system/interfaces/transactionInterface.js +0 -2
- package/dist/bank-system/restApi/index.d.ts +0 -8
- package/dist/bank-system/restApi/index.js +0 -32
- package/dist/bank-system/services/account.d.ts +0 -39
- package/dist/bank-system/services/account.js +0 -139
- package/dist/bank-system/services/addresses.d.ts +0 -48
- package/dist/bank-system/services/addresses.js +0 -121
- package/dist/bank-system/services/auth.d.ts +0 -90
- package/dist/bank-system/services/auth.js +0 -320
- package/dist/bank-system/services/bankAccount.d.ts +0 -48
- package/dist/bank-system/services/bankAccount.js +0 -122
- package/dist/bank-system/services/blockchain.d.ts +0 -28
- package/dist/bank-system/services/blockchain.js +0 -109
- package/dist/bank-system/services/device.d.ts +0 -46
- package/dist/bank-system/services/device.js +0 -197
- package/dist/bank-system/services/document.d.ts +0 -15
- package/dist/bank-system/services/document.js +0 -48
- package/dist/bank-system/services/email.d.ts +0 -70
- package/dist/bank-system/services/email.js +0 -161
- package/dist/bank-system/services/history.d.ts +0 -14
- package/dist/bank-system/services/history.js +0 -45
- package/dist/bank-system/services/identification.d.ts +0 -37
- package/dist/bank-system/services/identification.js +0 -107
- package/dist/bank-system/services/index.d.ts +0 -19
- package/dist/bank-system/services/index.js +0 -39
- package/dist/bank-system/services/organization.d.ts +0 -28
- package/dist/bank-system/services/organization.js +0 -120
- package/dist/bank-system/services/personalInfo.d.ts +0 -26
- package/dist/bank-system/services/personalInfo.js +0 -86
- package/dist/bank-system/services/phone.d.ts +0 -70
- package/dist/bank-system/services/phone.js +0 -164
- package/dist/bank-system/services/security.d.ts +0 -114
- package/dist/bank-system/services/security.js +0 -271
- package/dist/bank-system/services/ticket.d.ts +0 -15
- package/dist/bank-system/services/ticket.js +0 -55
- package/dist/bank-system/services/token.d.ts +0 -11
- package/dist/bank-system/services/token.js +0 -79
- package/dist/bank-system/services/transaction.d.ts +0 -10
- package/dist/bank-system/services/transaction.js +0 -51
- package/dist/bank-system/services/verifyAndConfirm.d.ts +0 -116
- package/dist/bank-system/services/verifyAndConfirm.js +0 -302
- package/dist/bank-system/utils/blockchainHelper.d.ts +0 -6
- package/dist/bank-system/utils/blockchainHelper.js +0 -41
- package/dist/bank-system/utils/countryAndCurrencyData.js +0 -22
- package/dist/bank-system/utils/fillDeviceDetails.d.ts +0 -23
- package/dist/bank-system/utils/fillDeviceDetails.js +0 -44
- package/dist/bank-system/utils/getCountryName.js +0 -27
- package/dist/bank-system/utils/getEnumName.js +0 -9
- package/dist/bank-system/utils/getStateByCountryCode.js +0 -14
- package/dist/bank-system/utils/handleEncryption/decryptData.js +0 -76
- package/dist/bank-system/utils/handleEncryption/encryptData.js +0 -46
- package/dist/bank-system/utils/handleEncryption/index.js +0 -12
- package/dist/bank-system/utils/index.js +0 -42
- package/dist/bank-system/utils/info.d.ts +0 -8
- package/dist/bank-system/utils/info.js +0 -74
- package/dist/keplr-config/chainInfo.d.ts +0 -8
- package/dist/keplr-config/chainInfo.js +0 -65
- package/dist/{bank-system/constants → constants}/index.d.ts +1 -1
- /package/dist/{bank-system/content → content}/accountCurrencies.d.ts +0 -0
- /package/dist/{bank-system/content → content}/countries.d.ts +0 -0
- /package/dist/{bank-system/content → content}/currencies.d.ts +0 -0
- /package/dist/{bank-system/content → content}/index.d.ts +0 -0
- /package/dist/{bank-system/content → content}/state.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/chainAddressMasking.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/copyText.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/countryAndCurrencyData.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/enumToOption.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/generateOneLiner.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/generateSourceId.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/getCountryName.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/getEnumName.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/getStateByCountryCode.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/decryptData.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/encryptData.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/index.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/handleEncryption/key.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/maskingFunction.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/regex.d.ts +0 -0
- /package/dist/{bank-system/utils → utils}/sortUserInfo.d.ts +0 -0
@@ -1,897 +1,268 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
EntityData[EntityData["Program_Feature_Security_Pages_Options"] = 111] = "Program_Feature_Security_Pages_Options";
|
267
|
-
EntityData[EntityData["Program_Feature_Password_Settings"] = 112] = "Program_Feature_Password_Settings";
|
268
|
-
EntityData[EntityData["Program_Feature_Credit_Card_Security_Options"] = 113] = "Program_Feature_Credit_Card_Security_Options";
|
269
|
-
EntityData[EntityData["Program_Feature_Advance_UI_Options"] = 114] = "Program_Feature_Advance_UI_Options";
|
270
|
-
EntityData[EntityData["Program_Feature_User_UI_Options"] = 115] = "Program_Feature_User_UI_Options";
|
271
|
-
EntityData[EntityData["Program_Feature_Currency_Converter"] = 116] = "Program_Feature_Currency_Converter";
|
272
|
-
EntityData[EntityData["Program_BIN_Feature_Activation_Setup"] = 117] = "Program_BIN_Feature_Activation_Setup";
|
273
|
-
EntityData[EntityData["Program_BIN_Feature_Virtual_Card_Display"] = 118] = "Program_BIN_Feature_Virtual_Card_Display";
|
274
|
-
EntityData[EntityData["Program_BIN_Feature_Account_Renewals"] = 119] = "Program_BIN_Feature_Account_Renewals";
|
275
|
-
EntityData[EntityData["Program_BIN_Feature_Display_Options"] = 120] = "Program_BIN_Feature_Display_Options";
|
276
|
-
EntityData[EntityData["Program_BIN_Feature_Security_Features"] = 121] = "Program_BIN_Feature_Security_Features";
|
277
|
-
EntityData[EntityData["Program_BIN_Feature_Settlement_Account"] = 122] = "Program_BIN_Feature_Settlement_Account";
|
278
|
-
EntityData[EntityData["Program_BIN_Feature_SMS_Options"] = 123] = "Program_BIN_Feature_SMS_Options";
|
279
|
-
EntityData[EntityData["Program_BIN_Feature_Authorizations_AVS"] = 124] = "Program_BIN_Feature_Authorizations_AVS";
|
280
|
-
EntityData[EntityData["Program_BIN_Feature_Interchange_Options"] = 125] = "Program_BIN_Feature_Interchange_Options";
|
281
|
-
EntityData[EntityData["Program_BIN_Feature_Fraud_Detection_System"] = 126] = "Program_BIN_Feature_Fraud_Detection_System";
|
282
|
-
EntityData[EntityData["Commerce_Inventory_Quantities"] = 127] = "Commerce_Inventory_Quantities";
|
283
|
-
EntityData[EntityData["Program_Feature_Interchange_Options"] = 128] = "Program_Feature_Interchange_Options";
|
284
|
-
EntityData[EntityData["Push_Notification"] = 129] = "Push_Notification";
|
285
|
-
EntityData[EntityData["Limited_Token"] = 130] = "Limited_Token";
|
286
|
-
EntityData[EntityData["Employee_Info"] = 131] = "Employee_Info";
|
287
|
-
EntityData[EntityData["Backend_Access_Controls"] = 132] = "Backend_Access_Controls";
|
288
|
-
EntityData[EntityData["Program_BIN_Multi_Currency_Configuration"] = 133] = "Program_BIN_Multi_Currency_Configuration";
|
289
|
-
EntityData[EntityData["Program_Multi_Currency_Configuration"] = 134] = "Program_Multi_Currency_Configuration";
|
290
|
-
EntityData[EntityData["Reseller_KPI"] = 135] = "Reseller_KPI";
|
291
|
-
EntityData[EntityData["Agent_KPI"] = 136] = "Agent_KPI";
|
292
|
-
EntityData[EntityData["Token_Status"] = 137] = "Token_Status";
|
293
|
-
EntityData[EntityData["Account_Trust_Level"] = 138] = "Account_Trust_Level";
|
294
|
-
EntityData[EntityData["Program_Feature_Backend_Admin_Options"] = 139] = "Program_Feature_Backend_Admin_Options";
|
295
|
-
EntityData[EntityData["Pending_Transaction"] = 140] = "Pending_Transaction";
|
296
|
-
EntityData[EntityData["User_Fulfilment"] = 142] = "User_Fulfilment";
|
297
|
-
EntityData[EntityData["Amazon_Configuration"] = 143] = "Amazon_Configuration";
|
298
|
-
EntityData[EntityData["ID"] = 144] = "ID";
|
299
|
-
EntityData[EntityData["Number"] = 145] = "Number";
|
300
|
-
EntityData[EntityData["Program_BIN_Feature_Card_Option"] = 146] = "Program_BIN_Feature_Card_Option";
|
301
|
-
EntityData[EntityData["Fulfilment_Batch"] = 147] = "Fulfilment_Batch";
|
302
|
-
EntityData[EntityData["User_Commerce_Configuration"] = 148] = "User_Commerce_Configuration";
|
303
|
-
EntityData[EntityData["Location"] = 149] = "Location";
|
304
|
-
EntityData[EntityData["Order_Report"] = 150] = "Order_Report";
|
305
|
-
EntityData[EntityData["Transaction_Report"] = 151] = "Transaction_Report";
|
306
|
-
EntityData[EntityData["One_Time_Password"] = 152] = "One_Time_Password";
|
307
|
-
EntityData[EntityData["System_Health"] = 153] = "System_Health";
|
308
|
-
EntityData[EntityData["Order_Store_Movement"] = 154] = "Order_Store_Movement";
|
309
|
-
EntityData[EntityData["User_Catalog_Preferences"] = 155] = "User_Catalog_Preferences";
|
310
|
-
EntityData[EntityData["G2A_Configuration"] = 156] = "G2A_Configuration";
|
311
|
-
EntityData[EntityData["Print_Count"] = 157] = "Print_Count";
|
312
|
-
EntityData[EntityData["Currency_Pairs"] = 158] = "Currency_Pairs";
|
313
|
-
EntityData[EntityData["Audit_Account_Balance"] = 159] = "Audit_Account_Balance";
|
314
|
-
EntityData[EntityData["Program_Currency_Conversion"] = 160] = "Program_Currency_Conversion";
|
315
|
-
EntityData[EntityData["Usage_Status"] = 161] = "Usage_Status";
|
316
|
-
EntityData[EntityData["Latest_Order_Item"] = 162] = "Latest_Order_Item";
|
317
|
-
EntityData[EntityData["Program_Feature_DDA_Options"] = 163] = "Program_Feature_DDA_Options";
|
318
|
-
EntityData[EntityData["POS_Configuration"] = 164] = "POS_Configuration";
|
319
|
-
EntityData[EntityData["Contactless_Count"] = 165] = "Contactless_Count";
|
320
|
-
EntityData[EntityData["Balance"] = 166] = "Balance";
|
321
|
-
EntityData[EntityData["RealTime_Status"] = 167] = "RealTime_Status";
|
322
|
-
EntityData[EntityData["Export_Database"] = 168] = "Export_Database";
|
323
|
-
EntityData[EntityData["Message"] = 169] = "Message";
|
324
|
-
EntityData[EntityData["PIN_Trials"] = 170] = "PIN_Trials";
|
325
|
-
EntityData[EntityData["Catalog"] = 171] = "Catalog";
|
326
|
-
EntityData[EntityData["Supplied_Card_Details"] = 172] = "Supplied_Card_Details";
|
327
|
-
EntityData[EntityData["New_PAN"] = 173] = "New_PAN";
|
328
|
-
EntityData[EntityData["Product_Template"] = 174] = "Product_Template";
|
329
|
-
EntityData[EntityData["Program_Feature_Ticket_Options"] = 175] = "Program_Feature_Ticket_Options";
|
330
|
-
EntityData[EntityData["Program_BIN_Feature_Deposit_And_Withdrawal_Setup"] = 176] = "Program_BIN_Feature_Deposit_And_Withdrawal_Setup";
|
331
|
-
EntityData[EntityData["Variant_Stock"] = 177] = "Variant_Stock";
|
332
|
-
EntityData[EntityData["External_Service_Request"] = 178] = "External_Service_Request";
|
333
|
-
EntityData[EntityData["Attachment_Status"] = 179] = "Attachment_Status";
|
334
|
-
EntityData[EntityData["Invoice_Configuration"] = 180] = "Invoice_Configuration";
|
335
|
-
EntityData[EntityData["Package_Mapping"] = 181] = "Package_Mapping";
|
336
|
-
EntityData[EntityData["Mada_Payment"] = 182] = "Mada_Payment";
|
337
|
-
EntityData[EntityData["EWallet_Trasfer"] = 183] = "EWallet_Trasfer";
|
338
|
-
EntityData[EntityData["Account_External_Balance"] = 184] = "Account_External_Balance";
|
339
|
-
EntityData[EntityData["PinCode_Print_Status"] = 185] = "PinCode_Print_Status";
|
340
|
-
EntityData[EntityData["Inner_Exception"] = 186] = "Inner_Exception";
|
341
|
-
EntityData[EntityData["Stack_Trace"] = 187] = "Stack_Trace";
|
342
|
-
EntityData[EntityData["Source"] = 188] = "Source";
|
343
|
-
EntityData[EntityData["Program_BIN_Feature_Tokenization_Option"] = 189] = "Program_BIN_Feature_Tokenization_Option";
|
344
|
-
EntityData[EntityData["Program_BIN_Feature_Payment_And_Orders_Options"] = 190] = "Program_BIN_Feature_Payment_And_Orders_Options";
|
345
|
-
EntityData[EntityData["Report_Problem"] = 191] = "Report_Problem";
|
346
|
-
EntityData[EntityData["Program_BIN_Feature_Credit_Limit"] = 192] = "Program_BIN_Feature_Credit_Limit";
|
347
|
-
EntityData[EntityData["Details"] = 193] = "Details";
|
348
|
-
EntityData[EntityData["Program_Feature_Sales_Signup_Setup"] = 194] = "Program_Feature_Sales_Signup_Setup";
|
349
|
-
EntityData[EntityData["Extra_Params"] = 195] = "Extra_Params";
|
350
|
-
EntityData[EntityData["Trigger_Mada_Recon"] = 196] = "Trigger_Mada_Recon";
|
351
|
-
EntityData[EntityData["Get_Last_Mada_Recon"] = 197] = "Get_Last_Mada_Recon";
|
352
|
-
EntityData[EntityData["Batch"] = 198] = "Batch";
|
353
|
-
EntityData[EntityData["Profile"] = 199] = "Profile";
|
354
|
-
EntityData[EntityData["Program_Feature_User_Invitation_Options"] = 200] = "Program_Feature_User_Invitation_Options";
|
355
|
-
EntityData[EntityData["Program_Feature_General_Options"] = 201] = "Program_Feature_General_Options";
|
356
|
-
EntityData[EntityData["Program_BIN_Feature_Renewal_Automatic_Fulfillment_Batch"] = 202] = "Program_BIN_Feature_Renewal_Automatic_Fulfillment_Batch";
|
357
|
-
EntityData[EntityData["Program_BIN_Feature_Replacement_Automatic_Fulfillment_Batch"] = 203] = "Program_BIN_Feature_Replacement_Automatic_Fulfillment_Batch";
|
358
|
-
EntityData[EntityData["User_Risk_Assessment"] = 204] = "User_Risk_Assessment";
|
359
|
-
EntityData[EntityData["Program_BIN_Feature_Mobile_Account_Options"] = 205] = "Program_BIN_Feature_Mobile_Account_Options";
|
360
|
-
EntityData[EntityData["Program_BIN_Feature_Mobile_Linked_Account_Options"] = 206] = "Program_BIN_Feature_Mobile_Linked_Account_Options";
|
361
|
-
EntityData[EntityData["Program_BIN_Feature_Monthly_FX_Statement"] = 207] = "Program_BIN_Feature_Monthly_FX_Statement";
|
362
|
-
EntityData[EntityData["Promotion_Data"] = 208] = "Promotion_Data";
|
363
|
-
EntityData[EntityData["Account_Tokenization_Completion"] = 209] = "Account_Tokenization_Completion";
|
364
|
-
EntityData[EntityData["Account_Negative_Balance"] = 210] = "Account_Negative_Balance";
|
365
|
-
EntityData[EntityData["E_Transfer_Customer"] = 211] = "E_Transfer_Customer";
|
366
|
-
EntityData[EntityData["Login_Attempt"] = 212] = "Login_Attempt";
|
367
|
-
EntityData[EntityData["User_Access_Control"] = 213] = "User_Access_Control";
|
368
|
-
EntityData[EntityData["Program_Feature_Blockchain_Options"] = 214] = "Program_Feature_Blockchain_Options";
|
369
|
-
})(EntityData || (exports.EntityData = EntityData = {}));
|
370
|
-
var ActivityType;
|
371
|
-
(function (ActivityType) {
|
372
|
-
ActivityType[ActivityType["None"] = 0] = "None";
|
373
|
-
ActivityType[ActivityType["Create"] = 1] = "Create";
|
374
|
-
ActivityType[ActivityType["Update"] = 2] = "Update";
|
375
|
-
ActivityType[ActivityType["Delete"] = 3] = "Delete";
|
376
|
-
ActivityType[ActivityType["Add"] = 4] = "Add";
|
377
|
-
ActivityType[ActivityType["Activate"] = 5] = "Activate";
|
378
|
-
ActivityType[ActivityType["Review"] = 6] = "Review";
|
379
|
-
ActivityType[ActivityType["Process"] = 7] = "Process";
|
380
|
-
ActivityType[ActivityType["Validate"] = 8] = "Validate";
|
381
|
-
ActivityType[ActivityType["Check_Online"] = 9] = "Check_Online";
|
382
|
-
ActivityType[ActivityType["Rule_Applied"] = 10] = "Rule_Applied";
|
383
|
-
ActivityType[ActivityType["Reverse"] = 11] = "Reverse";
|
384
|
-
ActivityType[ActivityType["Partial_Reverse"] = 12] = "Partial_Reverse";
|
385
|
-
ActivityType[ActivityType["Cancel"] = 13] = "Cancel";
|
386
|
-
ActivityType[ActivityType["Print"] = 14] = "Print";
|
387
|
-
ActivityType[ActivityType["Export"] = 15] = "Export";
|
388
|
-
ActivityType[ActivityType["Download"] = 16] = "Download";
|
389
|
-
ActivityType[ActivityType["Reserve"] = 17] = "Reserve";
|
390
|
-
ActivityType[ActivityType["Pending"] = 18] = "Pending";
|
391
|
-
ActivityType[ActivityType["Cleared"] = 19] = "Cleared";
|
392
|
-
ActivityType[ActivityType["Exclude"] = 20] = "Exclude";
|
393
|
-
ActivityType[ActivityType["Reset"] = 21] = "Reset";
|
394
|
-
ActivityType[ActivityType["Confirm"] = 22] = "Confirm";
|
395
|
-
ActivityType[ActivityType["Save"] = 23] = "Save";
|
396
|
-
ActivityType[ActivityType["Unlock"] = 24] = "Unlock";
|
397
|
-
ActivityType[ActivityType["Accept_Term"] = 25] = "Accept_Term";
|
398
|
-
ActivityType[ActivityType["Program_Copy_Add"] = 26] = "Program_Copy_Add";
|
399
|
-
ActivityType[ActivityType["Program_Copy_Update"] = 27] = "Program_Copy_Update";
|
400
|
-
ActivityType[ActivityType["View"] = 28] = "View";
|
401
|
-
ActivityType[ActivityType["Forget"] = 29] = "Forget";
|
402
|
-
ActivityType[ActivityType["Tracking"] = 30] = "Tracking";
|
403
|
-
ActivityType[ActivityType["Group_Process"] = 31] = "Group_Process";
|
404
|
-
ActivityType[ActivityType["Group_Reverse"] = 32] = "Group_Reverse";
|
405
|
-
ActivityType[ActivityType["Group_Cancel"] = 33] = "Group_Cancel";
|
406
|
-
ActivityType[ActivityType["Reverse_Program_Fee"] = 34] = "Reverse_Program_Fee";
|
407
|
-
ActivityType[ActivityType["Reverse_User_Fee"] = 35] = "Reverse_User_Fee";
|
408
|
-
ActivityType[ActivityType["Reverse_Sender_Program_Fee"] = 36] = "Reverse_Sender_Program_Fee";
|
409
|
-
ActivityType[ActivityType["Reverse_Receiver_Program_Fee"] = 37] = "Reverse_Receiver_Program_Fee";
|
410
|
-
ActivityType[ActivityType["Reverse_Sender_User_Fee"] = 38] = "Reverse_Sender_User_Fee";
|
411
|
-
ActivityType[ActivityType["Reverse_Receiver_User_Fee"] = 39] = "Reverse_Receiver_User_Fee";
|
412
|
-
ActivityType[ActivityType["Read"] = 40] = "Read";
|
413
|
-
ActivityType[ActivityType["Force_Process"] = 41] = "Force_Process";
|
414
|
-
ActivityType[ActivityType["Group_Delete"] = 42] = "Group_Delete";
|
415
|
-
ActivityType[ActivityType["Group_Validate"] = 43] = "Group_Validate";
|
416
|
-
ActivityType[ActivityType["Group_Force_Process"] = 44] = "Group_Force_Process";
|
417
|
-
})(ActivityType || (exports.ActivityType = ActivityType = {}));
|
418
|
-
var SecurityAuthenticationTypes;
|
419
|
-
(function (SecurityAuthenticationTypes) {
|
420
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Undefined"] = -1] = "Undefined";
|
421
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["None"] = 0] = "None";
|
422
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Password"] = 1] = "Password";
|
423
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["OAuth"] = 2] = "OAuth";
|
424
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["User_Security_Code"] = 3] = "User_Security_Code";
|
425
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Account_Security_Code"] = 4] = "Account_Security_Code";
|
426
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Security_Screening"] = 5] = "Security_Screening";
|
427
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["OTP_SMS"] = 6] = "OTP_SMS";
|
428
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["OTP_Email"] = 7] = "OTP_Email";
|
429
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Email_Link"] = 8] = "Email_Link";
|
430
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Email_Code"] = 9] = "Email_Code";
|
431
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["SMS_Code"] = 10] = "SMS_Code";
|
432
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Google_Authenticator"] = 11] = "Google_Authenticator";
|
433
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Touch_ID"] = 12] = "Touch_ID";
|
434
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Finger_Print"] = 13] = "Finger_Print";
|
435
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["One_Time_Token"] = 14] = "One_Time_Token";
|
436
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Expiry_Time_Token"] = 15] = "Expiry_Time_Token";
|
437
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Account_PIN_Code"] = 16] = "Account_PIN_Code";
|
438
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Account_Auth_Code"] = 17] = "Account_Auth_Code";
|
439
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Security_Question_1"] = 18] = "Security_Question_1";
|
440
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Security_Question_2"] = 19] = "Security_Question_2";
|
441
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["POS_User_PIN_Code"] = 20] = "POS_User_PIN_Code";
|
442
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Verified_Email"] = 21] = "Verified_Email";
|
443
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Verified_Mobile"] = 22] = "Verified_Mobile";
|
444
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Secondary_Email"] = 23] = "Secondary_Email";
|
445
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Identification_Number"] = 24] = "Identification_Number";
|
446
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Postal_Code"] = 25] = "Postal_Code";
|
447
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["DOB"] = 26] = "DOB";
|
448
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Device_Fingerprint"] = 27] = "Device_Fingerprint";
|
449
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Device_Unique_ID"] = 28] = "Device_Unique_ID";
|
450
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Username"] = 29] = "Username";
|
451
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Three_D_Secure_Code"] = 30] = "Three_D_Secure_Code";
|
452
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Program_Token"] = 31] = "Program_Token";
|
453
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["User_Token"] = 32] = "User_Token";
|
454
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["POS_Token"] = 33] = "POS_Token";
|
455
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Limited_Token"] = 34] = "Limited_Token";
|
456
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Message_Encryption_Key"] = 35] = "Message_Encryption_Key";
|
457
|
-
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Mada_Payment_Auth_Code"] = 36] = "Mada_Payment_Auth_Code";
|
458
|
-
})(SecurityAuthenticationTypes || (exports.SecurityAuthenticationTypes = SecurityAuthenticationTypes = {}));
|
459
|
-
var ServiceProvider;
|
460
|
-
(function (ServiceProvider) {
|
461
|
-
ServiceProvider[ServiceProvider["Undefined"] = -1] = "Undefined";
|
462
|
-
ServiceProvider[ServiceProvider["System"] = 0] = "System";
|
463
|
-
ServiceProvider[ServiceProvider["IdentityMind"] = 1] = "IdentityMind";
|
464
|
-
ServiceProvider[ServiceProvider["Maxmind"] = 2] = "Maxmind";
|
465
|
-
ServiceProvider[ServiceProvider["Lyons"] = 3] = "Lyons";
|
466
|
-
ServiceProvider[ServiceProvider["Stripe"] = 4] = "Stripe";
|
467
|
-
ServiceProvider[ServiceProvider["Strikeiron"] = 5] = "Strikeiron";
|
468
|
-
ServiceProvider[ServiceProvider["Equifax"] = 6] = "Equifax";
|
469
|
-
ServiceProvider[ServiceProvider["URU"] = 7] = "URU";
|
470
|
-
ServiceProvider[ServiceProvider["Mastercard"] = 8] = "Mastercard";
|
471
|
-
ServiceProvider[ServiceProvider["DowJones"] = 9] = "DowJones";
|
472
|
-
ServiceProvider[ServiceProvider["UniFonic"] = 10] = "UniFonic";
|
473
|
-
ServiceProvider[ServiceProvider["ClickaTell"] = 11] = "ClickaTell";
|
474
|
-
ServiceProvider[ServiceProvider["SMTPMail"] = 12] = "SMTPMail";
|
475
|
-
ServiceProvider[ServiceProvider["AppCenter"] = 13] = "AppCenter";
|
476
|
-
ServiceProvider[ServiceProvider["eFAWATEERcom"] = 16] = "eFAWATEERcom";
|
477
|
-
ServiceProvider[ServiceProvider["Fortnox"] = 17] = "Fortnox";
|
478
|
-
ServiceProvider[ServiceProvider["HyperPay"] = 18] = "HyperPay";
|
479
|
-
ServiceProvider[ServiceProvider["FourStop"] = 20] = "FourStop";
|
480
|
-
ServiceProvider[ServiceProvider["Qvitoo"] = 21] = "Qvitoo";
|
481
|
-
ServiceProvider[ServiceProvider["STC"] = 22] = "STC";
|
482
|
-
ServiceProvider[ServiceProvider["PaySafe"] = 23] = "PaySafe";
|
483
|
-
ServiceProvider[ServiceProvider["Ding"] = 24] = "Ding";
|
484
|
-
ServiceProvider[ServiceProvider["TransferTo"] = 25] = "TransferTo";
|
485
|
-
ServiceProvider[ServiceProvider["CashU"] = 26] = "CashU";
|
486
|
-
ServiceProvider[ServiceProvider["JCLottery"] = 27] = "JCLottery";
|
487
|
-
ServiceProvider[ServiceProvider["Banking_Circle"] = 28] = "Banking_Circle";
|
488
|
-
ServiceProvider[ServiceProvider["ExternalHost"] = 29] = "ExternalHost";
|
489
|
-
ServiceProvider[ServiceProvider["Service_Fee"] = 30] = "Service_Fee";
|
490
|
-
ServiceProvider[ServiceProvider["EPay"] = 31] = "EPay";
|
491
|
-
ServiceProvider[ServiceProvider["Firebase"] = 32] = "Firebase";
|
492
|
-
ServiceProvider[ServiceProvider["Mastercard_Currency_Rate"] = 33] = "Mastercard_Currency_Rate";
|
493
|
-
ServiceProvider[ServiceProvider["ECB_Currency_Rate"] = 34] = "ECB_Currency_Rate";
|
494
|
-
ServiceProvider[ServiceProvider["XE_Currency_Rate"] = 35] = "XE_Currency_Rate";
|
495
|
-
ServiceProvider[ServiceProvider["Azure_Notification_Hubs"] = 36] = "Azure_Notification_Hubs";
|
496
|
-
ServiceProvider[ServiceProvider["OpenPayd"] = 37] = "OpenPayd";
|
497
|
-
ServiceProvider[ServiceProvider["Webhook"] = 38] = "Webhook";
|
498
|
-
ServiceProvider[ServiceProvider["Google"] = 39] = "Google";
|
499
|
-
ServiceProvider[ServiceProvider["Amazon"] = 40] = "Amazon";
|
500
|
-
ServiceProvider[ServiceProvider["Twilio"] = 41] = "Twilio";
|
501
|
-
ServiceProvider[ServiceProvider["Peoples"] = 42] = "Peoples";
|
502
|
-
ServiceProvider[ServiceProvider["CurrencyCloud"] = 43] = "CurrencyCloud";
|
503
|
-
ServiceProvider[ServiceProvider["Fawry"] = 44] = "Fawry";
|
504
|
-
ServiceProvider[ServiceProvider["G2A"] = 45] = "G2A";
|
505
|
-
ServiceProvider[ServiceProvider["SNB"] = 46] = "SNB";
|
506
|
-
ServiceProvider[ServiceProvider["Hala"] = 47] = "Hala";
|
507
|
-
ServiceProvider[ServiceProvider["Google_Cloud_Realtime"] = 48] = "Google_Cloud_Realtime";
|
508
|
-
ServiceProvider[ServiceProvider["ANB"] = 49] = "ANB";
|
509
|
-
ServiceProvider[ServiceProvider["Binance"] = 50] = "Binance";
|
510
|
-
ServiceProvider[ServiceProvider["Coinify"] = 51] = "Coinify";
|
511
|
-
ServiceProvider[ServiceProvider["FSS"] = 52] = "FSS";
|
512
|
-
ServiceProvider[ServiceProvider["Zatca"] = 53] = "Zatca";
|
513
|
-
ServiceProvider[ServiceProvider["Mada"] = 54] = "Mada";
|
514
|
-
ServiceProvider[ServiceProvider["ShuftiPro"] = 55] = "ShuftiPro";
|
515
|
-
ServiceProvider[ServiceProvider["ComplyCube"] = 56] = "ComplyCube";
|
516
|
-
})(ServiceProvider || (exports.ServiceProvider = ServiceProvider = {}));
|
517
|
-
var ChainRequestType;
|
518
|
-
(function (ChainRequestType) {
|
519
|
-
ChainRequestType[ChainRequestType["Create_Trade"] = 0] = "Create_Trade";
|
520
|
-
ChainRequestType[ChainRequestType["Process_Trade"] = 1] = "Process_Trade";
|
521
|
-
})(ChainRequestType || (exports.ChainRequestType = ChainRequestType = {}));
|
522
|
-
var Gender;
|
523
|
-
(function (Gender) {
|
524
|
-
Gender[Gender["N_A"] = 0] = "N_A";
|
525
|
-
Gender[Gender["Male"] = 1] = "Male";
|
526
|
-
Gender[Gender["Female"] = 2] = "Female";
|
527
|
-
})(Gender || (exports.Gender = Gender = {}));
|
528
|
-
var AddressType;
|
529
|
-
(function (AddressType) {
|
530
|
-
AddressType[AddressType["Home"] = 0] = "Home";
|
531
|
-
AddressType[AddressType["Work"] = 1] = "Work";
|
532
|
-
AddressType[AddressType["Billing"] = 2] = "Billing";
|
533
|
-
AddressType[AddressType["Shipping"] = 3] = "Shipping";
|
534
|
-
})(AddressType || (exports.AddressType = AddressType = {}));
|
535
|
-
var IdentificationTypes;
|
536
|
-
(function (IdentificationTypes) {
|
537
|
-
IdentificationTypes[IdentificationTypes["Passport"] = 0] = "Passport";
|
538
|
-
IdentificationTypes[IdentificationTypes["Drivers_License"] = 1] = "Drivers_License";
|
539
|
-
IdentificationTypes[IdentificationTypes["National_ID"] = 2] = "National_ID";
|
540
|
-
IdentificationTypes[IdentificationTypes["SSN"] = 3] = "SSN";
|
541
|
-
IdentificationTypes[IdentificationTypes["SIN"] = 4] = "SIN";
|
542
|
-
IdentificationTypes[IdentificationTypes["Credit_Bureau"] = 6] = "Credit_Bureau";
|
543
|
-
IdentificationTypes[IdentificationTypes["Electronic_Verification"] = 7] = "Electronic_Verification";
|
544
|
-
})(IdentificationTypes || (exports.IdentificationTypes = IdentificationTypes = {}));
|
545
|
-
var DocumentStatus;
|
546
|
-
(function (DocumentStatus) {
|
547
|
-
DocumentStatus[DocumentStatus["None"] = 0] = "None";
|
548
|
-
DocumentStatus[DocumentStatus["Pending"] = 1] = "Pending";
|
549
|
-
DocumentStatus[DocumentStatus["Processed"] = 2] = "Processed";
|
550
|
-
DocumentStatus[DocumentStatus["Rejected"] = 3] = "Rejected";
|
551
|
-
DocumentStatus[DocumentStatus["Canceled"] = 4] = "Canceled";
|
552
|
-
DocumentStatus[DocumentStatus["Pending_Validation"] = 5] = "Pending_Validation";
|
553
|
-
DocumentStatus[DocumentStatus["Not_Acceptable"] = 6] = "Not_Acceptable";
|
554
|
-
DocumentStatus[DocumentStatus["Pending_Review"] = 7] = "Pending_Review";
|
555
|
-
})(DocumentStatus || (exports.DocumentStatus = DocumentStatus = {}));
|
556
|
-
var EntityVerificationStatus;
|
557
|
-
(function (EntityVerificationStatus) {
|
558
|
-
EntityVerificationStatus[EntityVerificationStatus["Undefined"] = -1] = "Undefined";
|
559
|
-
EntityVerificationStatus[EntityVerificationStatus["Not_Verified"] = 0] = "Not_Verified";
|
560
|
-
EntityVerificationStatus[EntityVerificationStatus["Verified"] = 1] = "Verified";
|
561
|
-
EntityVerificationStatus[EntityVerificationStatus["Pending"] = 2] = "Pending";
|
562
|
-
EntityVerificationStatus[EntityVerificationStatus["Failed"] = 3] = "Failed";
|
563
|
-
})(EntityVerificationStatus || (exports.EntityVerificationStatus = EntityVerificationStatus = {}));
|
564
|
-
var TrustLimits;
|
565
|
-
(function (TrustLimits) {
|
566
|
-
TrustLimits["Limited"] = "Limited";
|
567
|
-
TrustLimits["Confirmed"] = "Confirmed";
|
568
|
-
TrustLimits["Trusted"] = "Trusted";
|
569
|
-
TrustLimits["Unverified"] = "Unverified";
|
570
|
-
})(TrustLimits || (exports.TrustLimits = TrustLimits = {}));
|
571
|
-
var SecurityQuestion1;
|
572
|
-
(function (SecurityQuestion1) {
|
573
|
-
SecurityQuestion1[SecurityQuestion1["Mothers_Maiden_Name"] = 1] = "Mothers_Maiden_Name";
|
574
|
-
SecurityQuestion1[SecurityQuestion1["Last_4_Characters_Of_Drivers_License"] = 2] = "Last_4_Characters_Of_Drivers_License";
|
575
|
-
SecurityQuestion1[SecurityQuestion1["City_Of_Birth"] = 3] = "City_Of_Birth";
|
576
|
-
SecurityQuestion1[SecurityQuestion1["Fathers_City_Of_Birth"] = 4] = "Fathers_City_Of_Birth";
|
577
|
-
SecurityQuestion1[SecurityQuestion1["Mothers_City_Of_Birth"] = 5] = "Mothers_City_Of_Birth";
|
578
|
-
SecurityQuestion1[SecurityQuestion1["Who_Is_My_Favourite_Author"] = 6] = "Who_Is_My_Favourite_Author";
|
579
|
-
SecurityQuestion1[SecurityQuestion1["What_Is_My_Favourite_Movie"] = 7] = "What_Is_My_Favourite_Movie";
|
580
|
-
SecurityQuestion1[SecurityQuestion1["Who_Was_My_Best_Friend_On_The_First_Day_Of_School"] = 8] = "Who_Was_My_Best_Friend_On_The_First_Day_Of_School";
|
581
|
-
SecurityQuestion1[SecurityQuestion1["What_Was_The_Name_Of_My_Favourite_High_School_Teacher"] = 9] = "What_Was_The_Name_Of_My_Favourite_High_School_Teacher";
|
582
|
-
SecurityQuestion1[SecurityQuestion1["What_Is_My_Hobby"] = 10] = "What_Is_My_Hobby";
|
583
|
-
SecurityQuestion1[SecurityQuestion1["My_Favourite_Food"] = 11] = "My_Favourite_Food";
|
584
|
-
SecurityQuestion1[SecurityQuestion1["My_Favourite_Book"] = 12] = "My_Favourite_Book";
|
585
|
-
SecurityQuestion1[SecurityQuestion1["My_Favourite_Restaurant"] = 13] = "My_Favourite_Restaurant";
|
586
|
-
})(SecurityQuestion1 || (exports.SecurityQuestion1 = SecurityQuestion1 = {}));
|
587
|
-
var SecurityQuestion2;
|
588
|
-
(function (SecurityQuestion2) {
|
589
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Candy"] = 1] = "What_Is_My_Favourite_Candy";
|
590
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Song"] = 2] = "What_Is_My_Favourite_Song";
|
591
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Band"] = 3] = "What_Is_My_Favourite_Band";
|
592
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Dessert"] = 4] = "What_Is_My_Favourite_Dessert";
|
593
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_TV_Show"] = 5] = "What_Is_My_Favourite_TV_Show";
|
594
|
-
SecurityQuestion2[SecurityQuestion2["What_Was_My_First_Pets_Name"] = 6] = "What_Was_My_First_Pets_Name";
|
595
|
-
SecurityQuestion2[SecurityQuestion2["Who_Is_My_Favourite_Teacher"] = 7] = "Who_Is_My_Favourite_Teacher";
|
596
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Colour"] = 8] = "What_Is_My_Favourite_Colour";
|
597
|
-
SecurityQuestion2[SecurityQuestion2["Where_Do_I_Want_To_Retire"] = 9] = "Where_Do_I_Want_To_Retire";
|
598
|
-
SecurityQuestion2[SecurityQuestion2["Where_Was_My_First_Job"] = 10] = "Where_Was_My_First_Job";
|
599
|
-
SecurityQuestion2[SecurityQuestion2["What_Sport_Am_I_Best_At"] = 11] = "What_Sport_Am_I_Best_At";
|
600
|
-
SecurityQuestion2[SecurityQuestion2["What_Was_My_Grandmothers_Given_Name"] = 12] = "What_Was_My_Grandmothers_Given_Name";
|
601
|
-
SecurityQuestion2[SecurityQuestion2["Who_Was_The_Best_Man_At_My_Wedding"] = 13] = "Who_Was_The_Best_Man_At_My_Wedding";
|
602
|
-
SecurityQuestion2[SecurityQuestion2["Who_Was_The_Maid_Of_Honor_At_My_Wedding"] = 14] = "Who_Was_The_Maid_Of_Honor_At_My_Wedding";
|
603
|
-
SecurityQuestion2[SecurityQuestion2["Name_Of_City_Where_My_Father_Was_Born"] = 15] = "Name_Of_City_Where_My_Father_Was_Born";
|
604
|
-
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Vacation_Spot"] = 16] = "What_Is_My_Favourite_Vacation_Spot";
|
605
|
-
SecurityQuestion2[SecurityQuestion2["What_Was_My_Nickname_In_Grade_School"] = 17] = "What_Was_My_Nickname_In_Grade_School";
|
606
|
-
SecurityQuestion2[SecurityQuestion2["What_Was_The_Make_Of_My_First_Car"] = 18] = "What_Was_The_Make_Of_My_First_Car";
|
607
|
-
})(SecurityQuestion2 || (exports.SecurityQuestion2 = SecurityQuestion2 = {}));
|
608
|
-
var BankAccountTypes;
|
609
|
-
(function (BankAccountTypes) {
|
610
|
-
BankAccountTypes[BankAccountTypes["Undefined"] = -1] = "Undefined";
|
611
|
-
BankAccountTypes[BankAccountTypes["Personal_Savings"] = 1] = "Personal_Savings";
|
612
|
-
BankAccountTypes[BankAccountTypes["Personal_Checking"] = 2] = "Personal_Checking";
|
613
|
-
BankAccountTypes[BankAccountTypes["Corporate"] = 3] = "Corporate";
|
614
|
-
BankAccountTypes[BankAccountTypes["Direct_Deposit"] = 4] = "Direct_Deposit";
|
615
|
-
})(BankAccountTypes || (exports.BankAccountTypes = BankAccountTypes = {}));
|
616
|
-
var BankBeneficiaryType;
|
617
|
-
(function (BankBeneficiaryType) {
|
618
|
-
BankBeneficiaryType[BankBeneficiaryType["My_Account"] = 1] = "My_Account";
|
619
|
-
BankBeneficiaryType[BankBeneficiaryType["Beneficiary_Account"] = 2] = "Beneficiary_Account";
|
620
|
-
})(BankBeneficiaryType || (exports.BankBeneficiaryType = BankBeneficiaryType = {}));
|
621
|
-
var OperationStatus;
|
622
|
-
(function (OperationStatus) {
|
623
|
-
OperationStatus[OperationStatus["Undefined"] = -1] = "Undefined";
|
624
|
-
OperationStatus[OperationStatus["Pending"] = 0] = "Pending";
|
625
|
-
OperationStatus[OperationStatus["In_Progress"] = 1] = "In_Progress";
|
626
|
-
OperationStatus[OperationStatus["Completed"] = 2] = "Completed";
|
627
|
-
OperationStatus[OperationStatus["Error_Occured"] = 3] = "Error_Occured";
|
628
|
-
})(OperationStatus || (exports.OperationStatus = OperationStatus = {}));
|
629
|
-
var EntityStatus;
|
630
|
-
(function (EntityStatus) {
|
631
|
-
EntityStatus[EntityStatus["Undefined"] = -1] = "Undefined";
|
632
|
-
EntityStatus[EntityStatus["Active"] = 1] = "Active";
|
633
|
-
EntityStatus[EntityStatus["Suspended"] = 2] = "Suspended";
|
634
|
-
EntityStatus[EntityStatus["Not_Active"] = 3] = "Not_Active";
|
635
|
-
EntityStatus[EntityStatus["Lost"] = 4] = "Lost";
|
636
|
-
EntityStatus[EntityStatus["Stolen"] = 5] = "Stolen";
|
637
|
-
EntityStatus[EntityStatus["Closed"] = 6] = "Closed";
|
638
|
-
EntityStatus[EntityStatus["Prohibit_Use"] = 7] = "Prohibit_Use";
|
639
|
-
EntityStatus[EntityStatus["Expired"] = 8] = "Expired";
|
640
|
-
EntityStatus[EntityStatus["Blocked"] = 9] = "Blocked";
|
641
|
-
EntityStatus[EntityStatus["Suspended_By_User"] = 10] = "Suspended_By_User";
|
642
|
-
EntityStatus[EntityStatus["Suspended_By_System"] = 11] = "Suspended_By_System";
|
643
|
-
EntityStatus[EntityStatus["Deactivated_By_User"] = 12] = "Deactivated_By_User";
|
644
|
-
EntityStatus[EntityStatus["Suspected_Fraud"] = 13] = "Suspected_Fraud";
|
645
|
-
EntityStatus[EntityStatus["Deleted"] = 14] = "Deleted";
|
646
|
-
EntityStatus[EntityStatus["Pending_Activation"] = 15] = "Pending_Activation";
|
647
|
-
EntityStatus[EntityStatus["Validation_Suspended"] = 16] = "Validation_Suspended";
|
648
|
-
EntityStatus[EntityStatus["Pending_Validation"] = 17] = "Pending_Validation";
|
649
|
-
EntityStatus[EntityStatus["Pending_Deactivation_By_User"] = 18] = "Pending_Deactivation_By_User";
|
650
|
-
EntityStatus[EntityStatus["Pending_Password_Confirmation"] = 19] = "Pending_Password_Confirmation";
|
651
|
-
EntityStatus[EntityStatus["Pending_User_Action"] = 20] = "Pending_User_Action";
|
652
|
-
})(EntityStatus || (exports.EntityStatus = EntityStatus = {}));
|
653
|
-
var TransactionRequestStatus;
|
654
|
-
(function (TransactionRequestStatus) {
|
655
|
-
TransactionRequestStatus[TransactionRequestStatus["Undefined"] = 0] = "Undefined";
|
656
|
-
TransactionRequestStatus[TransactionRequestStatus["Pending"] = 1] = "Pending";
|
657
|
-
TransactionRequestStatus[TransactionRequestStatus["Processed"] = 2] = "Processed";
|
658
|
-
TransactionRequestStatus[TransactionRequestStatus["Cleared"] = 3] = "Cleared";
|
659
|
-
TransactionRequestStatus[TransactionRequestStatus["Canceled"] = 4] = "Canceled";
|
660
|
-
TransactionRequestStatus[TransactionRequestStatus["Reversed"] = 5] = "Reversed";
|
661
|
-
TransactionRequestStatus[TransactionRequestStatus["Failed"] = 6] = "Failed";
|
662
|
-
TransactionRequestStatus[TransactionRequestStatus["Blocked"] = 7] = "Blocked";
|
663
|
-
TransactionRequestStatus[TransactionRequestStatus["Declined"] = 8] = "Declined";
|
664
|
-
TransactionRequestStatus[TransactionRequestStatus["Network_Canceled"] = 9] = "Network_Canceled";
|
665
|
-
TransactionRequestStatus[TransactionRequestStatus["Pending_Processing"] = 10] = "Pending_Processing";
|
666
|
-
TransactionRequestStatus[TransactionRequestStatus["Pending_Reversal"] = 11] = "Pending_Reversal";
|
667
|
-
TransactionRequestStatus[TransactionRequestStatus["Pending_Cancellation"] = 12] = "Pending_Cancellation";
|
668
|
-
TransactionRequestStatus[TransactionRequestStatus["Manual_Review"] = 13] = "Manual_Review";
|
669
|
-
TransactionRequestStatus[TransactionRequestStatus["Critical"] = 14] = "Critical";
|
670
|
-
TransactionRequestStatus[TransactionRequestStatus["Problem"] = 15] = "Problem";
|
671
|
-
})(TransactionRequestStatus || (exports.TransactionRequestStatus = TransactionRequestStatus = {}));
|
672
|
-
var AuthorizationOperationRequestType;
|
673
|
-
(function (AuthorizationOperationRequestType) {
|
674
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["User_Creation"] = 1] = "User_Creation";
|
675
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Currency"] = 2] = "Create_Currency";
|
676
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Loading_Card_Details"] = 3] = "Add_Loading_Card_Details";
|
677
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Linked_Bank_Account"] = 4] = "Add_Linked_Bank_Account";
|
678
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_ID_Details"] = 5] = "Add_ID_Details";
|
679
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Address"] = 6] = "Create_Address";
|
680
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Document"] = 7] = "Create_Document";
|
681
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Group"] = 8] = "Create_Group";
|
682
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Relationship"] = 9] = "Create_Relationship";
|
683
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Device"] = 10] = "Create_Device";
|
684
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Custom_Field_Data"] = 11] = "Add_Custom_Field_Data";
|
685
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Ticket"] = 12] = "Add_Ticket";
|
686
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Picture"] = 13] = "Create_Picture";
|
687
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_User_Location"] = 14] = "Add_User_Location";
|
688
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Social_Media"] = 15] = "Create_Social_Media";
|
689
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User"] = 16] = "Update_User";
|
690
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Loading_Card_Details"] = 17] = "Edit_Loading_Card_Details";
|
691
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Linked_Bank_Account"] = 18] = "Edit_Linked_Bank_Account";
|
692
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_ID_Details"] = 19] = "Edit_ID_Details";
|
693
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Personal_Info"] = 20] = "Edit_Personal_Info";
|
694
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Security"] = 21] = "Update_Security";
|
695
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Preferences"] = 22] = "Edit_Preferences";
|
696
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Group"] = 23] = "Update_Group";
|
697
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Relationship"] = 24] = "Update_Relationship";
|
698
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Device"] = 25] = "Update_Device";
|
699
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Custom_Field_Data"] = 26] = "Edit_Custom_Field_Data";
|
700
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Ticket"] = 27] = "Update_Ticket";
|
701
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Picture"] = 28] = "Update_Picture";
|
702
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_User_Location"] = 29] = "Edit_User_Location";
|
703
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Social_Media"] = 30] = "Update_Social_Media";
|
704
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_User"] = 31] = "Delete_User";
|
705
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Address"] = 32] = "Delete_Address";
|
706
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Currency"] = 33] = "Delete_Currency";
|
707
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Phone_Number"] = 34] = "Delete_Phone_Number";
|
708
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Email_Address"] = 35] = "Delete_Email_Address";
|
709
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Loading_Card_Details"] = 36] = "Delete_Loading_Card_Details";
|
710
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Linked_Bank_Account"] = 37] = "Delete_Linked_Bank_Account";
|
711
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_ID_Details"] = 38] = "Delete_ID_Details";
|
712
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Group"] = 39] = "Delete_Group";
|
713
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Relationship"] = 40] = "Delete_Relationship";
|
714
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Device"] = 41] = "Delete_Device";
|
715
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Custom_Field_Data"] = 42] = "Delete_Custom_Field_Data";
|
716
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Ticket"] = 43] = "Delete_Ticket";
|
717
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Picture"] = 44] = "Delete_Picture";
|
718
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_User_Location"] = 45] = "Delete_User_Location";
|
719
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Social_Media"] = 46] = "Delete_Social_Media";
|
720
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Reset_Security_Info"] = 47] = "Reset_Security_Info";
|
721
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Verify_Security_Data"] = 48] = "Verify_Security_Data";
|
722
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Confirm_Security_Data"] = 49] = "Confirm_Security_Data";
|
723
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Validate_Security_Data"] = 50] = "Validate_Security_Data";
|
724
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Account_Creation"] = 51] = "Account_Creation";
|
725
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Address"] = 52] = "Edit_Address";
|
726
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Credit_Limit"] = 54] = "Edit_Credit_Limit";
|
727
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Credit_Limit_Assignment"] = 55] = "Credit_Limit_Assignment";
|
728
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Account_Activation"] = 56] = "Account_Activation";
|
729
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Phone_Number"] = 57] = "Add_Phone_Number";
|
730
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Phone_Number"] = 58] = "Edit_Phone_Number";
|
731
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Email_Address"] = 59] = "Add_Email_Address";
|
732
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Email_Address"] = 60] = "Edit_Email_Address";
|
733
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Credit_Funds_To_Settlement_Account"] = 61] = "Credit_Funds_To_Settlement_Account";
|
734
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Debit_Funds_From_Settlement_Account"] = 62] = "Debit_Funds_From_Settlement_Account";
|
735
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Credit_Funds"] = 63] = "Credit_Funds";
|
736
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Debit_Funds"] = 64] = "Debit_Funds";
|
737
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Transfer_Funds"] = 65] = "Transfer_Funds";
|
738
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Transfer_Funds_to_Settlement_Account"] = 66] = "Transfer_Funds_to_Settlement_Account";
|
739
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Trust_Level_and_Status"] = 67] = "Edit_Trust_Level_and_Status";
|
740
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Account_Options"] = 68] = "Update_Account_Options";
|
741
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Usage_Status"] = 69] = "Update_Usage_Status";
|
742
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Account"] = 70] = "Update_Account";
|
743
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_Password"] = 71] = "Update_User_Password";
|
744
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_Security_Code"] = 72] = "Update_User_Security_Code";
|
745
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_Security_Question"] = 73] = "Update_User_Security_Question";
|
746
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_2FA_Settings"] = 74] = "Update_User_2FA_Settings";
|
747
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Authentication_Delete"] = 75] = "Authentication_Delete";
|
748
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Device_Verification_Status"] = 76] = "Update_Device_Verification_Status";
|
749
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Crypto_Address"] = 77] = "Add_Crypto_Address";
|
750
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Crypto_Address"] = 78] = "Delete_Crypto_Address";
|
751
|
-
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Crypto_Address"] = 79] = "Edit_Crypto_Address";
|
752
|
-
})(AuthorizationOperationRequestType || (exports.AuthorizationOperationRequestType = AuthorizationOperationRequestType = {}));
|
753
|
-
var SettlementTransactionType;
|
754
|
-
(function (SettlementTransactionType) {
|
755
|
-
SettlementTransactionType[SettlementTransactionType["Debit"] = 0] = "Debit";
|
756
|
-
SettlementTransactionType[SettlementTransactionType["Credit"] = 1] = "Credit";
|
757
|
-
})(SettlementTransactionType || (exports.SettlementTransactionType = SettlementTransactionType = {}));
|
758
|
-
var TransactionType;
|
759
|
-
(function (TransactionType) {
|
760
|
-
TransactionType[TransactionType["Undefined"] = -1] = "Undefined";
|
761
|
-
// Interchange Transactions
|
762
|
-
TransactionType[TransactionType["Interchange_Cash_Withdrawal"] = 46] = "Interchange_Cash_Withdrawal";
|
763
|
-
TransactionType[TransactionType["Interchange_Cash_Withdrawal_Fee"] = 47] = "Interchange_Cash_Withdrawal_Fee";
|
764
|
-
TransactionType[TransactionType["Interchange_Cash_Withdrawal_ATM"] = 3] = "Interchange_Cash_Withdrawal_ATM";
|
765
|
-
TransactionType[TransactionType["Interchange_Cash_Withdrawal_ATM_Fee"] = 10] = "Interchange_Cash_Withdrawal_ATM_Fee";
|
766
|
-
TransactionType[TransactionType["Interchange_Purchase"] = 48] = "Interchange_Purchase";
|
767
|
-
TransactionType[TransactionType["Interchange_Purchase_Fee"] = 49] = "Interchange_Purchase_Fee";
|
768
|
-
TransactionType[TransactionType["Interchange_Purchase_POS"] = 4] = "Interchange_Purchase_POS";
|
769
|
-
TransactionType[TransactionType["Interchange_Purchase_POS_Fee"] = 9] = "Interchange_Purchase_POS_Fee";
|
770
|
-
TransactionType[TransactionType["Interchange_Purchase_Credit_Adjustment"] = 26] = "Interchange_Purchase_Credit_Adjustment";
|
771
|
-
TransactionType[TransactionType["Interchange_Purchase_Credit_Adjustment_Fee"] = 27] = "Interchange_Purchase_Credit_Adjustment_Fee";
|
772
|
-
TransactionType[TransactionType["Interchange_Purchase_Return"] = 30] = "Interchange_Purchase_Return";
|
773
|
-
TransactionType[TransactionType["Interchange_Purchase_Return_Fee"] = 31] = "Interchange_Purchase_Return_Fee";
|
774
|
-
TransactionType[TransactionType["Interchange_Purchase_Cashback"] = 142] = "Interchange_Purchase_Cashback";
|
775
|
-
TransactionType[TransactionType["Interchange_Purchase_Cashback_Fee"] = 143] = "Interchange_Purchase_Cashback_Fee";
|
776
|
-
TransactionType[TransactionType["Interchange_Purchase_Internet"] = 38] = "Interchange_Purchase_Internet";
|
777
|
-
TransactionType[TransactionType["Interchange_Purchase_Internet_Fee"] = 39] = "Interchange_Purchase_Internet_Fee";
|
778
|
-
TransactionType[TransactionType["Interchange_Cash_Disbursement"] = 150] = "Interchange_Cash_Disbursement";
|
779
|
-
TransactionType[TransactionType["Interchange_Cash_Disbursement_Fee"] = 151] = "Interchange_Cash_Disbursement_Fee";
|
780
|
-
TransactionType[TransactionType["Interchange_Merchant_Payment"] = 200] = "Interchange_Merchant_Payment";
|
781
|
-
TransactionType[TransactionType["Interchange_Merchant_Payment_Fee"] = 201] = "Interchange_Merchant_Payment_Fee";
|
782
|
-
TransactionType[TransactionType["Interchange_Charge_Back"] = 202] = "Interchange_Charge_Back";
|
783
|
-
TransactionType[TransactionType["Interchange_Charge_Back_Fee"] = 203] = "Interchange_Charge_Back_Fee";
|
784
|
-
TransactionType[TransactionType["Interchange_Payment"] = 212] = "Interchange_Payment";
|
785
|
-
TransactionType[TransactionType["Interchange_Payment_Fee"] = 213] = "Interchange_Payment_Fee";
|
786
|
-
TransactionType[TransactionType["Interchange_Balance_Inquiry"] = 216] = "Interchange_Balance_Inquiry";
|
787
|
-
TransactionType[TransactionType["Interchange_Balance_Inquiry_Fee"] = 217] = "Interchange_Balance_Inquiry_Fee";
|
788
|
-
// System Transactions
|
789
|
-
TransactionType[TransactionType["System_Deposit_Merchant"] = 32] = "System_Deposit_Merchant";
|
790
|
-
TransactionType[TransactionType["System_Deposit_Merchant_Fee"] = 33] = "System_Deposit_Merchant_Fee";
|
791
|
-
TransactionType[TransactionType["System_Withdrawal_Merchant"] = 34] = "System_Withdrawal_Merchant";
|
792
|
-
TransactionType[TransactionType["System_Withdrawal_Merchant_Fee"] = 35] = "System_Withdrawal_Merchant_Fee";
|
793
|
-
TransactionType[TransactionType["System_Transaction_Reversal"] = 13] = "System_Transaction_Reversal";
|
794
|
-
TransactionType[TransactionType["System_Bank_Account_Load"] = 14] = "System_Bank_Account_Load";
|
795
|
-
TransactionType[TransactionType["System_Bank_Account_Load_Fee"] = 15] = "System_Bank_Account_Load_Fee";
|
796
|
-
TransactionType[TransactionType["System_Bank_Account_Withdrawal"] = 16] = "System_Bank_Account_Withdrawal";
|
797
|
-
TransactionType[TransactionType["System_Bank_Account_Withdrawal_Fee"] = 17] = "System_Bank_Account_Withdrawal_Fee";
|
798
|
-
TransactionType[TransactionType["System_Wire_Load"] = 18] = "System_Wire_Load";
|
799
|
-
TransactionType[TransactionType["System_Wire_Load_Fee"] = 19] = "System_Wire_Load_Fee";
|
800
|
-
TransactionType[TransactionType["System_Wire_Withdrawal"] = 20] = "System_Wire_Withdrawal";
|
801
|
-
TransactionType[TransactionType["System_Wire_Withdrawal_Fee"] = 21] = "System_Wire_Withdrawal_Fee";
|
802
|
-
TransactionType[TransactionType["System_Check_Load"] = 22] = "System_Check_Load";
|
803
|
-
TransactionType[TransactionType["System_Check_Load_Fee"] = 23] = "System_Check_Load_Fee";
|
804
|
-
TransactionType[TransactionType["System_Check_Withdrawal"] = 24] = "System_Check_Withdrawal";
|
805
|
-
TransactionType[TransactionType["System_Check_Withdrawal_Fee"] = 25] = "System_Check_Withdrawal_Fee";
|
806
|
-
TransactionType[TransactionType["System_Manual_Load"] = 84] = "System_Manual_Load";
|
807
|
-
TransactionType[TransactionType["System_Manual_Load_Fee"] = 85] = "System_Manual_Load_Fee";
|
808
|
-
TransactionType[TransactionType["System_Manual_Withdrawal"] = 86] = "System_Manual_Withdrawal";
|
809
|
-
TransactionType[TransactionType["System_Manual_Withdrawal_Fee"] = 87] = "System_Manual_Withdrawal_Fee";
|
810
|
-
TransactionType[TransactionType["System_Payment_Received"] = 88] = "System_Payment_Received";
|
811
|
-
TransactionType[TransactionType["System_Payment_Received_Fee"] = 89] = "System_Payment_Received_Fee";
|
812
|
-
TransactionType[TransactionType["System_Generic_Transfer_Send"] = 220] = "System_Generic_Transfer_Send";
|
813
|
-
TransactionType[TransactionType["System_Generic_Transfer_Send_Fee"] = 221] = "System_Generic_Transfer_Send_Fee";
|
814
|
-
TransactionType[TransactionType["System_Generic_Transfer_Receive"] = 222] = "System_Generic_Transfer_Receive";
|
815
|
-
TransactionType[TransactionType["System_Generic_Transfer_Receive_Fee"] = 223] = "System_Generic_Transfer_Receive_Fee";
|
816
|
-
TransactionType[TransactionType["System_Refund"] = 224] = "System_Refund";
|
817
|
-
TransactionType[TransactionType["System_Refund_Fee"] = 225] = "System_Refund_Fee";
|
818
|
-
TransactionType[TransactionType["System_Sales_Tax"] = 226] = "System_Sales_Tax";
|
819
|
-
TransactionType[TransactionType["System_Sales_Tax_Fee"] = 227] = "System_Sales_Tax_Fee";
|
820
|
-
TransactionType[TransactionType["System_Limited_Debit"] = 228] = "System_Limited_Debit";
|
821
|
-
TransactionType[TransactionType["System_Limited_Debit_Fee"] = 229] = "System_Limited_Debit_Fee";
|
822
|
-
TransactionType[TransactionType["System_Negative_Balance_Load"] = 232] = "System_Negative_Balance_Load";
|
823
|
-
TransactionType[TransactionType["System_Negative_Balance_Load_Fee"] = 233] = "System_Negative_Balance_Load_Fee";
|
824
|
-
TransactionType[TransactionType["System_General_Debit"] = 136] = "System_General_Debit";
|
825
|
-
TransactionType[TransactionType["System_General_Debit_Fee"] = 137] = "System_General_Debit_Fee";
|
826
|
-
TransactionType[TransactionType["System_General_Credit"] = 138] = "System_General_Credit";
|
827
|
-
TransactionType[TransactionType["System_General_Credit_Fee"] = 139] = "System_General_Credit_Fee";
|
828
|
-
TransactionType[TransactionType["System_Voucher_Load"] = 162] = "System_Voucher_Load";
|
829
|
-
TransactionType[TransactionType["System_Voucher_Load_Fee"] = 163] = "System_Voucher_Load_Fee";
|
830
|
-
TransactionType[TransactionType["System_Voucher_Payment_Send"] = 164] = "System_Voucher_Payment_Send";
|
831
|
-
TransactionType[TransactionType["System_Voucher_Payment_Send_Fee"] = 165] = "System_Voucher_Payment_Send_Fee";
|
832
|
-
TransactionType[TransactionType["System_Voucher_Payment_Receive"] = 166] = "System_Voucher_Payment_Receive";
|
833
|
-
TransactionType[TransactionType["System_Voucher_Payment_Receive_Fee"] = 167] = "System_Voucher_Payment_Receive_Fee";
|
834
|
-
TransactionType[TransactionType["System_General_Transfer_Send"] = 242] = "System_General_Transfer_Send";
|
835
|
-
TransactionType[TransactionType["System_General_Transfer_Send_Fee"] = 243] = "System_General_Transfer_Send_Fee";
|
836
|
-
TransactionType[TransactionType["System_General_Transfer_Receive"] = 244] = "System_General_Transfer_Receive";
|
837
|
-
TransactionType[TransactionType["System_General_Transfer_Receive_Fee"] = 245] = "System_General_Transfer_Receive_Fee";
|
838
|
-
TransactionType[TransactionType["System_External_Auth_Credit"] = 246] = "System_External_Auth_Credit";
|
839
|
-
TransactionType[TransactionType["System_External_Auth_Credit_Fee"] = 247] = "System_External_Auth_Credit_Fee";
|
840
|
-
TransactionType[TransactionType["System_External_Auth_Debit"] = 248] = "System_External_Auth_Debit";
|
841
|
-
TransactionType[TransactionType["System_External_Auth_Debit_Fee"] = 249] = "System_External_Auth_Debit_Fee";
|
842
|
-
TransactionType[TransactionType["System_Reseller_Purchase"] = 188] = "System_Reseller_Purchase";
|
843
|
-
TransactionType[TransactionType["System_Reseller_Purchase_Fee"] = 189] = "System_Reseller_Purchase_Fee";
|
844
|
-
TransactionType[TransactionType["System_User_Purchase"] = 190] = "System_User_Purchase";
|
845
|
-
TransactionType[TransactionType["System_User_Purchase_Fee"] = 191] = "System_User_Purchase_Fee";
|
846
|
-
TransactionType[TransactionType["System_Crypto_Load"] = 192] = "System_Crypto_Load";
|
847
|
-
TransactionType[TransactionType["System_Crypto_Load_Fee"] = 193] = "System_Crypto_Load_Fee";
|
848
|
-
TransactionType[TransactionType["System_Crypto_Withdrawal"] = 194] = "System_Crypto_Withdrawal";
|
849
|
-
TransactionType[TransactionType["System_Crypto_Withdrawal_Fee"] = 195] = "System_Crypto_Withdrawal_Fee";
|
850
|
-
// Gateway Transactions
|
851
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_Load"] = 234] = "Gateway_Payment_Gateway_Load";
|
852
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_Load_Fee"] = 235] = "Gateway_Payment_Gateway_Load_Fee";
|
853
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_Purchase"] = 236] = "Gateway_Payment_Gateway_Purchase";
|
854
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_Purchase_Fee"] = 237] = "Gateway_Payment_Gateway_Purchase_Fee";
|
855
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_Withdrawal"] = 250] = "Gateway_Payment_Gateway_Withdrawal";
|
856
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_Withdrawal_Fee"] = 251] = "Gateway_Payment_Gateway_Withdrawal_Fee";
|
857
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_E_Transfer"] = 252] = "Gateway_Payment_Gateway_E_Transfer";
|
858
|
-
TransactionType[TransactionType["Gateway_Payment_Gateway_E_Transfer_Fee"] = 253] = "Gateway_Payment_Gateway_E_Transfer_Fee";
|
859
|
-
// Service Transactions
|
860
|
-
TransactionType[TransactionType["Service_Account_Activation"] = 116] = "Service_Account_Activation";
|
861
|
-
TransactionType[TransactionType["Service_Account_Activation_Fee"] = 117] = "Service_Account_Activation_Fee";
|
862
|
-
TransactionType[TransactionType["Service_Account_Termination"] = 118] = "Service_Account_Termination";
|
863
|
-
TransactionType[TransactionType["Service_Account_Termination_Fee"] = 119] = "Service_Account_Termination_Fee";
|
864
|
-
TransactionType[TransactionType["Service_Debit_Card_Shipping"] = 120] = "Service_Debit_Card_Shipping";
|
865
|
-
TransactionType[TransactionType["Service_Debit_Card_Shipping_Fee"] = 121] = "Service_Debit_Card_Shipping_Fee";
|
866
|
-
TransactionType[TransactionType["Service_NSF"] = 122] = "Service_NSF";
|
867
|
-
TransactionType[TransactionType["Service_NSF_Fee"] = 123] = "Service_NSF_Fee";
|
868
|
-
TransactionType[TransactionType["Service_Lost_Card"] = 124] = "Service_Lost_Card";
|
869
|
-
TransactionType[TransactionType["Service_Lost_Card_Fee"] = 125] = "Service_Lost_Card_Fee";
|
870
|
-
TransactionType[TransactionType["Service_Support"] = 126] = "Service_Support";
|
871
|
-
TransactionType[TransactionType["Service_Support_Fee"] = 127] = "Service_Support_Fee";
|
872
|
-
TransactionType[TransactionType["Service_Administration"] = 128] = "Service_Administration";
|
873
|
-
TransactionType[TransactionType["Service_Administration_Fee"] = 129] = "Service_Administration_Fee";
|
874
|
-
TransactionType[TransactionType["Service_Account_Suspension"] = 130] = "Service_Account_Suspension";
|
875
|
-
TransactionType[TransactionType["Service_Account_Suspension_Fee"] = 131] = "Service_Account_Suspension_Fee";
|
876
|
-
TransactionType[TransactionType["Service_Account_Reactivation"] = 132] = "Service_Account_Reactivation";
|
877
|
-
TransactionType[TransactionType["Service_Account_Reactivation_Fee"] = 133] = "Service_Account_Reactivation_Fee";
|
878
|
-
TransactionType[TransactionType["Service_Generic"] = 134] = "Service_Generic";
|
879
|
-
TransactionType[TransactionType["Service_Generic_Fee"] = 135] = "Service_Generic_Fee";
|
880
|
-
TransactionType[TransactionType["Service_Balance_Request"] = 140] = "Service_Balance_Request";
|
881
|
-
TransactionType[TransactionType["Service_Balance_Request_Fee"] = 141] = "Service_Balance_Request_Fee";
|
882
|
-
TransactionType[TransactionType["Service_Decline"] = 160] = "Service_Decline";
|
883
|
-
TransactionType[TransactionType["Service_Decline_Fee"] = 161] = "Service_Decline_Fee";
|
884
|
-
TransactionType[TransactionType["Service_Cash_Withdrawal_NSF"] = 230] = "Service_Cash_Withdrawal_NSF";
|
885
|
-
TransactionType[TransactionType["Service_Cash_Withdrawal_NSF_Fee"] = 231] = "Service_Cash_Withdrawal_NSF_Fee";
|
886
|
-
TransactionType[TransactionType["Service_Account_Renewal"] = 170] = "Service_Account_Renewal";
|
887
|
-
TransactionType[TransactionType["Service_Account_Renewal_Fee"] = 171] = "Service_Account_Renewal_Fee";
|
888
|
-
TransactionType[TransactionType["Service_Generic_Inactivity"] = 172] = "Service_Generic_Inactivity";
|
889
|
-
TransactionType[TransactionType["Service_Generic_Inactivity_Fee"] = 173] = "Service_Generic_Inactivity_Fee";
|
890
|
-
TransactionType[TransactionType["Service_Account_Replacement"] = 174] = "Service_Account_Replacement";
|
891
|
-
TransactionType[TransactionType["Service_Account_Replacement_Fee"] = 175] = "Service_Account_Replacement_Fee";
|
892
|
-
TransactionType[TransactionType["Service_Account_Multipan"] = 176] = "Service_Account_Multipan";
|
893
|
-
TransactionType[TransactionType["Service_Account_Multipan_Fee"] = 177] = "Service_Account_Multipan_Fee";
|
894
|
-
})(TransactionType || (exports.TransactionType = TransactionType = {}));
|
1
|
+
var AccountStatus;
|
2
|
+
(function (AccountStatus) {
|
3
|
+
AccountStatus[AccountStatus["Undefined"] = -1] = "Undefined";
|
4
|
+
AccountStatus[AccountStatus["Inactive"] = 0] = "Inactive";
|
5
|
+
AccountStatus[AccountStatus["Active"] = 1] = "Active";
|
6
|
+
AccountStatus[AccountStatus["Lost"] = 2] = "Lost";
|
7
|
+
AccountStatus[AccountStatus["Stolen"] = 3] = "Stolen";
|
8
|
+
AccountStatus[AccountStatus["Closed"] = 4] = "Closed";
|
9
|
+
AccountStatus[AccountStatus["Suspended"] = 5] = "Suspended";
|
10
|
+
AccountStatus[AccountStatus["Prohibit_Use"] = 6] = "Prohibit_Use";
|
11
|
+
AccountStatus[AccountStatus["Expired"] = 7] = "Expired";
|
12
|
+
AccountStatus[AccountStatus["Pending"] = 8] = "Pending";
|
13
|
+
AccountStatus[AccountStatus["Blocked"] = 9] = "Blocked";
|
14
|
+
AccountStatus[AccountStatus["Refer_To_Card_Issuer"] = 10] = "Refer_To_Card_Issuer";
|
15
|
+
AccountStatus[AccountStatus["Capture_Card"] = 11] = "Capture_Card";
|
16
|
+
AccountStatus[AccountStatus["Pending_Activation"] = 12] = "Pending_Activation";
|
17
|
+
AccountStatus[AccountStatus["Replaced"] = 13] = "Replaced";
|
18
|
+
AccountStatus[AccountStatus["Suspected_Fraud"] = 14] = "Suspected_Fraud";
|
19
|
+
AccountStatus[AccountStatus["Suspended_By_User"] = 15] = "Suspended_By_User";
|
20
|
+
AccountStatus[AccountStatus["Renewed"] = 16] = "Renewed";
|
21
|
+
AccountStatus[AccountStatus["Deleted"] = 17] = "Deleted";
|
22
|
+
AccountStatus[AccountStatus["Canceled"] = 18] = "Canceled";
|
23
|
+
})(AccountStatus || (AccountStatus = {}));
|
24
|
+
var ActivityType;
|
25
|
+
(function (ActivityType) {
|
26
|
+
ActivityType[ActivityType["None"] = 0] = "None";
|
27
|
+
ActivityType[ActivityType["Create"] = 1] = "Create";
|
28
|
+
ActivityType[ActivityType["Update"] = 2] = "Update";
|
29
|
+
ActivityType[ActivityType["Delete"] = 3] = "Delete";
|
30
|
+
ActivityType[ActivityType["Add"] = 4] = "Add";
|
31
|
+
ActivityType[ActivityType["Activate"] = 5] = "Activate";
|
32
|
+
ActivityType[ActivityType["Review"] = 6] = "Review";
|
33
|
+
ActivityType[ActivityType["Process"] = 7] = "Process";
|
34
|
+
ActivityType[ActivityType["Validate"] = 8] = "Validate";
|
35
|
+
ActivityType[ActivityType["Check_Online"] = 9] = "Check_Online";
|
36
|
+
ActivityType[ActivityType["Rule_Applied"] = 10] = "Rule_Applied";
|
37
|
+
ActivityType[ActivityType["Reverse"] = 11] = "Reverse";
|
38
|
+
ActivityType[ActivityType["Partial_Reverse"] = 12] = "Partial_Reverse";
|
39
|
+
ActivityType[ActivityType["Cancel"] = 13] = "Cancel";
|
40
|
+
ActivityType[ActivityType["Print"] = 14] = "Print";
|
41
|
+
ActivityType[ActivityType["Export"] = 15] = "Export";
|
42
|
+
ActivityType[ActivityType["Download"] = 16] = "Download";
|
43
|
+
ActivityType[ActivityType["Reserve"] = 17] = "Reserve";
|
44
|
+
ActivityType[ActivityType["Pending"] = 18] = "Pending";
|
45
|
+
ActivityType[ActivityType["Cleared"] = 19] = "Cleared";
|
46
|
+
ActivityType[ActivityType["Exclude"] = 20] = "Exclude";
|
47
|
+
ActivityType[ActivityType["Reset"] = 21] = "Reset";
|
48
|
+
ActivityType[ActivityType["Confirm"] = 22] = "Confirm";
|
49
|
+
ActivityType[ActivityType["Save"] = 23] = "Save";
|
50
|
+
ActivityType[ActivityType["Unlock"] = 24] = "Unlock";
|
51
|
+
ActivityType[ActivityType["Accept_Term"] = 25] = "Accept_Term";
|
52
|
+
ActivityType[ActivityType["Program_Copy_Add"] = 26] = "Program_Copy_Add";
|
53
|
+
ActivityType[ActivityType["Program_Copy_Update"] = 27] = "Program_Copy_Update";
|
54
|
+
ActivityType[ActivityType["View"] = 28] = "View";
|
55
|
+
ActivityType[ActivityType["Forget"] = 29] = "Forget";
|
56
|
+
ActivityType[ActivityType["Tracking"] = 30] = "Tracking";
|
57
|
+
ActivityType[ActivityType["Group_Process"] = 31] = "Group_Process";
|
58
|
+
ActivityType[ActivityType["Group_Reverse"] = 32] = "Group_Reverse";
|
59
|
+
ActivityType[ActivityType["Group_Cancel"] = 33] = "Group_Cancel";
|
60
|
+
ActivityType[ActivityType["Reverse_Program_Fee"] = 34] = "Reverse_Program_Fee";
|
61
|
+
ActivityType[ActivityType["Reverse_User_Fee"] = 35] = "Reverse_User_Fee";
|
62
|
+
ActivityType[ActivityType["Reverse_Sender_Program_Fee"] = 36] = "Reverse_Sender_Program_Fee";
|
63
|
+
ActivityType[ActivityType["Reverse_Receiver_Program_Fee"] = 37] = "Reverse_Receiver_Program_Fee";
|
64
|
+
ActivityType[ActivityType["Reverse_Sender_User_Fee"] = 38] = "Reverse_Sender_User_Fee";
|
65
|
+
ActivityType[ActivityType["Reverse_Receiver_User_Fee"] = 39] = "Reverse_Receiver_User_Fee";
|
66
|
+
ActivityType[ActivityType["Read"] = 40] = "Read";
|
67
|
+
ActivityType[ActivityType["Force_Process"] = 41] = "Force_Process";
|
68
|
+
ActivityType[ActivityType["Group_Delete"] = 42] = "Group_Delete";
|
69
|
+
ActivityType[ActivityType["Group_Validate"] = 43] = "Group_Validate";
|
70
|
+
ActivityType[ActivityType["Group_Force_Process"] = 44] = "Group_Force_Process";
|
71
|
+
})(ActivityType || (ActivityType = {}));
|
72
|
+
var AddressType;
|
73
|
+
(function (AddressType) {
|
74
|
+
AddressType[AddressType["Home"] = 0] = "Home";
|
75
|
+
AddressType[AddressType["Work"] = 1] = "Work";
|
76
|
+
AddressType[AddressType["Billing"] = 2] = "Billing";
|
77
|
+
AddressType[AddressType["Shipping"] = 3] = "Shipping";
|
78
|
+
})(AddressType || (AddressType = {}));
|
79
|
+
var AuthorizationOperationRequestType;
|
80
|
+
(function (AuthorizationOperationRequestType) {
|
81
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["User_Creation"] = 1] = "User_Creation";
|
82
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Currency"] = 2] = "Create_Currency";
|
83
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Loading_Card_Details"] = 3] = "Add_Loading_Card_Details";
|
84
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Linked_Bank_Account"] = 4] = "Add_Linked_Bank_Account";
|
85
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_ID_Details"] = 5] = "Add_ID_Details";
|
86
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Address"] = 6] = "Create_Address";
|
87
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Document"] = 7] = "Create_Document";
|
88
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Group"] = 8] = "Create_Group";
|
89
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Relationship"] = 9] = "Create_Relationship";
|
90
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Device"] = 10] = "Create_Device";
|
91
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Custom_Field_Data"] = 11] = "Add_Custom_Field_Data";
|
92
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Ticket"] = 12] = "Add_Ticket";
|
93
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Picture"] = 13] = "Create_Picture";
|
94
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_User_Location"] = 14] = "Add_User_Location";
|
95
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Create_Social_Media"] = 15] = "Create_Social_Media";
|
96
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User"] = 16] = "Update_User";
|
97
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Loading_Card_Details"] = 17] = "Edit_Loading_Card_Details";
|
98
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Linked_Bank_Account"] = 18] = "Edit_Linked_Bank_Account";
|
99
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_ID_Details"] = 19] = "Edit_ID_Details";
|
100
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Personal_Info"] = 20] = "Edit_Personal_Info";
|
101
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Security"] = 21] = "Update_Security";
|
102
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Preferences"] = 22] = "Edit_Preferences";
|
103
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Group"] = 23] = "Update_Group";
|
104
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Relationship"] = 24] = "Update_Relationship";
|
105
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Device"] = 25] = "Update_Device";
|
106
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Custom_Field_Data"] = 26] = "Edit_Custom_Field_Data";
|
107
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Ticket"] = 27] = "Update_Ticket";
|
108
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Picture"] = 28] = "Update_Picture";
|
109
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_User_Location"] = 29] = "Edit_User_Location";
|
110
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Social_Media"] = 30] = "Update_Social_Media";
|
111
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_User"] = 31] = "Delete_User";
|
112
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Address"] = 32] = "Delete_Address";
|
113
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Currency"] = 33] = "Delete_Currency";
|
114
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Phone_Number"] = 34] = "Delete_Phone_Number";
|
115
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Email_Address"] = 35] = "Delete_Email_Address";
|
116
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Loading_Card_Details"] = 36] = "Delete_Loading_Card_Details";
|
117
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Linked_Bank_Account"] = 37] = "Delete_Linked_Bank_Account";
|
118
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_ID_Details"] = 38] = "Delete_ID_Details";
|
119
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Group"] = 39] = "Delete_Group";
|
120
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Relationship"] = 40] = "Delete_Relationship";
|
121
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Device"] = 41] = "Delete_Device";
|
122
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Custom_Field_Data"] = 42] = "Delete_Custom_Field_Data";
|
123
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Ticket"] = 43] = "Delete_Ticket";
|
124
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Picture"] = 44] = "Delete_Picture";
|
125
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_User_Location"] = 45] = "Delete_User_Location";
|
126
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Social_Media"] = 46] = "Delete_Social_Media";
|
127
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Reset_Security_Info"] = 47] = "Reset_Security_Info";
|
128
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Verify_Security_Data"] = 48] = "Verify_Security_Data";
|
129
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Confirm_Security_Data"] = 49] = "Confirm_Security_Data";
|
130
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Validate_Security_Data"] = 50] = "Validate_Security_Data";
|
131
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Account_Creation"] = 51] = "Account_Creation";
|
132
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Address"] = 52] = "Edit_Address";
|
133
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Credit_Limit"] = 54] = "Edit_Credit_Limit";
|
134
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Credit_Limit_Assignment"] = 55] = "Credit_Limit_Assignment";
|
135
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Account_Activation"] = 56] = "Account_Activation";
|
136
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Phone_Number"] = 57] = "Add_Phone_Number";
|
137
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Phone_Number"] = 58] = "Edit_Phone_Number";
|
138
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Email_Address"] = 59] = "Add_Email_Address";
|
139
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Email_Address"] = 60] = "Edit_Email_Address";
|
140
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Credit_Funds_To_Settlement_Account"] = 61] = "Credit_Funds_To_Settlement_Account";
|
141
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Debit_Funds_From_Settlement_Account"] = 62] = "Debit_Funds_From_Settlement_Account";
|
142
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Credit_Funds"] = 63] = "Credit_Funds";
|
143
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Debit_Funds"] = 64] = "Debit_Funds";
|
144
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Transfer_Funds"] = 65] = "Transfer_Funds";
|
145
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Transfer_Funds_to_Settlement_Account"] = 66] = "Transfer_Funds_to_Settlement_Account";
|
146
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Trust_Level_and_Status"] = 67] = "Edit_Trust_Level_and_Status";
|
147
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Account_Options"] = 68] = "Update_Account_Options";
|
148
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Usage_Status"] = 69] = "Update_Usage_Status";
|
149
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Account"] = 70] = "Update_Account";
|
150
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_Password"] = 71] = "Update_User_Password";
|
151
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_Security_Code"] = 72] = "Update_User_Security_Code";
|
152
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_Security_Question"] = 73] = "Update_User_Security_Question";
|
153
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_User_2FA_Settings"] = 74] = "Update_User_2FA_Settings";
|
154
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Authentication_Delete"] = 75] = "Authentication_Delete";
|
155
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Update_Device_Verification_Status"] = 76] = "Update_Device_Verification_Status";
|
156
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Add_Crypto_Address"] = 77] = "Add_Crypto_Address";
|
157
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Delete_Crypto_Address"] = 78] = "Delete_Crypto_Address";
|
158
|
+
AuthorizationOperationRequestType[AuthorizationOperationRequestType["Edit_Crypto_Address"] = 79] = "Edit_Crypto_Address";
|
159
|
+
})(AuthorizationOperationRequestType || (AuthorizationOperationRequestType = {}));
|
160
|
+
var BankAccountTypes;
|
161
|
+
(function (BankAccountTypes) {
|
162
|
+
BankAccountTypes[BankAccountTypes["Undefined"] = -1] = "Undefined";
|
163
|
+
BankAccountTypes[BankAccountTypes["Personal_Savings"] = 1] = "Personal_Savings";
|
164
|
+
BankAccountTypes[BankAccountTypes["Personal_Checking"] = 2] = "Personal_Checking";
|
165
|
+
BankAccountTypes[BankAccountTypes["Corporate"] = 3] = "Corporate";
|
166
|
+
BankAccountTypes[BankAccountTypes["Direct_Deposit"] = 4] = "Direct_Deposit";
|
167
|
+
})(BankAccountTypes || (BankAccountTypes = {}));
|
168
|
+
var BankBeneficiaryType;
|
169
|
+
(function (BankBeneficiaryType) {
|
170
|
+
BankBeneficiaryType[BankBeneficiaryType["My_Account"] = 1] = "My_Account";
|
171
|
+
BankBeneficiaryType[BankBeneficiaryType["Beneficiary_Account"] = 2] = "Beneficiary_Account";
|
172
|
+
})(BankBeneficiaryType || (BankBeneficiaryType = {}));
|
173
|
+
var BlockchainRequestType;
|
174
|
+
(function (BlockchainRequestType) {
|
175
|
+
BlockchainRequestType[BlockchainRequestType["Send"] = 1] = "Send";
|
176
|
+
BlockchainRequestType[BlockchainRequestType["Multi_Send"] = 2] = "Multi_Send";
|
177
|
+
BlockchainRequestType[BlockchainRequestType["Delegate"] = 3] = "Delegate";
|
178
|
+
BlockchainRequestType[BlockchainRequestType["Undelegate"] = 4] = "Undelegate";
|
179
|
+
})(BlockchainRequestType || (BlockchainRequestType = {}));
|
180
|
+
var BusinessType;
|
181
|
+
(function (BusinessType) {
|
182
|
+
BusinessType[BusinessType["Sole_Proprietorship"] = 1] = "Sole_Proprietorship";
|
183
|
+
BusinessType[BusinessType["Limited_Partnership"] = 2] = "Limited_Partnership";
|
184
|
+
BusinessType[BusinessType["Corporation"] = 3] = "Corporation";
|
185
|
+
BusinessType[BusinessType["Limited_Liability_Company"] = 4] = "Limited_Liability_Company";
|
186
|
+
BusinessType[BusinessType["Nonprofit_Organization"] = 5] = "Nonprofit_Organization";
|
187
|
+
BusinessType[BusinessType["Cooperative"] = 6] = "Cooperative";
|
188
|
+
BusinessType[BusinessType["Partnerships"] = 7] = "Partnerships";
|
189
|
+
BusinessType[BusinessType["Individual_Group"] = 8] = "Individual_Group";
|
190
|
+
BusinessType[BusinessType["Other"] = 9] = "Other";
|
191
|
+
})(BusinessType || (BusinessType = {}));
|
192
|
+
var ChainRequestType;
|
193
|
+
(function (ChainRequestType) {
|
194
|
+
ChainRequestType[ChainRequestType["Create_Trade"] = 0] = "Create_Trade";
|
195
|
+
ChainRequestType[ChainRequestType["Process_Trade"] = 1] = "Process_Trade";
|
196
|
+
})(ChainRequestType || (ChainRequestType = {}));
|
197
|
+
var ChainType;
|
198
|
+
(function (ChainType) {
|
199
|
+
ChainType[ChainType["GGEZ"] = 1] = "GGEZ";
|
200
|
+
})(ChainType || (ChainType = {}));
|
201
|
+
var CommerceProductSourceType;
|
202
|
+
(function (CommerceProductSourceType) {
|
203
|
+
CommerceProductSourceType[CommerceProductSourceType["PinCode"] = 1] = "PinCode";
|
204
|
+
CommerceProductSourceType[CommerceProductSourceType["Reseller_Offline_Invoice"] = 2] = "Reseller_Offline_Invoice";
|
205
|
+
CommerceProductSourceType[CommerceProductSourceType["Giftango"] = 3] = "Giftango";
|
206
|
+
CommerceProductSourceType[CommerceProductSourceType["STC"] = 4] = "STC";
|
207
|
+
CommerceProductSourceType[CommerceProductSourceType["Offline"] = 5] = "Offline";
|
208
|
+
CommerceProductSourceType[CommerceProductSourceType["CashU"] = 6] = "CashU";
|
209
|
+
CommerceProductSourceType[CommerceProductSourceType["OneCard"] = 7] = "OneCard";
|
210
|
+
CommerceProductSourceType[CommerceProductSourceType["PaySafe"] = 8] = "PaySafe";
|
211
|
+
CommerceProductSourceType[CommerceProductSourceType["TransferTo"] = 9] = "TransferTo";
|
212
|
+
CommerceProductSourceType[CommerceProductSourceType["Ding"] = 10] = "Ding";
|
213
|
+
CommerceProductSourceType[CommerceProductSourceType["JC_Lottery"] = 11] = "JC_Lottery";
|
214
|
+
CommerceProductSourceType[CommerceProductSourceType["EPay"] = 12] = "EPay";
|
215
|
+
CommerceProductSourceType[CommerceProductSourceType["Ding_PIN"] = 13] = "Ding_PIN";
|
216
|
+
CommerceProductSourceType[CommerceProductSourceType["Ding_Topup"] = 14] = "Ding_Topup";
|
217
|
+
CommerceProductSourceType[CommerceProductSourceType["Amazon"] = 15] = "Amazon";
|
218
|
+
CommerceProductSourceType[CommerceProductSourceType["Fawry_Payment"] = 16] = "Fawry_Payment";
|
219
|
+
CommerceProductSourceType[CommerceProductSourceType["G2A"] = 17] = "G2A";
|
220
|
+
CommerceProductSourceType[CommerceProductSourceType["Physical_Product"] = 18] = "Physical_Product";
|
221
|
+
CommerceProductSourceType[CommerceProductSourceType["Fawry_Voucher"] = 19] = "Fawry_Voucher";
|
222
|
+
CommerceProductSourceType[CommerceProductSourceType["Codati"] = 20] = "Codati";
|
223
|
+
CommerceProductSourceType[CommerceProductSourceType["GGEZ1"] = 21] = "GGEZ1";
|
224
|
+
})(CommerceProductSourceType || (CommerceProductSourceType = {}));
|
225
|
+
var CountryCode;
|
226
|
+
(function (CountryCode) {
|
227
|
+
CountryCode[CountryCode["Undefined"] = -1] = "Undefined";
|
228
|
+
CountryCode[CountryCode["Canada"] = 124] = "Canada";
|
229
|
+
CountryCode[CountryCode["Iraq"] = 368] = "Iraq";
|
230
|
+
CountryCode[CountryCode["Jordan"] = 400] = "Jordan";
|
231
|
+
CountryCode[CountryCode["Saudi_Arabia"] = 682] = "Saudi_Arabia";
|
232
|
+
CountryCode[CountryCode["United_Kingdom"] = 826] = "United_Kingdom";
|
233
|
+
CountryCode[CountryCode["United_States"] = 840] = "United_States";
|
234
|
+
CountryCode[CountryCode["Brazil"] = 76] = "Brazil";
|
235
|
+
CountryCode[CountryCode["International"] = 999] = "International";
|
236
|
+
})(CountryCode || (CountryCode = {}));
|
237
|
+
var CurrencyConversionType;
|
238
|
+
(function (CurrencyConversionType) {
|
239
|
+
CurrencyConversionType[CurrencyConversionType["Not_Active"] = -1] = "Not_Active";
|
240
|
+
CurrencyConversionType[CurrencyConversionType["Normal_Conversion"] = 1] = "Normal_Conversion";
|
241
|
+
CurrencyConversionType[CurrencyConversionType["Reverse_Conversion"] = 2] = "Reverse_Conversion";
|
242
|
+
CurrencyConversionType[CurrencyConversionType["Two_Step_Conversion"] = 3] = "Two_Step_Conversion";
|
243
|
+
CurrencyConversionType[CurrencyConversionType["No_Conversion_Needed"] = 4] = "No_Conversion_Needed";
|
244
|
+
})(CurrencyConversionType || (CurrencyConversionType = {}));
|
245
|
+
var DayOfWeek;
|
246
|
+
(function (DayOfWeek) {
|
247
|
+
DayOfWeek[DayOfWeek["Sunday"] = 0] = "Sunday";
|
248
|
+
DayOfWeek[DayOfWeek["Monday"] = 1] = "Monday";
|
249
|
+
DayOfWeek[DayOfWeek["Tuesday"] = 2] = "Tuesday";
|
250
|
+
DayOfWeek[DayOfWeek["Wednesday"] = 3] = "Wednesday";
|
251
|
+
DayOfWeek[DayOfWeek["Thursday"] = 4] = "Thursday";
|
252
|
+
DayOfWeek[DayOfWeek["Friday"] = 5] = "Friday";
|
253
|
+
DayOfWeek[DayOfWeek["Saturday"] = 6] = "Saturday";
|
254
|
+
})(DayOfWeek || (DayOfWeek = {}));
|
255
|
+
var DaysOfWeek;
|
256
|
+
(function (DaysOfWeek) {
|
257
|
+
DaysOfWeek[DaysOfWeek["All"] = 0] = "All";
|
258
|
+
DaysOfWeek[DaysOfWeek["Sunday"] = 1] = "Sunday";
|
259
|
+
DaysOfWeek[DaysOfWeek["Monday"] = 2] = "Monday";
|
260
|
+
DaysOfWeek[DaysOfWeek["Tuesday"] = 3] = "Tuesday";
|
261
|
+
DaysOfWeek[DaysOfWeek["Wednesday"] = 4] = "Wednesday";
|
262
|
+
DaysOfWeek[DaysOfWeek["Thursday"] = 5] = "Thursday";
|
263
|
+
DaysOfWeek[DaysOfWeek["Friday"] = 6] = "Friday";
|
264
|
+
DaysOfWeek[DaysOfWeek["Saturday"] = 7] = "Saturday";
|
265
|
+
})(DaysOfWeek || (DaysOfWeek = {}));
|
895
266
|
var DeviceType;
|
896
267
|
(function (DeviceType) {
|
897
268
|
DeviceType[DeviceType["Undefined"] = -1] = "Undefined";
|
@@ -900,32 +271,506 @@ var DeviceType;
|
|
900
271
|
DeviceType[DeviceType["API_Integration"] = 3] = "API_Integration";
|
901
272
|
DeviceType[DeviceType["POS_Terminal"] = 4] = "POS_Terminal";
|
902
273
|
DeviceType[DeviceType["Browser"] = 5] = "Browser";
|
903
|
-
})(DeviceType || (
|
904
|
-
var
|
905
|
-
(function (
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
274
|
+
})(DeviceType || (DeviceType = {}));
|
275
|
+
var DocumentStatus;
|
276
|
+
(function (DocumentStatus) {
|
277
|
+
DocumentStatus[DocumentStatus["None"] = 0] = "None";
|
278
|
+
DocumentStatus[DocumentStatus["Pending"] = 1] = "Pending";
|
279
|
+
DocumentStatus[DocumentStatus["Processed"] = 2] = "Processed";
|
280
|
+
DocumentStatus[DocumentStatus["Rejected"] = 3] = "Rejected";
|
281
|
+
DocumentStatus[DocumentStatus["Canceled"] = 4] = "Canceled";
|
282
|
+
DocumentStatus[DocumentStatus["Pending_Validation"] = 5] = "Pending_Validation";
|
283
|
+
DocumentStatus[DocumentStatus["Not_Acceptable"] = 6] = "Not_Acceptable";
|
284
|
+
DocumentStatus[DocumentStatus["Pending_Review"] = 7] = "Pending_Review";
|
285
|
+
})(DocumentStatus || (DocumentStatus = {}));
|
286
|
+
var DocumentType;
|
287
|
+
(function (DocumentType) {
|
288
|
+
DocumentType[DocumentType["Profile_Picture"] = 1] = "Profile_Picture";
|
289
|
+
DocumentType[DocumentType["Passport"] = 2] = "Passport";
|
290
|
+
DocumentType[DocumentType["National_ID"] = 3] = "National_ID";
|
291
|
+
DocumentType[DocumentType["Driver_License"] = 4] = "Driver_License";
|
292
|
+
DocumentType[DocumentType["Utility_Bill"] = 5] = "Utility_Bill";
|
293
|
+
DocumentType[DocumentType["Credit_Card_Statement"] = 6] = "Credit_Card_Statement";
|
294
|
+
DocumentType[DocumentType["Bank_Statement"] = 7] = "Bank_Statement";
|
295
|
+
DocumentType[DocumentType["Financial_Statement"] = 8] = "Financial_Statement";
|
296
|
+
DocumentType[DocumentType["Receipt"] = 9] = "Receipt";
|
297
|
+
DocumentType[DocumentType["Tax_Document"] = 10] = "Tax_Document";
|
298
|
+
DocumentType[DocumentType["Insurance_Document"] = 11] = "Insurance_Document";
|
299
|
+
DocumentType[DocumentType["Other"] = 12] = "Other";
|
300
|
+
DocumentType[DocumentType["Signed_Agreement"] = 13] = "Signed_Agreement";
|
301
|
+
DocumentType[DocumentType["Social_Security_Number"] = 14] = "Social_Security_Number";
|
302
|
+
DocumentType[DocumentType["Social_Insurance_Number"] = 15] = "Social_Insurance_Number";
|
303
|
+
DocumentType[DocumentType["Selfie"] = 16] = "Selfie";
|
304
|
+
DocumentType[DocumentType["Profile_Background_Picture"] = 17] = "Profile_Background_Picture";
|
305
|
+
DocumentType[DocumentType["Beneficiary_Card"] = 18] = "Beneficiary_Card";
|
306
|
+
DocumentType[DocumentType["Medical_Card"] = 19] = "Medical_Card";
|
307
|
+
DocumentType[DocumentType["Generic"] = 20] = "Generic";
|
308
|
+
DocumentType[DocumentType["Company_Registration"] = 21] = "Company_Registration";
|
309
|
+
DocumentType[DocumentType["Executive_Authority"] = 22] = "Executive_Authority";
|
310
|
+
DocumentType[DocumentType["Trade_License"] = 23] = "Trade_License";
|
311
|
+
DocumentType[DocumentType["Organization_Document"] = 24] = "Organization_Document";
|
312
|
+
})(DocumentType || (DocumentType = {}));
|
313
|
+
var Entity;
|
314
|
+
(function (Entity) {
|
315
|
+
Entity[Entity["Undefined"] = -1] = "Undefined";
|
316
|
+
Entity[Entity["System"] = 1] = "System";
|
317
|
+
Entity[Entity["Program"] = 2] = "Program";
|
318
|
+
Entity[Entity["Program_User"] = 3] = "Program_User";
|
319
|
+
Entity[Entity["Program_Fulfilment"] = 4] = "Program_Fulfilment";
|
320
|
+
Entity[Entity["BIN"] = 5] = "BIN";
|
321
|
+
Entity[Entity["BIN_Settlement"] = 6] = "BIN_Settlement";
|
322
|
+
Entity[Entity["User"] = 7] = "User";
|
323
|
+
Entity[Entity["Group"] = 8] = "Group";
|
324
|
+
Entity[Entity["Group_User"] = 9] = "Group_User";
|
325
|
+
Entity[Entity["Account"] = 10] = "Account";
|
326
|
+
Entity[Entity["Transaction"] = 11] = "Transaction";
|
327
|
+
Entity[Entity["POS"] = 12] = "POS";
|
328
|
+
Entity[Entity["POS_User"] = 13] = "POS_User";
|
329
|
+
Entity[Entity["Catalog"] = 14] = "Catalog";
|
330
|
+
Entity[Entity["Entity_Address"] = 15] = "Entity_Address";
|
331
|
+
Entity[Entity["Entity_Bank"] = 16] = "Entity_Bank";
|
332
|
+
Entity[Entity["Entity_Credit_Card"] = 17] = "Entity_Credit_Card";
|
333
|
+
Entity[Entity["Entity_Device"] = 18] = "Entity_Device";
|
334
|
+
Entity[Entity["Entity_Email"] = 19] = "Entity_Email";
|
335
|
+
Entity[Entity["Entity_Location"] = 20] = "Entity_Location";
|
336
|
+
Entity[Entity["Entity_Phone"] = 21] = "Entity_Phone";
|
337
|
+
Entity[Entity["Entity_Picture"] = 22] = "Entity_Picture";
|
338
|
+
Entity[Entity["Entity_Relationship"] = 23] = "Entity_Relationship";
|
339
|
+
Entity[Entity["Entity_Social_Media"] = 24] = "Entity_Social_Media";
|
340
|
+
Entity[Entity["Entity_Identification"] = 25] = "Entity_Identification";
|
341
|
+
Entity[Entity["Entity_Document"] = 26] = "Entity_Document";
|
342
|
+
Entity[Entity["Entity_Custom_Field"] = 27] = "Entity_Custom_Field";
|
343
|
+
Entity[Entity["Entity_Terms_Conditions"] = 28] = "Entity_Terms_Conditions";
|
344
|
+
Entity[Entity["User_Personal_Info"] = 29] = "User_Personal_Info";
|
345
|
+
Entity[Entity["POS_Security"] = 30] = "POS_Security";
|
346
|
+
Entity[Entity["User_Currency"] = 31] = "User_Currency";
|
347
|
+
Entity[Entity["Order"] = 32] = "Order";
|
348
|
+
Entity[Entity["Order_Item"] = 33] = "Order_Item";
|
349
|
+
Entity[Entity["FIS_Transaction"] = 34] = "FIS_Transaction";
|
350
|
+
Entity[Entity["MC_Transaction"] = 35] = "MC_Transaction";
|
351
|
+
Entity[Entity["Entity_Login"] = 36] = "Entity_Login";
|
352
|
+
Entity[Entity["Management_Connection"] = 37] = "Management_Connection";
|
353
|
+
Entity[Entity["External_Service"] = 38] = "External_Service";
|
354
|
+
Entity[Entity["Validation_Service"] = 39] = "Validation_Service";
|
355
|
+
Entity[Entity["Message"] = 40] = "Message";
|
356
|
+
Entity[Entity["Shopping_Cart_Data"] = 41] = "Shopping_Cart_Data";
|
357
|
+
Entity[Entity["User_Signup_Request"] = 42] = "User_Signup_Request";
|
358
|
+
Entity[Entity["System_Transaction"] = 43] = "System_Transaction";
|
359
|
+
Entity[Entity["Transfer_Transaction"] = 44] = "Transfer_Transaction";
|
360
|
+
Entity[Entity["Supplied_Account"] = 45] = "Supplied_Account";
|
361
|
+
Entity[Entity["Transaction_Scheduler"] = 46] = "Transaction_Scheduler";
|
362
|
+
Entity[Entity["Commerce"] = 47] = "Commerce";
|
363
|
+
Entity[Entity["Program_Role"] = 48] = "Program_Role";
|
364
|
+
Entity[Entity["User_Security"] = 49] = "User_Security";
|
365
|
+
Entity[Entity["Country"] = 50] = "Country";
|
366
|
+
Entity[Entity["State_Province"] = 51] = "State_Province";
|
367
|
+
Entity[Entity["City"] = 52] = "City";
|
368
|
+
Entity[Entity["Area"] = 53] = "Area";
|
369
|
+
Entity[Entity["Landmark"] = 54] = "Landmark";
|
370
|
+
Entity[Entity["Messaging_Setup"] = 55] = "Messaging_Setup";
|
371
|
+
Entity[Entity["Messaging_Template_Setup"] = 56] = "Messaging_Template_Setup";
|
372
|
+
Entity[Entity["Messaging_Templates_Localization"] = 57] = "Messaging_Templates_Localization";
|
373
|
+
Entity[Entity["Location_Group"] = 58] = "Location_Group";
|
374
|
+
Entity[Entity["Entity_Device_History"] = 59] = "Entity_Device_History";
|
375
|
+
Entity[Entity["Entity_General_Requirement"] = 60] = "Entity_General_Requirement";
|
376
|
+
Entity[Entity["Payment_Service"] = 61] = "Payment_Service";
|
377
|
+
Entity[Entity["Payment_Gateway_Transaction"] = 62] = "Payment_Gateway_Transaction";
|
378
|
+
Entity[Entity["Agent_KPI_Stats"] = 63] = "Agent_KPI_Stats";
|
379
|
+
Entity[Entity["Batch"] = 64] = "Batch";
|
380
|
+
Entity[Entity["Cluster"] = 65] = "Cluster";
|
381
|
+
Entity[Entity["Payment_Gateway_JSON"] = 66] = "Payment_Gateway_JSON";
|
382
|
+
Entity[Entity["Payment_Gateway_Result"] = 67] = "Payment_Gateway_Result";
|
383
|
+
Entity[Entity["Anonymous_User"] = 68] = "Anonymous_User";
|
384
|
+
Entity[Entity["Report"] = 69] = "Report";
|
385
|
+
Entity[Entity["Product"] = 70] = "Product";
|
386
|
+
Entity[Entity["Variant"] = 71] = "Variant";
|
387
|
+
Entity[Entity["Interchange_Transaction"] = 72] = "Interchange_Transaction";
|
388
|
+
Entity[Entity["Ticket"] = 73] = "Ticket";
|
389
|
+
Entity[Entity["Main_Menu"] = 74] = "Main_Menu";
|
390
|
+
Entity[Entity["Organization"] = 75] = "Organization";
|
391
|
+
Entity[Entity["Dial_Code"] = 76] = "Dial_Code";
|
392
|
+
Entity[Entity["Product_Template"] = 77] = "Product_Template";
|
393
|
+
Entity[Entity["Transaction_Statement"] = 78] = "Transaction_Statement";
|
394
|
+
Entity[Entity["Organization_Info"] = 79] = "Organization_Info";
|
395
|
+
Entity[Entity["Organization_Details"] = 80] = "Organization_Details";
|
396
|
+
Entity[Entity["Entity_Classification"] = 81] = "Entity_Classification";
|
397
|
+
Entity[Entity["Organization_OwnerShip"] = 82] = "Organization_OwnerShip";
|
398
|
+
Entity[Entity["Entity_Working_Hour"] = 83] = "Entity_Working_Hour";
|
399
|
+
Entity[Entity["Product_Template_Variable"] = 84] = "Product_Template_Variable";
|
400
|
+
Entity[Entity["Localization"] = 85] = "Localization";
|
401
|
+
Entity[Entity["Store"] = 86] = "Store";
|
402
|
+
Entity[Entity["PinCode"] = 87] = "PinCode";
|
403
|
+
Entity[Entity["Fee_Setup"] = 88] = "Fee_Setup";
|
404
|
+
Entity[Entity["Invoice"] = 89] = "Invoice";
|
405
|
+
Entity[Entity["Package_Mapping"] = 90] = "Package_Mapping";
|
406
|
+
Entity[Entity["Custom_PEP_Names"] = 91] = "Custom_PEP_Names";
|
407
|
+
Entity[Entity["Campaign"] = 92] = "Campaign";
|
408
|
+
Entity[Entity["Limit_Setup"] = 93] = "Limit_Setup";
|
409
|
+
Entity[Entity["System_Error"] = 94] = "System_Error";
|
410
|
+
Entity[Entity["External_Error"] = 95] = "External_Error";
|
411
|
+
Entity[Entity["Commerce_Inventory"] = 101] = "Commerce_Inventory";
|
412
|
+
Entity[Entity["Trade_Transaction"] = 200] = "Trade_Transaction";
|
413
|
+
})(Entity || (Entity = {}));
|
414
|
+
var EntityData;
|
415
|
+
(function (EntityData) {
|
416
|
+
EntityData[EntityData["Undefined"] = -1] = "Undefined";
|
417
|
+
EntityData[EntityData["Info"] = 1] = "Info";
|
418
|
+
EntityData[EntityData["Personal_Info"] = 2] = "Personal_Info";
|
419
|
+
EntityData[EntityData["Preferences"] = 3] = "Preferences";
|
420
|
+
EntityData[EntityData["Security"] = 4] = "Security";
|
421
|
+
EntityData[EntityData["Status"] = 5] = "Status";
|
422
|
+
EntityData[EntityData["Password"] = 6] = "Password";
|
423
|
+
EntityData[EntityData["Security_Code"] = 7] = "Security_Code";
|
424
|
+
EntityData[EntityData["PIN_Code"] = 8] = "PIN_Code";
|
425
|
+
EntityData[EntityData["DoB"] = 9] = "DoB";
|
426
|
+
EntityData[EntityData["Security_Question"] = 10] = "Security_Question";
|
427
|
+
EntityData[EntityData["Security_Answer"] = 11] = "Security_Answer";
|
428
|
+
EntityData[EntityData["Geo_Coordinates"] = 12] = "Geo_Coordinates";
|
429
|
+
EntityData[EntityData["Currency"] = 13] = "Currency";
|
430
|
+
EntityData[EntityData["Terms_Conditions"] = 14] = "Terms_Conditions";
|
431
|
+
EntityData[EntityData["Commerce_Info"] = 15] = "Commerce_Info";
|
432
|
+
EntityData[EntityData["Program_Messaging"] = 17] = "Program_Messaging";
|
433
|
+
EntityData[EntityData["Account_Fulfilment"] = 18] = "Account_Fulfilment";
|
434
|
+
EntityData[EntityData["Verification"] = 19] = "Verification";
|
435
|
+
EntityData[EntityData["Confirm"] = 20] = "Confirm";
|
436
|
+
EntityData[EntityData["Verify"] = 21] = "Verify";
|
437
|
+
// Merchant UI Merchant Modification Pages
|
438
|
+
EntityData[EntityData["Add_Program"] = 22] = "Add_Program";
|
439
|
+
EntityData[EntityData["User_UI"] = 23] = "User_UI";
|
440
|
+
EntityData[EntityData["Program_UI"] = 24] = "Program_UI";
|
441
|
+
EntityData[EntityData["Program_System_Options"] = 25] = "Program_System_Options";
|
442
|
+
EntityData[EntityData["Program_Maintenance_Job"] = 26] = "Program_Maintenance_Job";
|
443
|
+
EntityData[EntityData["Program_Validation_Options"] = 27] = "Program_Validation_Options";
|
444
|
+
EntityData[EntityData["Program_Advanced_Options"] = 28] = "Program_Advanced_Options";
|
445
|
+
EntityData[EntityData["Program_Validation_Setup"] = 29] = "Program_Validation_Setup";
|
446
|
+
EntityData[EntityData["Program_Localization"] = 30] = "Program_Localization";
|
447
|
+
EntityData[EntityData["Program_Localization_Content"] = 31] = "Program_Localization_Content";
|
448
|
+
EntityData[EntityData["Program_Localization_User_Verification_Content"] = 32] = "Program_Localization_User_Verification_Content";
|
449
|
+
EntityData[EntityData["Program_Social_Media"] = 33] = "Program_Social_Media";
|
450
|
+
EntityData[EntityData["User_Pages_Setup"] = 34] = "User_Pages_Setup";
|
451
|
+
EntityData[EntityData["Program_Messaging_Setup"] = 35] = "Program_Messaging_Setup";
|
452
|
+
EntityData[EntityData["Program_Messaging_Template_Setup"] = 36] = "Program_Messaging_Template_Setup";
|
453
|
+
EntityData[EntityData["Program_Terms_And_Conditions"] = 37] = "Program_Terms_And_Conditions";
|
454
|
+
EntityData[EntityData["Program_Bins"] = 38] = "Program_Bins";
|
455
|
+
EntityData[EntityData["Program_Bins_Features"] = 39] = "Program_Bins_Features";
|
456
|
+
EntityData[EntityData["Program_Registration_Process"] = 40] = "Program_Registration_Process";
|
457
|
+
EntityData[EntityData["Program_Deposit_Checks_Manual"] = 41] = "Program_Deposit_Checks_Manual";
|
458
|
+
EntityData[EntityData["Program_Deposit_Bank_Wire_Transfer_Manual"] = 42] = "Program_Deposit_Bank_Wire_Transfer_Manual";
|
459
|
+
EntityData[EntityData["Program_Deposit_Credit_Card"] = 43] = "Program_Deposit_Credit_Card";
|
460
|
+
EntityData[EntityData["Program_Payment_Gateways"] = 44] = "Program_Payment_Gateways";
|
461
|
+
EntityData[EntityData["Program_Deposit_Voucher"] = 45] = "Program_Deposit_Voucher";
|
462
|
+
EntityData[EntityData["Program_Deposit_Local_System_Bin"] = 46] = "Program_Deposit_Local_System_Bin";
|
463
|
+
EntityData[EntityData["Program_Deposit_Cash_U_Load"] = 47] = "Program_Deposit_Cash_U_Load";
|
464
|
+
EntityData[EntityData["Program_Withdrawal_Methods"] = 48] = "Program_Withdrawal_Methods";
|
465
|
+
EntityData[EntityData["Program_Transfer_Option"] = 49] = "Program_Transfer_Option";
|
466
|
+
EntityData[EntityData["Program_Multi_Currency"] = 50] = "Program_Multi_Currency";
|
467
|
+
EntityData[EntityData["Program_Fee_Information"] = 51] = "Program_Fee_Information";
|
468
|
+
EntityData[EntityData["Program_Trust_Level"] = 52] = "Program_Trust_Level";
|
469
|
+
EntityData[EntityData["Program_Scheduled_Transaction"] = 53] = "Program_Scheduled_Transaction";
|
470
|
+
EntityData[EntityData["Program_Mobile_Options"] = 54] = "Program_Mobile_Options";
|
471
|
+
EntityData[EntityData["Program_Mobile_Options_For_User"] = 55] = "Program_Mobile_Options_For_User";
|
472
|
+
EntityData[EntityData["Program_ECommerce_Settings"] = 56] = "Program_ECommerce_Settings";
|
473
|
+
EntityData[EntityData["Program_External_Service_Setup"] = 57] = "Program_External_Service_Setup";
|
474
|
+
// Merchant Users
|
475
|
+
EntityData[EntityData["Program_Role_Definitions"] = 58] = "Program_Role_Definitions";
|
476
|
+
EntityData[EntityData["Program_User_Definitions"] = 59] = "Program_User_Definitions";
|
477
|
+
EntityData[EntityData["Program_Rest_Service_Role_Definitions"] = 60] = "Program_Rest_Service_Role_Definitions";
|
478
|
+
EntityData[EntityData["Program_Rest_ACL_Transaction"] = 61] = "Program_Rest_ACL_Transaction";
|
479
|
+
EntityData[EntityData["Supported_POS_Users"] = 62] = "Supported_POS_Users";
|
480
|
+
EntityData[EntityData["Supported_POS_Accounts"] = 63] = "Supported_POS_Accounts";
|
481
|
+
EntityData[EntityData["Configuration"] = 64] = "Configuration";
|
482
|
+
EntityData[EntityData["Working_Hour"] = 65] = "Working_Hour";
|
483
|
+
EntityData[EntityData["Landmark"] = 66] = "Landmark";
|
484
|
+
// Mobile changes
|
485
|
+
EntityData[EntityData["AccessToken"] = 67] = "AccessToken";
|
486
|
+
EntityData[EntityData["UserCredentials"] = 68] = "UserCredentials";
|
487
|
+
EntityData[EntityData["AccountImageBin"] = 69] = "AccountImageBin";
|
488
|
+
EntityData[EntityData["Data"] = 70] = "Data";
|
489
|
+
EntityData[EntityData["ProgramContent"] = 71] = "ProgramContent";
|
490
|
+
EntityData[EntityData["AccountLimits"] = 72] = "AccountLimits";
|
491
|
+
EntityData[EntityData["SignupRequirements"] = 73] = "SignupRequirements";
|
492
|
+
EntityData[EntityData["ExpenseReportingSettings"] = 74] = "ExpenseReportingSettings";
|
493
|
+
EntityData[EntityData["UserPhotoAsBytes"] = 75] = "UserPhotoAsBytes";
|
494
|
+
EntityData[EntityData["LastLoginInfo"] = 76] = "LastLoginInfo";
|
495
|
+
EntityData[EntityData["Receipt"] = 77] = "Receipt";
|
496
|
+
EntityData[EntityData["Shared_Custom_Field"] = 78] = "Shared_Custom_Field";
|
497
|
+
EntityData[EntityData["Zain_KSA"] = 79] = "Zain_KSA";
|
498
|
+
// Mobile changes
|
499
|
+
EntityData[EntityData["Sign_Status"] = 80] = "Sign_Status";
|
500
|
+
EntityData[EntityData["Activation_Status"] = 81] = "Activation_Status";
|
501
|
+
EntityData[EntityData["Classification"] = 82] = "Classification";
|
502
|
+
EntityData[EntityData["POS_Application"] = 83] = "POS_Application";
|
503
|
+
EntityData[EntityData["FacebookInfo"] = 84] = "FacebookInfo";
|
504
|
+
EntityData[EntityData["Action"] = 85] = "Action";
|
505
|
+
EntityData[EntityData["User_Application"] = 86] = "User_Application";
|
506
|
+
EntityData[EntityData["Order_User"] = 87] = "Order_User";
|
507
|
+
EntityData[EntityData["BIN_Configuration"] = 88] = "BIN_Configuration";
|
508
|
+
EntityData[EntityData["STC_Configuration"] = 89] = "STC_Configuration";
|
509
|
+
EntityData[EntityData["Linked_Bank"] = 90] = "Linked_Bank";
|
510
|
+
EntityData[EntityData["EPay_Configuration"] = 91] = "EPay_Configuration";
|
511
|
+
EntityData[EntityData["Fulfilment"] = 92] = "Fulfilment";
|
512
|
+
EntityData[EntityData["External_Authentication"] = 93] = "External_Authentication";
|
513
|
+
EntityData[EntityData["Account_Options"] = 94] = "Account_Options";
|
514
|
+
EntityData[EntityData["REST_ACL_Setup"] = 95] = "REST_ACL_Setup";
|
515
|
+
EntityData[EntityData["User_Trust_Level"] = 96] = "User_Trust_Level";
|
516
|
+
EntityData[EntityData["Account_Key_Set"] = 97] = "Account_Key_Set";
|
517
|
+
EntityData[EntityData["Two_Factor_Authentication"] = 98] = "Two_Factor_Authentication";
|
518
|
+
EntityData[EntityData["Account_Batch"] = 99] = "Account_Batch";
|
519
|
+
EntityData[EntityData["POS_User_ID"] = 100] = "POS_User_ID";
|
520
|
+
EntityData[EntityData["User_Name"] = 101] = "User_Name";
|
521
|
+
EntityData[EntityData["Email_Address"] = 102] = "Email_Address";
|
522
|
+
EntityData[EntityData["Phone_Number"] = 103] = "Phone_Number";
|
523
|
+
EntityData[EntityData["Temp_Security_Data"] = 104] = "Temp_Security_Data";
|
524
|
+
EntityData[EntityData["Program_Feature_Verification_Requirements"] = 105] = "Program_Feature_Verification_Requirements";
|
525
|
+
EntityData[EntityData["Program_Feature_Identification_Setup"] = 106] = "Program_Feature_Identification_Setup";
|
526
|
+
EntityData[EntityData["Taleed_Funds_Load_Code"] = 107] = "Taleed_Funds_Load_Code";
|
527
|
+
EntityData[EntityData["Program_Feature_Users_Signup_Setup"] = 108] = "Program_Feature_Users_Signup_Setup";
|
528
|
+
EntityData[EntityData["Program_Feature_Rest_Service_Options"] = 109] = "Program_Feature_Rest_Service_Options";
|
529
|
+
EntityData[EntityData["Program_Feature_Masking_Options"] = 110] = "Program_Feature_Masking_Options";
|
530
|
+
EntityData[EntityData["Program_Feature_Security_Pages_Options"] = 111] = "Program_Feature_Security_Pages_Options";
|
531
|
+
EntityData[EntityData["Program_Feature_Password_Settings"] = 112] = "Program_Feature_Password_Settings";
|
532
|
+
EntityData[EntityData["Program_Feature_Credit_Card_Security_Options"] = 113] = "Program_Feature_Credit_Card_Security_Options";
|
533
|
+
EntityData[EntityData["Program_Feature_Advance_UI_Options"] = 114] = "Program_Feature_Advance_UI_Options";
|
534
|
+
EntityData[EntityData["Program_Feature_User_UI_Options"] = 115] = "Program_Feature_User_UI_Options";
|
535
|
+
EntityData[EntityData["Program_Feature_Currency_Converter"] = 116] = "Program_Feature_Currency_Converter";
|
536
|
+
EntityData[EntityData["Program_BIN_Feature_Activation_Setup"] = 117] = "Program_BIN_Feature_Activation_Setup";
|
537
|
+
EntityData[EntityData["Program_BIN_Feature_Virtual_Card_Display"] = 118] = "Program_BIN_Feature_Virtual_Card_Display";
|
538
|
+
EntityData[EntityData["Program_BIN_Feature_Account_Renewals"] = 119] = "Program_BIN_Feature_Account_Renewals";
|
539
|
+
EntityData[EntityData["Program_BIN_Feature_Display_Options"] = 120] = "Program_BIN_Feature_Display_Options";
|
540
|
+
EntityData[EntityData["Program_BIN_Feature_Security_Features"] = 121] = "Program_BIN_Feature_Security_Features";
|
541
|
+
EntityData[EntityData["Program_BIN_Feature_Settlement_Account"] = 122] = "Program_BIN_Feature_Settlement_Account";
|
542
|
+
EntityData[EntityData["Program_BIN_Feature_SMS_Options"] = 123] = "Program_BIN_Feature_SMS_Options";
|
543
|
+
EntityData[EntityData["Program_BIN_Feature_Authorizations_AVS"] = 124] = "Program_BIN_Feature_Authorizations_AVS";
|
544
|
+
EntityData[EntityData["Program_BIN_Feature_Interchange_Options"] = 125] = "Program_BIN_Feature_Interchange_Options";
|
545
|
+
EntityData[EntityData["Program_BIN_Feature_Fraud_Detection_System"] = 126] = "Program_BIN_Feature_Fraud_Detection_System";
|
546
|
+
EntityData[EntityData["Commerce_Inventory_Quantities"] = 127] = "Commerce_Inventory_Quantities";
|
547
|
+
EntityData[EntityData["Program_Feature_Interchange_Options"] = 128] = "Program_Feature_Interchange_Options";
|
548
|
+
EntityData[EntityData["Push_Notification"] = 129] = "Push_Notification";
|
549
|
+
EntityData[EntityData["Limited_Token"] = 130] = "Limited_Token";
|
550
|
+
EntityData[EntityData["Employee_Info"] = 131] = "Employee_Info";
|
551
|
+
EntityData[EntityData["Backend_Access_Controls"] = 132] = "Backend_Access_Controls";
|
552
|
+
EntityData[EntityData["Program_BIN_Multi_Currency_Configuration"] = 133] = "Program_BIN_Multi_Currency_Configuration";
|
553
|
+
EntityData[EntityData["Program_Multi_Currency_Configuration"] = 134] = "Program_Multi_Currency_Configuration";
|
554
|
+
EntityData[EntityData["Reseller_KPI"] = 135] = "Reseller_KPI";
|
555
|
+
EntityData[EntityData["Agent_KPI"] = 136] = "Agent_KPI";
|
556
|
+
EntityData[EntityData["Token_Status"] = 137] = "Token_Status";
|
557
|
+
EntityData[EntityData["Account_Trust_Level"] = 138] = "Account_Trust_Level";
|
558
|
+
EntityData[EntityData["Program_Feature_Backend_Admin_Options"] = 139] = "Program_Feature_Backend_Admin_Options";
|
559
|
+
EntityData[EntityData["Pending_Transaction"] = 140] = "Pending_Transaction";
|
560
|
+
EntityData[EntityData["User_Fulfilment"] = 142] = "User_Fulfilment";
|
561
|
+
EntityData[EntityData["Amazon_Configuration"] = 143] = "Amazon_Configuration";
|
562
|
+
EntityData[EntityData["ID"] = 144] = "ID";
|
563
|
+
EntityData[EntityData["Number"] = 145] = "Number";
|
564
|
+
EntityData[EntityData["Program_BIN_Feature_Card_Option"] = 146] = "Program_BIN_Feature_Card_Option";
|
565
|
+
EntityData[EntityData["Fulfilment_Batch"] = 147] = "Fulfilment_Batch";
|
566
|
+
EntityData[EntityData["User_Commerce_Configuration"] = 148] = "User_Commerce_Configuration";
|
567
|
+
EntityData[EntityData["Location"] = 149] = "Location";
|
568
|
+
EntityData[EntityData["Order_Report"] = 150] = "Order_Report";
|
569
|
+
EntityData[EntityData["Transaction_Report"] = 151] = "Transaction_Report";
|
570
|
+
EntityData[EntityData["One_Time_Password"] = 152] = "One_Time_Password";
|
571
|
+
EntityData[EntityData["System_Health"] = 153] = "System_Health";
|
572
|
+
EntityData[EntityData["Order_Store_Movement"] = 154] = "Order_Store_Movement";
|
573
|
+
EntityData[EntityData["User_Catalog_Preferences"] = 155] = "User_Catalog_Preferences";
|
574
|
+
EntityData[EntityData["G2A_Configuration"] = 156] = "G2A_Configuration";
|
575
|
+
EntityData[EntityData["Print_Count"] = 157] = "Print_Count";
|
576
|
+
EntityData[EntityData["Currency_Pairs"] = 158] = "Currency_Pairs";
|
577
|
+
EntityData[EntityData["Audit_Account_Balance"] = 159] = "Audit_Account_Balance";
|
578
|
+
EntityData[EntityData["Program_Currency_Conversion"] = 160] = "Program_Currency_Conversion";
|
579
|
+
EntityData[EntityData["Usage_Status"] = 161] = "Usage_Status";
|
580
|
+
EntityData[EntityData["Latest_Order_Item"] = 162] = "Latest_Order_Item";
|
581
|
+
EntityData[EntityData["Program_Feature_DDA_Options"] = 163] = "Program_Feature_DDA_Options";
|
582
|
+
EntityData[EntityData["POS_Configuration"] = 164] = "POS_Configuration";
|
583
|
+
EntityData[EntityData["Contactless_Count"] = 165] = "Contactless_Count";
|
584
|
+
EntityData[EntityData["Balance"] = 166] = "Balance";
|
585
|
+
EntityData[EntityData["RealTime_Status"] = 167] = "RealTime_Status";
|
586
|
+
EntityData[EntityData["Export_Database"] = 168] = "Export_Database";
|
587
|
+
EntityData[EntityData["Message"] = 169] = "Message";
|
588
|
+
EntityData[EntityData["PIN_Trials"] = 170] = "PIN_Trials";
|
589
|
+
EntityData[EntityData["Catalog"] = 171] = "Catalog";
|
590
|
+
EntityData[EntityData["Supplied_Card_Details"] = 172] = "Supplied_Card_Details";
|
591
|
+
EntityData[EntityData["New_PAN"] = 173] = "New_PAN";
|
592
|
+
EntityData[EntityData["Product_Template"] = 174] = "Product_Template";
|
593
|
+
EntityData[EntityData["Program_Feature_Ticket_Options"] = 175] = "Program_Feature_Ticket_Options";
|
594
|
+
EntityData[EntityData["Program_BIN_Feature_Deposit_And_Withdrawal_Setup"] = 176] = "Program_BIN_Feature_Deposit_And_Withdrawal_Setup";
|
595
|
+
EntityData[EntityData["Variant_Stock"] = 177] = "Variant_Stock";
|
596
|
+
EntityData[EntityData["External_Service_Request"] = 178] = "External_Service_Request";
|
597
|
+
EntityData[EntityData["Attachment_Status"] = 179] = "Attachment_Status";
|
598
|
+
EntityData[EntityData["Invoice_Configuration"] = 180] = "Invoice_Configuration";
|
599
|
+
EntityData[EntityData["Package_Mapping"] = 181] = "Package_Mapping";
|
600
|
+
EntityData[EntityData["Mada_Payment"] = 182] = "Mada_Payment";
|
601
|
+
EntityData[EntityData["EWallet_Trasfer"] = 183] = "EWallet_Trasfer";
|
602
|
+
EntityData[EntityData["Account_External_Balance"] = 184] = "Account_External_Balance";
|
603
|
+
EntityData[EntityData["PinCode_Print_Status"] = 185] = "PinCode_Print_Status";
|
604
|
+
EntityData[EntityData["Inner_Exception"] = 186] = "Inner_Exception";
|
605
|
+
EntityData[EntityData["Stack_Trace"] = 187] = "Stack_Trace";
|
606
|
+
EntityData[EntityData["Source"] = 188] = "Source";
|
607
|
+
EntityData[EntityData["Program_BIN_Feature_Tokenization_Option"] = 189] = "Program_BIN_Feature_Tokenization_Option";
|
608
|
+
EntityData[EntityData["Program_BIN_Feature_Payment_And_Orders_Options"] = 190] = "Program_BIN_Feature_Payment_And_Orders_Options";
|
609
|
+
EntityData[EntityData["Report_Problem"] = 191] = "Report_Problem";
|
610
|
+
EntityData[EntityData["Program_BIN_Feature_Credit_Limit"] = 192] = "Program_BIN_Feature_Credit_Limit";
|
611
|
+
EntityData[EntityData["Details"] = 193] = "Details";
|
612
|
+
EntityData[EntityData["Program_Feature_Sales_Signup_Setup"] = 194] = "Program_Feature_Sales_Signup_Setup";
|
613
|
+
EntityData[EntityData["Extra_Params"] = 195] = "Extra_Params";
|
614
|
+
EntityData[EntityData["Trigger_Mada_Recon"] = 196] = "Trigger_Mada_Recon";
|
615
|
+
EntityData[EntityData["Get_Last_Mada_Recon"] = 197] = "Get_Last_Mada_Recon";
|
616
|
+
EntityData[EntityData["Batch"] = 198] = "Batch";
|
617
|
+
EntityData[EntityData["Profile"] = 199] = "Profile";
|
618
|
+
EntityData[EntityData["Program_Feature_User_Invitation_Options"] = 200] = "Program_Feature_User_Invitation_Options";
|
619
|
+
EntityData[EntityData["Program_Feature_General_Options"] = 201] = "Program_Feature_General_Options";
|
620
|
+
EntityData[EntityData["Program_BIN_Feature_Renewal_Automatic_Fulfillment_Batch"] = 202] = "Program_BIN_Feature_Renewal_Automatic_Fulfillment_Batch";
|
621
|
+
EntityData[EntityData["Program_BIN_Feature_Replacement_Automatic_Fulfillment_Batch"] = 203] = "Program_BIN_Feature_Replacement_Automatic_Fulfillment_Batch";
|
622
|
+
EntityData[EntityData["User_Risk_Assessment"] = 204] = "User_Risk_Assessment";
|
623
|
+
EntityData[EntityData["Program_BIN_Feature_Mobile_Account_Options"] = 205] = "Program_BIN_Feature_Mobile_Account_Options";
|
624
|
+
EntityData[EntityData["Program_BIN_Feature_Mobile_Linked_Account_Options"] = 206] = "Program_BIN_Feature_Mobile_Linked_Account_Options";
|
625
|
+
EntityData[EntityData["Program_BIN_Feature_Monthly_FX_Statement"] = 207] = "Program_BIN_Feature_Monthly_FX_Statement";
|
626
|
+
EntityData[EntityData["Promotion_Data"] = 208] = "Promotion_Data";
|
627
|
+
EntityData[EntityData["Account_Tokenization_Completion"] = 209] = "Account_Tokenization_Completion";
|
628
|
+
EntityData[EntityData["Account_Negative_Balance"] = 210] = "Account_Negative_Balance";
|
629
|
+
EntityData[EntityData["E_Transfer_Customer"] = 211] = "E_Transfer_Customer";
|
630
|
+
EntityData[EntityData["Login_Attempt"] = 212] = "Login_Attempt";
|
631
|
+
EntityData[EntityData["User_Access_Control"] = 213] = "User_Access_Control";
|
632
|
+
EntityData[EntityData["Program_Feature_Blockchain_Options"] = 214] = "Program_Feature_Blockchain_Options";
|
633
|
+
})(EntityData || (EntityData = {}));
|
634
|
+
var EntityPriority;
|
635
|
+
(function (EntityPriority) {
|
636
|
+
EntityPriority[EntityPriority["Undefined"] = -1] = "Undefined";
|
637
|
+
EntityPriority[EntityPriority["Critical"] = 1] = "Critical";
|
638
|
+
EntityPriority[EntityPriority["High"] = 2] = "High";
|
639
|
+
EntityPriority[EntityPriority["Medium"] = 3] = "Medium";
|
640
|
+
EntityPriority[EntityPriority["Low"] = 4] = "Low";
|
641
|
+
})(EntityPriority || (EntityPriority = {}));
|
642
|
+
var EntityStatus;
|
643
|
+
(function (EntityStatus) {
|
644
|
+
EntityStatus[EntityStatus["Undefined"] = -1] = "Undefined";
|
645
|
+
EntityStatus[EntityStatus["Active"] = 1] = "Active";
|
646
|
+
EntityStatus[EntityStatus["Suspended"] = 2] = "Suspended";
|
647
|
+
EntityStatus[EntityStatus["Not_Active"] = 3] = "Not_Active";
|
648
|
+
EntityStatus[EntityStatus["Lost"] = 4] = "Lost";
|
649
|
+
EntityStatus[EntityStatus["Stolen"] = 5] = "Stolen";
|
650
|
+
EntityStatus[EntityStatus["Closed"] = 6] = "Closed";
|
651
|
+
EntityStatus[EntityStatus["Prohibit_Use"] = 7] = "Prohibit_Use";
|
652
|
+
EntityStatus[EntityStatus["Expired"] = 8] = "Expired";
|
653
|
+
EntityStatus[EntityStatus["Blocked"] = 9] = "Blocked";
|
654
|
+
EntityStatus[EntityStatus["Suspended_By_User"] = 10] = "Suspended_By_User";
|
655
|
+
EntityStatus[EntityStatus["Suspended_By_System"] = 11] = "Suspended_By_System";
|
656
|
+
EntityStatus[EntityStatus["Deactivated_By_User"] = 12] = "Deactivated_By_User";
|
657
|
+
EntityStatus[EntityStatus["Suspected_Fraud"] = 13] = "Suspected_Fraud";
|
658
|
+
EntityStatus[EntityStatus["Deleted"] = 14] = "Deleted";
|
659
|
+
EntityStatus[EntityStatus["Pending_Activation"] = 15] = "Pending_Activation";
|
660
|
+
EntityStatus[EntityStatus["Validation_Suspended"] = 16] = "Validation_Suspended";
|
661
|
+
EntityStatus[EntityStatus["Pending_Validation"] = 17] = "Pending_Validation";
|
662
|
+
EntityStatus[EntityStatus["Pending_Deactivation_By_User"] = 18] = "Pending_Deactivation_By_User";
|
663
|
+
EntityStatus[EntityStatus["Pending_Password_Confirmation"] = 19] = "Pending_Password_Confirmation";
|
664
|
+
EntityStatus[EntityStatus["Pending_User_Action"] = 20] = "Pending_User_Action";
|
665
|
+
})(EntityStatus || (EntityStatus = {}));
|
666
|
+
var EntityVerificationStatus;
|
667
|
+
(function (EntityVerificationStatus) {
|
668
|
+
EntityVerificationStatus[EntityVerificationStatus["Undefined"] = -1] = "Undefined";
|
669
|
+
EntityVerificationStatus[EntityVerificationStatus["Not_Verified"] = 0] = "Not_Verified";
|
670
|
+
EntityVerificationStatus[EntityVerificationStatus["Verified"] = 1] = "Verified";
|
671
|
+
EntityVerificationStatus[EntityVerificationStatus["Pending"] = 2] = "Pending";
|
672
|
+
EntityVerificationStatus[EntityVerificationStatus["Failed"] = 3] = "Failed";
|
673
|
+
})(EntityVerificationStatus || (EntityVerificationStatus = {}));
|
674
|
+
var ErrorLevel;
|
675
|
+
(function (ErrorLevel) {
|
676
|
+
ErrorLevel[ErrorLevel["Unknown"] = -1] = "Unknown";
|
677
|
+
ErrorLevel[ErrorLevel["Fatal"] = 0] = "Fatal";
|
678
|
+
ErrorLevel[ErrorLevel["Unhandled"] = 1] = "Unhandled";
|
679
|
+
ErrorLevel[ErrorLevel["Handled"] = 2] = "Handled";
|
680
|
+
ErrorLevel[ErrorLevel["External_WebService"] = 3] = "External_WebService";
|
681
|
+
})(ErrorLevel || (ErrorLevel = {}));
|
682
|
+
var ExternalHostMessageType;
|
683
|
+
(function (ExternalHostMessageType) {
|
684
|
+
ExternalHostMessageType[ExternalHostMessageType["Interchange_Authorization"] = 1] = "Interchange_Authorization";
|
685
|
+
ExternalHostMessageType[ExternalHostMessageType["Interchange_Financial_Post_Notification"] = 2] = "Interchange_Financial_Post_Notification";
|
686
|
+
ExternalHostMessageType[ExternalHostMessageType["System_Financial_Notification"] = 3] = "System_Financial_Notification";
|
687
|
+
ExternalHostMessageType[ExternalHostMessageType["User_Change_Notification"] = 4] = "User_Change_Notification";
|
688
|
+
ExternalHostMessageType[ExternalHostMessageType["Account_Change_Notification"] = 5] = "Account_Change_Notification";
|
689
|
+
ExternalHostMessageType[ExternalHostMessageType["Order_Notification"] = 6] = "Order_Notification";
|
690
|
+
ExternalHostMessageType[ExternalHostMessageType["Network"] = 7] = "Network";
|
691
|
+
ExternalHostMessageType[ExternalHostMessageType["OTP_Authentication_Notification"] = 8] = "OTP_Authentication_Notification";
|
692
|
+
ExternalHostMessageType[ExternalHostMessageType["Payment_Gateway_Notification"] = 9] = "Payment_Gateway_Notification";
|
693
|
+
ExternalHostMessageType[ExternalHostMessageType["Fulfilment_Batch_Notification"] = 10] = "Fulfilment_Batch_Notification";
|
694
|
+
ExternalHostMessageType[ExternalHostMessageType["Ticket_Notification"] = 11] = "Ticket_Notification";
|
695
|
+
ExternalHostMessageType[ExternalHostMessageType["Organization_Change_Notification"] = 12] = "Organization_Change_Notification";
|
696
|
+
ExternalHostMessageType[ExternalHostMessageType["Service_Fee_Notification"] = 13] = "Service_Fee_Notification";
|
697
|
+
ExternalHostMessageType[ExternalHostMessageType["Interchange_Charge_Back_Notification"] = 14] = "Interchange_Charge_Back_Notification";
|
698
|
+
})(ExternalHostMessageType || (ExternalHostMessageType = {}));
|
699
|
+
var ExternalHostMode;
|
700
|
+
(function (ExternalHostMode) {
|
701
|
+
ExternalHostMode[ExternalHostMode["Undefined"] = -1] = "Undefined";
|
702
|
+
ExternalHostMode[ExternalHostMode["Notification_Only"] = 1] = "Notification_Only";
|
703
|
+
ExternalHostMode[ExternalHostMode["Authorization"] = 2] = "Authorization";
|
704
|
+
ExternalHostMode[ExternalHostMode["Authorization_With_StandIn"] = 3] = "Authorization_With_StandIn";
|
705
|
+
ExternalHostMode[ExternalHostMode["Authorization_With_Auto_Approve"] = 4] = "Authorization_With_Auto_Approve";
|
706
|
+
})(ExternalHostMode || (ExternalHostMode = {}));
|
707
|
+
var ForgetPasswordSecurityTypes;
|
708
|
+
(function (ForgetPasswordSecurityTypes) {
|
709
|
+
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["Security_Code"] = 1] = "Security_Code";
|
710
|
+
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["DOB"] = 2] = "DOB";
|
711
|
+
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["National_ID"] = 3] = "National_ID";
|
712
|
+
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["Bank_Account"] = 4] = "Bank_Account";
|
713
|
+
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["Google_Auth"] = 5] = "Google_Auth";
|
714
|
+
})(ForgetPasswordSecurityTypes || (ForgetPasswordSecurityTypes = {}));
|
715
|
+
var ForgetUserSecurityTypes;
|
716
|
+
(function (ForgetUserSecurityTypes) {
|
717
|
+
ForgetUserSecurityTypes[ForgetUserSecurityTypes["Forget_Password"] = 1] = "Forget_Password";
|
718
|
+
})(ForgetUserSecurityTypes || (ForgetUserSecurityTypes = {}));
|
719
|
+
var GGEZGiftType;
|
720
|
+
(function (GGEZGiftType) {
|
721
|
+
GGEZGiftType[GGEZGiftType["Wheel_Of_Fortune"] = 1] = "Wheel_Of_Fortune";
|
722
|
+
})(GGEZGiftType || (GGEZGiftType = {}));
|
723
|
+
var Gender;
|
724
|
+
(function (Gender) {
|
725
|
+
Gender[Gender["N_A"] = 0] = "N_A";
|
726
|
+
Gender[Gender["Male"] = 1] = "Male";
|
727
|
+
Gender[Gender["Female"] = 2] = "Female";
|
728
|
+
})(Gender || (Gender = {}));
|
729
|
+
var IdentificationTypes;
|
730
|
+
(function (IdentificationTypes) {
|
731
|
+
IdentificationTypes[IdentificationTypes["Passport"] = 0] = "Passport";
|
732
|
+
IdentificationTypes[IdentificationTypes["Drivers_License"] = 1] = "Drivers_License";
|
733
|
+
IdentificationTypes[IdentificationTypes["National_ID"] = 2] = "National_ID";
|
734
|
+
IdentificationTypes[IdentificationTypes["SSN"] = 3] = "SSN";
|
735
|
+
IdentificationTypes[IdentificationTypes["SIN"] = 4] = "SIN";
|
736
|
+
IdentificationTypes[IdentificationTypes["Credit_Bureau"] = 6] = "Credit_Bureau";
|
737
|
+
IdentificationTypes[IdentificationTypes["Electronic_Verification"] = 7] = "Electronic_Verification";
|
738
|
+
})(IdentificationTypes || (IdentificationTypes = {}));
|
739
|
+
var OperationStatus;
|
740
|
+
(function (OperationStatus) {
|
741
|
+
OperationStatus[OperationStatus["Undefined"] = -1] = "Undefined";
|
742
|
+
OperationStatus[OperationStatus["Pending"] = 0] = "Pending";
|
743
|
+
OperationStatus[OperationStatus["In_Progress"] = 1] = "In_Progress";
|
744
|
+
OperationStatus[OperationStatus["Completed"] = 2] = "Completed";
|
745
|
+
OperationStatus[OperationStatus["Error_Occured"] = 3] = "Error_Occured";
|
746
|
+
})(OperationStatus || (OperationStatus = {}));
|
747
|
+
var OrderStatus;
|
748
|
+
(function (OrderStatus) {
|
749
|
+
OrderStatus[OrderStatus["Pending"] = 1] = "Pending";
|
750
|
+
OrderStatus[OrderStatus["Completed"] = 2] = "Completed";
|
751
|
+
OrderStatus[OrderStatus["Reserved"] = 3] = "Reserved";
|
752
|
+
OrderStatus[OrderStatus["Canceled"] = 4] = "Canceled"; /*'if reserved*/
|
753
|
+
OrderStatus[OrderStatus["Reversed"] = 5] = "Reversed";
|
754
|
+
OrderStatus[OrderStatus["Refunded"] = 6] = "Refunded";
|
755
|
+
OrderStatus[OrderStatus["Expired"] = 7] = "Expired";
|
756
|
+
OrderStatus[OrderStatus["Pending_Approval"] = 8] = "Pending_Approval";
|
757
|
+
OrderStatus[OrderStatus["Partial_Reversed"] = 9] = "Partial_Reversed";
|
758
|
+
OrderStatus[OrderStatus["Completed_With_Error"] = 10] = "Completed_With_Error";
|
759
|
+
OrderStatus[OrderStatus["Problem"] = 11] = "Problem";
|
760
|
+
OrderStatus[OrderStatus["Commit_In_Processing"] = 12] = "Commit_In_Processing";
|
761
|
+
OrderStatus[OrderStatus["Failed_From_Device"] = 13] = "Failed_From_Device";
|
762
|
+
OrderStatus[OrderStatus["Failed"] = 14] = "Failed";
|
763
|
+
})(OrderStatus || (OrderStatus = {}));
|
764
|
+
var OrderType;
|
765
|
+
(function (OrderType) {
|
766
|
+
OrderType[OrderType["Normal"] = 1] = "Normal";
|
767
|
+
OrderType[OrderType["Reserve"] = 3] = "Reserve";
|
768
|
+
OrderType[OrderType["Bulk_Order"] = 4] = "Bulk_Order";
|
769
|
+
OrderType[OrderType["Reverse"] = 5] = "Reverse";
|
770
|
+
OrderType[OrderType["Commit"] = 6] = "Commit";
|
771
|
+
OrderType[OrderType["Cancel"] = 7] = "Cancel";
|
772
|
+
OrderType[OrderType["Store_Movement"] = 8] = "Store_Movement";
|
773
|
+
})(OrderType || (OrderType = {}));
|
929
774
|
var OrganizationRequestTypes;
|
930
775
|
(function (OrganizationRequestTypes) {
|
931
776
|
OrganizationRequestTypes[OrganizationRequestTypes["Create_Organization"] = 1] = "Create_Organization";
|
@@ -948,113 +793,11 @@ var OrganizationRequestTypes;
|
|
948
793
|
OrganizationRequestTypes[OrganizationRequestTypes["Delete_Phone"] = 18] = "Delete_Phone";
|
949
794
|
OrganizationRequestTypes[OrganizationRequestTypes["Get_Relationship"] = 19] = "Get_Relationship";
|
950
795
|
OrganizationRequestTypes[OrganizationRequestTypes["Create_Relationship"] = 20] = "Create_Relationship";
|
951
|
-
OrganizationRequestTypes[OrganizationRequestTypes["Create_Social_Media"] = 21] = "Create_Social_Media";
|
952
|
-
OrganizationRequestTypes[OrganizationRequestTypes["Create_Document"] = 22] = "Create_Document";
|
953
|
-
OrganizationRequestTypes[OrganizationRequestTypes["Get_User"] = 23] = "Get_User";
|
954
|
-
OrganizationRequestTypes[OrganizationRequestTypes["Get_Account"] = 24] = "Get_Account";
|
955
|
-
})(OrganizationRequestTypes || (
|
956
|
-
var BusinessType;
|
957
|
-
(function (BusinessType) {
|
958
|
-
BusinessType[BusinessType["Sole_Proprietorship"] = 1] = "Sole_Proprietorship";
|
959
|
-
BusinessType[BusinessType["Limited_Partnership"] = 2] = "Limited_Partnership";
|
960
|
-
BusinessType[BusinessType["Corporation"] = 3] = "Corporation";
|
961
|
-
BusinessType[BusinessType["Limited_Liability_Company"] = 4] = "Limited_Liability_Company";
|
962
|
-
BusinessType[BusinessType["Nonprofit_Organization"] = 5] = "Nonprofit_Organization";
|
963
|
-
BusinessType[BusinessType["Cooperative"] = 6] = "Cooperative";
|
964
|
-
BusinessType[BusinessType["Partnerships"] = 7] = "Partnerships";
|
965
|
-
BusinessType[BusinessType["Individual_Group"] = 8] = "Individual_Group";
|
966
|
-
BusinessType[BusinessType["Other"] = 9] = "Other";
|
967
|
-
})(BusinessType || (exports.BusinessType = BusinessType = {}));
|
968
|
-
var UserType;
|
969
|
-
(function (UserType) {
|
970
|
-
UserType[UserType["Undefined"] = 0] = "Undefined";
|
971
|
-
UserType[UserType["Individual"] = 1] = "Individual";
|
972
|
-
UserType[UserType["System"] = 2] = "System";
|
973
|
-
UserType[UserType["Organization"] = 3] = "Organization";
|
974
|
-
})(UserType || (exports.UserType = UserType = {}));
|
975
|
-
var AccountStatus;
|
976
|
-
(function (AccountStatus) {
|
977
|
-
AccountStatus[AccountStatus["Undefined"] = -1] = "Undefined";
|
978
|
-
AccountStatus[AccountStatus["Inactive"] = 0] = "Inactive";
|
979
|
-
AccountStatus[AccountStatus["Active"] = 1] = "Active";
|
980
|
-
AccountStatus[AccountStatus["Lost"] = 2] = "Lost";
|
981
|
-
AccountStatus[AccountStatus["Stolen"] = 3] = "Stolen";
|
982
|
-
AccountStatus[AccountStatus["Closed"] = 4] = "Closed";
|
983
|
-
AccountStatus[AccountStatus["Suspended"] = 5] = "Suspended";
|
984
|
-
AccountStatus[AccountStatus["Prohibit_Use"] = 6] = "Prohibit_Use";
|
985
|
-
AccountStatus[AccountStatus["Expired"] = 7] = "Expired";
|
986
|
-
AccountStatus[AccountStatus["Pending"] = 8] = "Pending";
|
987
|
-
AccountStatus[AccountStatus["Blocked"] = 9] = "Blocked";
|
988
|
-
AccountStatus[AccountStatus["Refer_To_Card_Issuer"] = 10] = "Refer_To_Card_Issuer";
|
989
|
-
AccountStatus[AccountStatus["Capture_Card"] = 11] = "Capture_Card";
|
990
|
-
AccountStatus[AccountStatus["Pending_Activation"] = 12] = "Pending_Activation";
|
991
|
-
AccountStatus[AccountStatus["Replaced"] = 13] = "Replaced";
|
992
|
-
AccountStatus[AccountStatus["Suspected_Fraud"] = 14] = "Suspected_Fraud";
|
993
|
-
AccountStatus[AccountStatus["Suspended_By_User"] = 15] = "Suspended_By_User";
|
994
|
-
AccountStatus[AccountStatus["Renewed"] = 16] = "Renewed";
|
995
|
-
AccountStatus[AccountStatus["Deleted"] = 17] = "Deleted";
|
996
|
-
AccountStatus[AccountStatus["Canceled"] = 18] = "Canceled";
|
997
|
-
})(AccountStatus || (exports.AccountStatus = AccountStatus = {}));
|
998
|
-
var DocumentType;
|
999
|
-
(function (DocumentType) {
|
1000
|
-
DocumentType[DocumentType["Profile_Picture"] = 1] = "Profile_Picture";
|
1001
|
-
DocumentType[DocumentType["Passport"] = 2] = "Passport";
|
1002
|
-
DocumentType[DocumentType["National_ID"] = 3] = "National_ID";
|
1003
|
-
DocumentType[DocumentType["Driver_License"] = 4] = "Driver_License";
|
1004
|
-
DocumentType[DocumentType["Utility_Bill"] = 5] = "Utility_Bill";
|
1005
|
-
DocumentType[DocumentType["Credit_Card_Statement"] = 6] = "Credit_Card_Statement";
|
1006
|
-
DocumentType[DocumentType["Bank_Statement"] = 7] = "Bank_Statement";
|
1007
|
-
DocumentType[DocumentType["Financial_Statement"] = 8] = "Financial_Statement";
|
1008
|
-
DocumentType[DocumentType["Receipt"] = 9] = "Receipt";
|
1009
|
-
DocumentType[DocumentType["Tax_Document"] = 10] = "Tax_Document";
|
1010
|
-
DocumentType[DocumentType["Insurance_Document"] = 11] = "Insurance_Document";
|
1011
|
-
DocumentType[DocumentType["Other"] = 12] = "Other";
|
1012
|
-
DocumentType[DocumentType["Signed_Agreement"] = 13] = "Signed_Agreement";
|
1013
|
-
DocumentType[DocumentType["Social_Security_Number"] = 14] = "Social_Security_Number";
|
1014
|
-
DocumentType[DocumentType["Social_Insurance_Number"] = 15] = "Social_Insurance_Number";
|
1015
|
-
DocumentType[DocumentType["Selfie"] = 16] = "Selfie";
|
1016
|
-
DocumentType[DocumentType["Profile_Background_Picture"] = 17] = "Profile_Background_Picture";
|
1017
|
-
DocumentType[DocumentType["Beneficiary_Card"] = 18] = "Beneficiary_Card";
|
1018
|
-
DocumentType[DocumentType["Medical_Card"] = 19] = "Medical_Card";
|
1019
|
-
DocumentType[DocumentType["Generic"] = 20] = "Generic";
|
1020
|
-
DocumentType[DocumentType["Company_Registration"] = 21] = "Company_Registration";
|
1021
|
-
DocumentType[DocumentType["Executive_Authority"] = 22] = "Executive_Authority";
|
1022
|
-
DocumentType[DocumentType["Trade_License"] = 23] = "Trade_License";
|
1023
|
-
DocumentType[DocumentType["Organization_Document"] = 24] = "Organization_Document";
|
1024
|
-
})(DocumentType || (exports.DocumentType = DocumentType = {}));
|
1025
|
-
var CountryCode;
|
1026
|
-
(function (CountryCode) {
|
1027
|
-
CountryCode[CountryCode["Undefined"] = -1] = "Undefined";
|
1028
|
-
CountryCode[CountryCode["Canada"] = 124] = "Canada";
|
1029
|
-
CountryCode[CountryCode["Iraq"] = 368] = "Iraq";
|
1030
|
-
CountryCode[CountryCode["Jordan"] = 400] = "Jordan";
|
1031
|
-
CountryCode[CountryCode["Saudi_Arabia"] = 682] = "Saudi_Arabia";
|
1032
|
-
CountryCode[CountryCode["United_Kingdom"] = 826] = "United_Kingdom";
|
1033
|
-
CountryCode[CountryCode["United_States"] = 840] = "United_States";
|
1034
|
-
CountryCode[CountryCode["Brazil"] = 76] = "Brazil";
|
1035
|
-
CountryCode[CountryCode["International"] = 999] = "International";
|
1036
|
-
})(CountryCode || (exports.CountryCode = CountryCode = {}));
|
1037
|
-
var ResponseStatusCode;
|
1038
|
-
(function (ResponseStatusCode) {
|
1039
|
-
ResponseStatusCode["Approved"] = "0000";
|
1040
|
-
ResponseStatusCode["Token_Is_Not_Active"] = "5035";
|
1041
|
-
ResponseStatusCode["Invalid_Token"] = "5025";
|
1042
|
-
ResponseStatusCode["Invalid_Authentication_Code"] = "6049";
|
1043
|
-
ResponseStatusCode["Invalid_Verification_Code"] = "2053";
|
1044
|
-
ResponseStatusCode["Verification_Code_Is_Expired"] = "2054";
|
1045
|
-
})(ResponseStatusCode || (exports.ResponseStatusCode = ResponseStatusCode = {}));
|
1046
|
-
var ForgetUserSecurityTypes;
|
1047
|
-
(function (ForgetUserSecurityTypes) {
|
1048
|
-
ForgetUserSecurityTypes[ForgetUserSecurityTypes["Forget_Password"] = 1] = "Forget_Password";
|
1049
|
-
})(ForgetUserSecurityTypes || (exports.ForgetUserSecurityTypes = ForgetUserSecurityTypes = {}));
|
1050
|
-
var ForgetPasswordSecurityTypes;
|
1051
|
-
(function (ForgetPasswordSecurityTypes) {
|
1052
|
-
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["Security_Code"] = 1] = "Security_Code";
|
1053
|
-
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["DOB"] = 2] = "DOB";
|
1054
|
-
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["National_ID"] = 3] = "National_ID";
|
1055
|
-
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["Bank_Account"] = 4] = "Bank_Account";
|
1056
|
-
ForgetPasswordSecurityTypes[ForgetPasswordSecurityTypes["Google_Auth"] = 5] = "Google_Auth";
|
1057
|
-
})(ForgetPasswordSecurityTypes || (exports.ForgetPasswordSecurityTypes = ForgetPasswordSecurityTypes = {}));
|
796
|
+
OrganizationRequestTypes[OrganizationRequestTypes["Create_Social_Media"] = 21] = "Create_Social_Media";
|
797
|
+
OrganizationRequestTypes[OrganizationRequestTypes["Create_Document"] = 22] = "Create_Document";
|
798
|
+
OrganizationRequestTypes[OrganizationRequestTypes["Get_User"] = 23] = "Get_User";
|
799
|
+
OrganizationRequestTypes[OrganizationRequestTypes["Get_Account"] = 24] = "Get_Account";
|
800
|
+
})(OrganizationRequestTypes || (OrganizationRequestTypes = {}));
|
1058
801
|
var PaymentMethodType;
|
1059
802
|
(function (PaymentMethodType) {
|
1060
803
|
PaymentMethodType[PaymentMethodType["Credit_Card"] = 1] = "Credit_Card";
|
@@ -1065,41 +808,296 @@ var PaymentMethodType;
|
|
1065
808
|
PaymentMethodType[PaymentMethodType["Apex"] = 6] = "Apex";
|
1066
809
|
PaymentMethodType[PaymentMethodType["Tabadul"] = 7] = "Tabadul";
|
1067
810
|
PaymentMethodType[PaymentMethodType["Castles"] = 8] = "Castles";
|
1068
|
-
})(PaymentMethodType || (
|
1069
|
-
var
|
1070
|
-
(function (
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
811
|
+
})(PaymentMethodType || (PaymentMethodType = {}));
|
812
|
+
var PhoneNumberTypes;
|
813
|
+
(function (PhoneNumberTypes) {
|
814
|
+
PhoneNumberTypes[PhoneNumberTypes["Undefined"] = 0] = "Undefined";
|
815
|
+
PhoneNumberTypes[PhoneNumberTypes["Home"] = 1] = "Home";
|
816
|
+
PhoneNumberTypes[PhoneNumberTypes["Work"] = 2] = "Work";
|
817
|
+
PhoneNumberTypes[PhoneNumberTypes["Mobile"] = 3] = "Mobile";
|
818
|
+
PhoneNumberTypes[PhoneNumberTypes["Fax"] = 4] = "Fax";
|
819
|
+
})(PhoneNumberTypes || (PhoneNumberTypes = {}));
|
820
|
+
var ProgramTypes;
|
821
|
+
(function (ProgramTypes) {
|
822
|
+
ProgramTypes[ProgramTypes["Undefined"] = -1] = "Undefined";
|
823
|
+
ProgramTypes[ProgramTypes["DebitCard"] = 0] = "DebitCard";
|
824
|
+
ProgramTypes[ProgramTypes["EWallet"] = 1] = "EWallet";
|
825
|
+
ProgramTypes[ProgramTypes["Points"] = 2] = "Points";
|
826
|
+
ProgramTypes[ProgramTypes["Blockchain"] = 3] = "Blockchain";
|
827
|
+
})(ProgramTypes || (ProgramTypes = {}));
|
828
|
+
var PromotionGames;
|
829
|
+
(function (PromotionGames) {
|
830
|
+
PromotionGames[PromotionGames["Wheel_Of_Fortune"] = 1] = "Wheel_Of_Fortune";
|
831
|
+
PromotionGames[PromotionGames["Rock_Paper_Scissors"] = 2] = "Rock_Paper_Scissors";
|
832
|
+
})(PromotionGames || (PromotionGames = {}));
|
833
|
+
var PromotionStatus;
|
834
|
+
(function (PromotionStatus) {
|
835
|
+
PromotionStatus[PromotionStatus["Active"] = 1] = "Active";
|
836
|
+
PromotionStatus[PromotionStatus["Suspended"] = 2] = "Suspended";
|
837
|
+
PromotionStatus[PromotionStatus["Ended"] = 3] = "Ended";
|
838
|
+
})(PromotionStatus || (PromotionStatus = {}));
|
839
|
+
var PromotionType;
|
840
|
+
(function (PromotionType) {
|
841
|
+
PromotionType[PromotionType["Public"] = 1] = "Public";
|
842
|
+
PromotionType[PromotionType["Referral"] = 2] = "Referral";
|
843
|
+
})(PromotionType || (PromotionType = {}));
|
844
|
+
var PromotionVisibility;
|
845
|
+
(function (PromotionVisibility) {
|
846
|
+
PromotionVisibility[PromotionVisibility["Public"] = 1] = "Public";
|
847
|
+
PromotionVisibility[PromotionVisibility["Invite"] = 2] = "Invite";
|
848
|
+
})(PromotionVisibility || (PromotionVisibility = {}));
|
849
|
+
var RequestStatus;
|
850
|
+
(function (RequestStatus) {
|
851
|
+
RequestStatus[RequestStatus["Undefined"] = 0] = "Undefined";
|
852
|
+
RequestStatus[RequestStatus["Pending"] = 1] = "Pending";
|
853
|
+
RequestStatus[RequestStatus["Processed"] = 2] = "Processed";
|
854
|
+
RequestStatus[RequestStatus["Cleared"] = 3] = "Cleared";
|
855
|
+
RequestStatus[RequestStatus["Canceled"] = 4] = "Canceled";
|
856
|
+
RequestStatus[RequestStatus["Reversed"] = 5] = "Reversed";
|
857
|
+
RequestStatus[RequestStatus["Failed"] = 6] = "Failed";
|
858
|
+
RequestStatus[RequestStatus["Blocked"] = 7] = "Blocked";
|
859
|
+
RequestStatus[RequestStatus["Declined"] = 8] = "Declined";
|
860
|
+
RequestStatus[RequestStatus["Network_Canceled"] = 9] = "Network_Canceled";
|
861
|
+
RequestStatus[RequestStatus["Pending_Processing"] = 10] = "Pending_Processing";
|
862
|
+
RequestStatus[RequestStatus["Pending_Reversal"] = 11] = "Pending_Reversal";
|
863
|
+
RequestStatus[RequestStatus["Pending_Cancellation"] = 12] = "Pending_Cancellation";
|
864
|
+
RequestStatus[RequestStatus["Manual_Review"] = 13] = "Manual_Review";
|
865
|
+
RequestStatus[RequestStatus["Critical"] = 14] = "Critical";
|
866
|
+
RequestStatus[RequestStatus["Problem"] = 15] = "Problem";
|
867
|
+
RequestStatus[RequestStatus["Initiate"] = 16] = "Initiate";
|
868
|
+
})(RequestStatus || (RequestStatus = {}));
|
869
|
+
var ResetSecurityType;
|
870
|
+
(function (ResetSecurityType) {
|
871
|
+
ResetSecurityType[ResetSecurityType["Reset_Password"] = 1] = "Reset_Password";
|
872
|
+
ResetSecurityType[ResetSecurityType["Reset_Security_Code"] = 2] = "Reset_Security_Code";
|
873
|
+
ResetSecurityType[ResetSecurityType["Forget_Password"] = 3] = "Forget_Password";
|
874
|
+
ResetSecurityType[ResetSecurityType["Reset_Security_Questions"] = 4] = "Reset_Security_Questions";
|
875
|
+
ResetSecurityType[ResetSecurityType["Reset_PIN_Code"] = 5] = "Reset_PIN_Code";
|
876
|
+
ResetSecurityType[ResetSecurityType["Forget_PIN_Code"] = 6] = "Forget_PIN_Code";
|
877
|
+
})(ResetSecurityType || (ResetSecurityType = {}));
|
878
|
+
var SecurityAuthenticationTypes;
|
879
|
+
(function (SecurityAuthenticationTypes) {
|
880
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Undefined"] = -1] = "Undefined";
|
881
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["None"] = 0] = "None";
|
882
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Password"] = 1] = "Password";
|
883
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["OAuth"] = 2] = "OAuth";
|
884
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["User_Security_Code"] = 3] = "User_Security_Code";
|
885
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Account_Security_Code"] = 4] = "Account_Security_Code";
|
886
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Security_Screening"] = 5] = "Security_Screening";
|
887
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["OTP_SMS"] = 6] = "OTP_SMS";
|
888
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["OTP_Email"] = 7] = "OTP_Email";
|
889
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Email_Link"] = 8] = "Email_Link";
|
890
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Email_Code"] = 9] = "Email_Code";
|
891
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["SMS_Code"] = 10] = "SMS_Code";
|
892
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Google_Authenticator"] = 11] = "Google_Authenticator";
|
893
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Touch_ID"] = 12] = "Touch_ID";
|
894
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Finger_Print"] = 13] = "Finger_Print";
|
895
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["One_Time_Token"] = 14] = "One_Time_Token";
|
896
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Expiry_Time_Token"] = 15] = "Expiry_Time_Token";
|
897
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Account_PIN_Code"] = 16] = "Account_PIN_Code";
|
898
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Account_Auth_Code"] = 17] = "Account_Auth_Code";
|
899
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Security_Question_1"] = 18] = "Security_Question_1";
|
900
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Security_Question_2"] = 19] = "Security_Question_2";
|
901
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["POS_User_PIN_Code"] = 20] = "POS_User_PIN_Code";
|
902
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Verified_Email"] = 21] = "Verified_Email";
|
903
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Verified_Mobile"] = 22] = "Verified_Mobile";
|
904
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Secondary_Email"] = 23] = "Secondary_Email";
|
905
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Identification_Number"] = 24] = "Identification_Number";
|
906
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Postal_Code"] = 25] = "Postal_Code";
|
907
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["DOB"] = 26] = "DOB";
|
908
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Device_Fingerprint"] = 27] = "Device_Fingerprint";
|
909
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Device_Unique_ID"] = 28] = "Device_Unique_ID";
|
910
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Username"] = 29] = "Username";
|
911
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Three_D_Secure_Code"] = 30] = "Three_D_Secure_Code";
|
912
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Program_Token"] = 31] = "Program_Token";
|
913
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["User_Token"] = 32] = "User_Token";
|
914
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["POS_Token"] = 33] = "POS_Token";
|
915
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Limited_Token"] = 34] = "Limited_Token";
|
916
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Message_Encryption_Key"] = 35] = "Message_Encryption_Key";
|
917
|
+
SecurityAuthenticationTypes[SecurityAuthenticationTypes["Mada_Payment_Auth_Code"] = 36] = "Mada_Payment_Auth_Code";
|
918
|
+
})(SecurityAuthenticationTypes || (SecurityAuthenticationTypes = {}));
|
919
|
+
var SecurityLoginType;
|
920
|
+
(function (SecurityLoginType) {
|
921
|
+
SecurityLoginType[SecurityLoginType["Undefined"] = -1] = "Undefined";
|
922
|
+
SecurityLoginType[SecurityLoginType["System"] = 1] = "System";
|
923
|
+
SecurityLoginType[SecurityLoginType["Facebook"] = 2] = "Facebook";
|
924
|
+
SecurityLoginType[SecurityLoginType["Google"] = 3] = "Google";
|
925
|
+
SecurityLoginType[SecurityLoginType["SwedishBankID"] = 4] = "SwedishBankID";
|
926
|
+
SecurityLoginType[SecurityLoginType["PIN_Code"] = 5] = "PIN_Code";
|
927
|
+
})(SecurityLoginType || (SecurityLoginType = {}));
|
928
|
+
var SecurityOperationMethod;
|
929
|
+
(function (SecurityOperationMethod) {
|
930
|
+
SecurityOperationMethod[SecurityOperationMethod["Undefined"] = -1] = "Undefined";
|
931
|
+
SecurityOperationMethod[SecurityOperationMethod["Email_Link"] = 1] = "Email_Link";
|
932
|
+
SecurityOperationMethod[SecurityOperationMethod["Email_Code"] = 2] = "Email_Code";
|
933
|
+
SecurityOperationMethod[SecurityOperationMethod["SMS_Code"] = 3] = "SMS_Code";
|
934
|
+
SecurityOperationMethod[SecurityOperationMethod["Insert"] = 4] = "Insert";
|
935
|
+
SecurityOperationMethod[SecurityOperationMethod["Update"] = 5] = "Update";
|
936
|
+
SecurityOperationMethod[SecurityOperationMethod["Delete"] = 6] = "Delete";
|
937
|
+
SecurityOperationMethod[SecurityOperationMethod["Access"] = 7] = "Access";
|
938
|
+
SecurityOperationMethod[SecurityOperationMethod["Get_Data"] = 8] = "Get_Data";
|
939
|
+
SecurityOperationMethod[SecurityOperationMethod["Login"] = 9] = "Login";
|
940
|
+
SecurityOperationMethod[SecurityOperationMethod["Bulk"] = 10] = "Bulk";
|
941
|
+
SecurityOperationMethod[SecurityOperationMethod["OTP_Email"] = 11] = "OTP_Email";
|
942
|
+
SecurityOperationMethod[SecurityOperationMethod["OTP_SMS"] = 12] = "OTP_SMS";
|
943
|
+
SecurityOperationMethod[SecurityOperationMethod["Logout"] = 13] = "Logout";
|
944
|
+
})(SecurityOperationMethod || (SecurityOperationMethod = {}));
|
945
|
+
var SecurityQuestion1;
|
946
|
+
(function (SecurityQuestion1) {
|
947
|
+
SecurityQuestion1[SecurityQuestion1["Mothers_Maiden_Name"] = 1] = "Mothers_Maiden_Name";
|
948
|
+
SecurityQuestion1[SecurityQuestion1["Last_4_Characters_Of_Drivers_License"] = 2] = "Last_4_Characters_Of_Drivers_License";
|
949
|
+
SecurityQuestion1[SecurityQuestion1["City_Of_Birth"] = 3] = "City_Of_Birth";
|
950
|
+
SecurityQuestion1[SecurityQuestion1["Fathers_City_Of_Birth"] = 4] = "Fathers_City_Of_Birth";
|
951
|
+
SecurityQuestion1[SecurityQuestion1["Mothers_City_Of_Birth"] = 5] = "Mothers_City_Of_Birth";
|
952
|
+
SecurityQuestion1[SecurityQuestion1["Who_Is_My_Favourite_Author"] = 6] = "Who_Is_My_Favourite_Author";
|
953
|
+
SecurityQuestion1[SecurityQuestion1["What_Is_My_Favourite_Movie"] = 7] = "What_Is_My_Favourite_Movie";
|
954
|
+
SecurityQuestion1[SecurityQuestion1["Who_Was_My_Best_Friend_On_The_First_Day_Of_School"] = 8] = "Who_Was_My_Best_Friend_On_The_First_Day_Of_School";
|
955
|
+
SecurityQuestion1[SecurityQuestion1["What_Was_The_Name_Of_My_Favourite_High_School_Teacher"] = 9] = "What_Was_The_Name_Of_My_Favourite_High_School_Teacher";
|
956
|
+
SecurityQuestion1[SecurityQuestion1["What_Is_My_Hobby"] = 10] = "What_Is_My_Hobby";
|
957
|
+
SecurityQuestion1[SecurityQuestion1["My_Favourite_Food"] = 11] = "My_Favourite_Food";
|
958
|
+
SecurityQuestion1[SecurityQuestion1["My_Favourite_Book"] = 12] = "My_Favourite_Book";
|
959
|
+
SecurityQuestion1[SecurityQuestion1["My_Favourite_Restaurant"] = 13] = "My_Favourite_Restaurant";
|
960
|
+
})(SecurityQuestion1 || (SecurityQuestion1 = {}));
|
961
|
+
var SecurityQuestion2;
|
962
|
+
(function (SecurityQuestion2) {
|
963
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Candy"] = 1] = "What_Is_My_Favourite_Candy";
|
964
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Song"] = 2] = "What_Is_My_Favourite_Song";
|
965
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Band"] = 3] = "What_Is_My_Favourite_Band";
|
966
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Dessert"] = 4] = "What_Is_My_Favourite_Dessert";
|
967
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_TV_Show"] = 5] = "What_Is_My_Favourite_TV_Show";
|
968
|
+
SecurityQuestion2[SecurityQuestion2["What_Was_My_First_Pets_Name"] = 6] = "What_Was_My_First_Pets_Name";
|
969
|
+
SecurityQuestion2[SecurityQuestion2["Who_Is_My_Favourite_Teacher"] = 7] = "Who_Is_My_Favourite_Teacher";
|
970
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Colour"] = 8] = "What_Is_My_Favourite_Colour";
|
971
|
+
SecurityQuestion2[SecurityQuestion2["Where_Do_I_Want_To_Retire"] = 9] = "Where_Do_I_Want_To_Retire";
|
972
|
+
SecurityQuestion2[SecurityQuestion2["Where_Was_My_First_Job"] = 10] = "Where_Was_My_First_Job";
|
973
|
+
SecurityQuestion2[SecurityQuestion2["What_Sport_Am_I_Best_At"] = 11] = "What_Sport_Am_I_Best_At";
|
974
|
+
SecurityQuestion2[SecurityQuestion2["What_Was_My_Grandmothers_Given_Name"] = 12] = "What_Was_My_Grandmothers_Given_Name";
|
975
|
+
SecurityQuestion2[SecurityQuestion2["Who_Was_The_Best_Man_At_My_Wedding"] = 13] = "Who_Was_The_Best_Man_At_My_Wedding";
|
976
|
+
SecurityQuestion2[SecurityQuestion2["Who_Was_The_Maid_Of_Honor_At_My_Wedding"] = 14] = "Who_Was_The_Maid_Of_Honor_At_My_Wedding";
|
977
|
+
SecurityQuestion2[SecurityQuestion2["Name_Of_City_Where_My_Father_Was_Born"] = 15] = "Name_Of_City_Where_My_Father_Was_Born";
|
978
|
+
SecurityQuestion2[SecurityQuestion2["What_Is_My_Favourite_Vacation_Spot"] = 16] = "What_Is_My_Favourite_Vacation_Spot";
|
979
|
+
SecurityQuestion2[SecurityQuestion2["What_Was_My_Nickname_In_Grade_School"] = 17] = "What_Was_My_Nickname_In_Grade_School";
|
980
|
+
SecurityQuestion2[SecurityQuestion2["What_Was_The_Make_Of_My_First_Car"] = 18] = "What_Was_The_Make_Of_My_First_Car";
|
981
|
+
})(SecurityQuestion2 || (SecurityQuestion2 = {}));
|
982
|
+
var SecurityValidationActionType;
|
983
|
+
(function (SecurityValidationActionType) {
|
984
|
+
SecurityValidationActionType[SecurityValidationActionType["Allow_And_Send_Notification"] = 0] = "Allow_And_Send_Notification";
|
985
|
+
SecurityValidationActionType[SecurityValidationActionType["Disallow"] = 1] = "Disallow";
|
986
|
+
SecurityValidationActionType[SecurityValidationActionType["No_Action"] = 2] = "No_Action";
|
987
|
+
})(SecurityValidationActionType || (SecurityValidationActionType = {}));
|
988
|
+
var SecurityValidationStatus;
|
989
|
+
(function (SecurityValidationStatus) {
|
990
|
+
SecurityValidationStatus[SecurityValidationStatus["Unknown"] = 0] = "Unknown";
|
991
|
+
SecurityValidationStatus[SecurityValidationStatus["Pending"] = 1] = "Pending";
|
992
|
+
SecurityValidationStatus[SecurityValidationStatus["Completed"] = 2] = "Completed";
|
993
|
+
SecurityValidationStatus[SecurityValidationStatus["Error_Occurred"] = 3] = "Error_Occurred";
|
994
|
+
SecurityValidationStatus[SecurityValidationStatus["Pending_Review"] = 4] = "Pending_Review";
|
995
|
+
SecurityValidationStatus[SecurityValidationStatus["Review_Completed"] = 5] = "Review_Completed";
|
996
|
+
SecurityValidationStatus[SecurityValidationStatus["Validation_Failed"] = 6] = "Validation_Failed";
|
997
|
+
SecurityValidationStatus[SecurityValidationStatus["Reset"] = 7] = "Reset";
|
998
|
+
})(SecurityValidationStatus || (SecurityValidationStatus = {}));
|
999
|
+
var SecurityValidationType;
|
1000
|
+
(function (SecurityValidationType) {
|
1001
|
+
SecurityValidationType[SecurityValidationType["Undefined"] = -1] = "Undefined";
|
1002
|
+
SecurityValidationType[SecurityValidationType["FraudSystem"] = 1] = "FraudSystem";
|
1003
|
+
SecurityValidationType[SecurityValidationType["Lyons_OFAC"] = 2] = "Lyons_OFAC";
|
1004
|
+
SecurityValidationType[SecurityValidationType["PEP_And_Sanctions"] = 3] = "PEP_And_Sanctions";
|
1005
|
+
SecurityValidationType[SecurityValidationType["Maxmind_Geo_IP"] = 4] = "Maxmind_Geo_IP";
|
1006
|
+
SecurityValidationType[SecurityValidationType["Credit_Card_Validation"] = 5] = "Credit_Card_Validation";
|
1007
|
+
SecurityValidationType[SecurityValidationType["IP_Access_Rules"] = 6] = "IP_Access_Rules";
|
1008
|
+
SecurityValidationType[SecurityValidationType["Interchange_Access_Rules"] = 7] = "Interchange_Access_Rules";
|
1009
|
+
SecurityValidationType[SecurityValidationType["Email"] = 8] = "Email";
|
1010
|
+
SecurityValidationType[SecurityValidationType["Phone"] = 9] = "Phone";
|
1011
|
+
SecurityValidationType[SecurityValidationType["Password"] = 10] = "Password";
|
1012
|
+
SecurityValidationType[SecurityValidationType["Security_Code"] = 11] = "Security_Code";
|
1013
|
+
SecurityValidationType[SecurityValidationType["Date_Of_Birth"] = 12] = "Date_Of_Birth";
|
1014
|
+
SecurityValidationType[SecurityValidationType["Security_Answers"] = 13] = "Security_Answers";
|
1015
|
+
SecurityValidationType[SecurityValidationType["Lyons_ATM"] = 14] = "Lyons_ATM";
|
1016
|
+
SecurityValidationType[SecurityValidationType["Lyons_ABA_Express"] = 15] = "Lyons_ABA_Express";
|
1017
|
+
SecurityValidationType[SecurityValidationType["Lyons_SSN"] = 16] = "Lyons_SSN";
|
1018
|
+
SecurityValidationType[SecurityValidationType["Lyons_Full_Banks"] = 17] = "Lyons_Full_Banks";
|
1019
|
+
SecurityValidationType[SecurityValidationType["FourStop_Customer_Registration"] = 18] = "FourStop_Customer_Registration";
|
1020
|
+
SecurityValidationType[SecurityValidationType["FourStop_Perform_Transaction"] = 19] = "FourStop_Perform_Transaction";
|
1021
|
+
SecurityValidationType[SecurityValidationType["Maxmind_Minfraud"] = 20] = "Maxmind_Minfraud";
|
1022
|
+
SecurityValidationType[SecurityValidationType["Strikeiron_USA_Address"] = 21] = "Strikeiron_USA_Address";
|
1023
|
+
SecurityValidationType[SecurityValidationType["Strikeiron_Canada_Address"] = 22] = "Strikeiron_Canada_Address";
|
1024
|
+
SecurityValidationType[SecurityValidationType["Strikeiron_Global_Address"] = 23] = "Strikeiron_Global_Address";
|
1025
|
+
SecurityValidationType[SecurityValidationType["FourStop_ID_Verification"] = 24] = "FourStop_ID_Verification";
|
1026
|
+
SecurityValidationType[SecurityValidationType["ShuftiPro_Face_Verification"] = 25] = "ShuftiPro_Face_Verification";
|
1027
|
+
SecurityValidationType[SecurityValidationType["ShuftiPro_Document_Verification"] = 26] = "ShuftiPro_Document_Verification";
|
1028
|
+
SecurityValidationType[SecurityValidationType["ShuftiPro_Bureau_Check_Verification"] = 27] = "ShuftiPro_Bureau_Check_Verification";
|
1029
|
+
SecurityValidationType[SecurityValidationType["ShuftiPro_Address_Verification"] = 29] = "ShuftiPro_Address_Verification";
|
1030
|
+
SecurityValidationType[SecurityValidationType["ComplyCube_Face_Verification"] = 32] = "ComplyCube_Face_Verification";
|
1031
|
+
SecurityValidationType[SecurityValidationType["ComplyCube_Address_Verification"] = 34] = "ComplyCube_Address_Verification";
|
1032
|
+
SecurityValidationType[SecurityValidationType["ComplyCube_Client_Registration_Verification"] = 36] = "ComplyCube_Client_Registration_Verification";
|
1033
|
+
SecurityValidationType[SecurityValidationType["ComplyCube_Bureau_Check_Verification"] = 37] = "ComplyCube_Bureau_Check_Verification";
|
1034
|
+
SecurityValidationType[SecurityValidationType["ComplyCube_Proof_Of_Address_Check_Verification"] = 38] = "ComplyCube_Proof_Of_Address_Check_Verification";
|
1035
|
+
SecurityValidationType[SecurityValidationType["ShuftiPro_Offsite_Electronic_Identity_Verification"] = 42] = "ShuftiPro_Offsite_Electronic_Identity_Verification";
|
1036
|
+
SecurityValidationType[SecurityValidationType["ShuftiPro_Onsite_Electronic_Identity_Verification"] = 43] = "ShuftiPro_Onsite_Electronic_Identity_Verification";
|
1037
|
+
})(SecurityValidationType || (SecurityValidationType = {}));
|
1038
|
+
var ServiceProvider;
|
1039
|
+
(function (ServiceProvider) {
|
1040
|
+
ServiceProvider[ServiceProvider["Undefined"] = -1] = "Undefined";
|
1041
|
+
ServiceProvider[ServiceProvider["System"] = 0] = "System";
|
1042
|
+
ServiceProvider[ServiceProvider["IdentityMind"] = 1] = "IdentityMind";
|
1043
|
+
ServiceProvider[ServiceProvider["Maxmind"] = 2] = "Maxmind";
|
1044
|
+
ServiceProvider[ServiceProvider["Lyons"] = 3] = "Lyons";
|
1045
|
+
ServiceProvider[ServiceProvider["Stripe"] = 4] = "Stripe";
|
1046
|
+
ServiceProvider[ServiceProvider["Strikeiron"] = 5] = "Strikeiron";
|
1047
|
+
ServiceProvider[ServiceProvider["Equifax"] = 6] = "Equifax";
|
1048
|
+
ServiceProvider[ServiceProvider["URU"] = 7] = "URU";
|
1049
|
+
ServiceProvider[ServiceProvider["Mastercard"] = 8] = "Mastercard";
|
1050
|
+
ServiceProvider[ServiceProvider["DowJones"] = 9] = "DowJones";
|
1051
|
+
ServiceProvider[ServiceProvider["UniFonic"] = 10] = "UniFonic";
|
1052
|
+
ServiceProvider[ServiceProvider["ClickaTell"] = 11] = "ClickaTell";
|
1053
|
+
ServiceProvider[ServiceProvider["SMTPMail"] = 12] = "SMTPMail";
|
1054
|
+
ServiceProvider[ServiceProvider["AppCenter"] = 13] = "AppCenter";
|
1055
|
+
ServiceProvider[ServiceProvider["eFAWATEERcom"] = 16] = "eFAWATEERcom";
|
1056
|
+
ServiceProvider[ServiceProvider["Fortnox"] = 17] = "Fortnox";
|
1057
|
+
ServiceProvider[ServiceProvider["HyperPay"] = 18] = "HyperPay";
|
1058
|
+
ServiceProvider[ServiceProvider["FourStop"] = 20] = "FourStop";
|
1059
|
+
ServiceProvider[ServiceProvider["Qvitoo"] = 21] = "Qvitoo";
|
1060
|
+
ServiceProvider[ServiceProvider["STC"] = 22] = "STC";
|
1061
|
+
ServiceProvider[ServiceProvider["PaySafe"] = 23] = "PaySafe";
|
1062
|
+
ServiceProvider[ServiceProvider["Ding"] = 24] = "Ding";
|
1063
|
+
ServiceProvider[ServiceProvider["TransferTo"] = 25] = "TransferTo";
|
1064
|
+
ServiceProvider[ServiceProvider["CashU"] = 26] = "CashU";
|
1065
|
+
ServiceProvider[ServiceProvider["JCLottery"] = 27] = "JCLottery";
|
1066
|
+
ServiceProvider[ServiceProvider["Banking_Circle"] = 28] = "Banking_Circle";
|
1067
|
+
ServiceProvider[ServiceProvider["ExternalHost"] = 29] = "ExternalHost";
|
1068
|
+
ServiceProvider[ServiceProvider["Service_Fee"] = 30] = "Service_Fee";
|
1069
|
+
ServiceProvider[ServiceProvider["EPay"] = 31] = "EPay";
|
1070
|
+
ServiceProvider[ServiceProvider["Firebase"] = 32] = "Firebase";
|
1071
|
+
ServiceProvider[ServiceProvider["Mastercard_Currency_Rate"] = 33] = "Mastercard_Currency_Rate";
|
1072
|
+
ServiceProvider[ServiceProvider["ECB_Currency_Rate"] = 34] = "ECB_Currency_Rate";
|
1073
|
+
ServiceProvider[ServiceProvider["XE_Currency_Rate"] = 35] = "XE_Currency_Rate";
|
1074
|
+
ServiceProvider[ServiceProvider["Azure_Notification_Hubs"] = 36] = "Azure_Notification_Hubs";
|
1075
|
+
ServiceProvider[ServiceProvider["OpenPayd"] = 37] = "OpenPayd";
|
1076
|
+
ServiceProvider[ServiceProvider["Webhook"] = 38] = "Webhook";
|
1077
|
+
ServiceProvider[ServiceProvider["Google"] = 39] = "Google";
|
1078
|
+
ServiceProvider[ServiceProvider["Amazon"] = 40] = "Amazon";
|
1079
|
+
ServiceProvider[ServiceProvider["Twilio"] = 41] = "Twilio";
|
1080
|
+
ServiceProvider[ServiceProvider["Peoples"] = 42] = "Peoples";
|
1081
|
+
ServiceProvider[ServiceProvider["CurrencyCloud"] = 43] = "CurrencyCloud";
|
1082
|
+
ServiceProvider[ServiceProvider["Fawry"] = 44] = "Fawry";
|
1083
|
+
ServiceProvider[ServiceProvider["G2A"] = 45] = "G2A";
|
1084
|
+
ServiceProvider[ServiceProvider["SNB"] = 46] = "SNB";
|
1085
|
+
ServiceProvider[ServiceProvider["Hala"] = 47] = "Hala";
|
1086
|
+
ServiceProvider[ServiceProvider["Google_Cloud_Realtime"] = 48] = "Google_Cloud_Realtime";
|
1087
|
+
ServiceProvider[ServiceProvider["ANB"] = 49] = "ANB";
|
1088
|
+
ServiceProvider[ServiceProvider["Binance"] = 50] = "Binance";
|
1089
|
+
ServiceProvider[ServiceProvider["Coinify"] = 51] = "Coinify";
|
1090
|
+
ServiceProvider[ServiceProvider["FSS"] = 52] = "FSS";
|
1091
|
+
ServiceProvider[ServiceProvider["Zatca"] = 53] = "Zatca";
|
1092
|
+
ServiceProvider[ServiceProvider["Mada"] = 54] = "Mada";
|
1093
|
+
ServiceProvider[ServiceProvider["ShuftiPro"] = 55] = "ShuftiPro";
|
1094
|
+
ServiceProvider[ServiceProvider["ComplyCube"] = 56] = "ComplyCube";
|
1095
|
+
})(ServiceProvider || (ServiceProvider = {}));
|
1096
|
+
var SettlementTransactionType;
|
1097
|
+
(function (SettlementTransactionType) {
|
1098
|
+
SettlementTransactionType[SettlementTransactionType["Debit"] = 0] = "Debit";
|
1099
|
+
SettlementTransactionType[SettlementTransactionType["Credit"] = 1] = "Credit";
|
1100
|
+
})(SettlementTransactionType || (SettlementTransactionType = {}));
|
1103
1101
|
var SourceApp;
|
1104
1102
|
(function (SourceApp) {
|
1105
1103
|
SourceApp[SourceApp["Undefined"] = -1] = "Undefined";
|
@@ -1128,31 +1126,55 @@ var SourceApp;
|
|
1128
1126
|
SourceApp[SourceApp["GGEZ_API"] = 22] = "GGEZ_API";
|
1129
1127
|
SourceApp[SourceApp["Node_API"] = 23] = "Node_API";
|
1130
1128
|
SourceApp[SourceApp["Block_Explore"] = 24] = "Block_Explore";
|
1131
|
-
})(SourceApp || (
|
1132
|
-
var
|
1133
|
-
(function (
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1129
|
+
})(SourceApp || (SourceApp = {}));
|
1130
|
+
var TicketCategory;
|
1131
|
+
(function (TicketCategory) {
|
1132
|
+
TicketCategory[TicketCategory["Undefined"] = -1] = "Undefined";
|
1133
|
+
TicketCategory[TicketCategory["None"] = 0] = "None";
|
1134
|
+
TicketCategory[TicketCategory["Billing"] = 1] = "Billing";
|
1135
|
+
TicketCategory[TicketCategory["KYC"] = 2] = "KYC";
|
1136
|
+
TicketCategory[TicketCategory["Transaction"] = 3] = "Transaction";
|
1137
|
+
TicketCategory[TicketCategory["System_Maintenance"] = 4] = "System_Maintenance";
|
1138
|
+
TicketCategory[TicketCategory["KYB"] = 5] = "KYB";
|
1139
|
+
TicketCategory[TicketCategory["Transaction_Monitoring"] = 6] = "Transaction_Monitoring";
|
1140
|
+
TicketCategory[TicketCategory["High_Risk"] = 7] = "High_Risk";
|
1141
|
+
TicketCategory[TicketCategory["Cross_Border_Details"] = 8] = "Cross_Border_Details";
|
1142
|
+
TicketCategory[TicketCategory["Cross_Border"] = 9] = "Cross_Border";
|
1143
|
+
TicketCategory[TicketCategory["Purchase_Return"] = 10] = "Purchase_Return";
|
1144
|
+
TicketCategory[TicketCategory["Fraud"] = 11] = "Fraud";
|
1145
|
+
TicketCategory[TicketCategory["Change_Of_Trust_Level"] = 12] = "Change_Of_Trust_Level";
|
1146
|
+
TicketCategory[TicketCategory["Credit_Limit_Account"] = 13] = "Credit_Limit_Account";
|
1147
|
+
TicketCategory[TicketCategory["High_Frequency"] = 14] = "High_Frequency";
|
1148
|
+
TicketCategory[TicketCategory["High_Value"] = 15] = "High_Value";
|
1149
|
+
TicketCategory[TicketCategory["Number_Of_Users_Withdrawing"] = 16] = "Number_Of_Users_Withdrawing";
|
1150
|
+
TicketCategory[TicketCategory["Rounded_Off"] = 17] = "Rounded_Off";
|
1151
|
+
TicketCategory[TicketCategory["Account_Holder_Name_Not_Matched_With_Beneficiary_Name"] = 18] = "Account_Holder_Name_Not_Matched_With_Beneficiary_Name";
|
1152
|
+
TicketCategory[TicketCategory["Approve_TX_Without_Security_Data"] = 19] = "Approve_TX_Without_Security_Data";
|
1153
|
+
TicketCategory[TicketCategory["Art_Dealers_Or_Galleries"] = 20] = "Art_Dealers_Or_Galleries";
|
1154
|
+
TicketCategory[TicketCategory["High_Value_Details"] = 21] = "High_Value_Details";
|
1155
|
+
})(TicketCategory || (TicketCategory = {}));
|
1156
|
+
var TicketType;
|
1157
|
+
(function (TicketType) {
|
1158
|
+
TicketType[TicketType["Undefined"] = -1] = "Undefined";
|
1159
|
+
TicketType[TicketType["None"] = 0] = "None";
|
1160
|
+
TicketType[TicketType["Ticket"] = 1] = "Ticket";
|
1161
|
+
TicketType[TicketType["Note"] = 2] = "Note";
|
1162
|
+
})(TicketType || (TicketType = {}));
|
1163
|
+
var Titles;
|
1164
|
+
(function (Titles) {
|
1165
|
+
Titles[Titles["Undefined"] = 0] = "Undefined";
|
1166
|
+
Titles[Titles["Mr"] = 1] = "Mr";
|
1167
|
+
Titles[Titles["Mrs"] = 2] = "Mrs";
|
1168
|
+
Titles[Titles["Ms"] = 3] = "Ms";
|
1169
|
+
Titles[Titles["Miss"] = 4] = "Miss";
|
1170
|
+
Titles[Titles["Dr"] = 5] = "Dr";
|
1171
|
+
Titles[Titles["Prof"] = 6] = "Prof";
|
1172
|
+
Titles[Titles["Lord"] = 7] = "Lord";
|
1173
|
+
Titles[Titles["Lady"] = 8] = "Lady";
|
1174
|
+
Titles[Titles["Baroness"] = 9] = "Baroness";
|
1175
|
+
Titles[Titles["Sir"] = 10] = "Sir";
|
1176
|
+
Titles[Titles["Dame"] = 11] = "Dame";
|
1177
|
+
})(Titles || (Titles = {}));
|
1156
1178
|
var TransactionClassification;
|
1157
1179
|
(function (TransactionClassification) {
|
1158
1180
|
TransactionClassification[TransactionClassification["Undefined"] = -1] = "Undefined";
|
@@ -1166,90 +1188,216 @@ var TransactionClassification;
|
|
1166
1188
|
TransactionClassification[TransactionClassification["TransactionFee"] = 7] = "TransactionFee";
|
1167
1189
|
TransactionClassification[TransactionClassification["ServiceFee"] = 8] = "ServiceFee";
|
1168
1190
|
TransactionClassification[TransactionClassification["FeeReversal"] = 9] = "FeeReversal";
|
1169
|
-
})(TransactionClassification || (
|
1170
|
-
var
|
1171
|
-
(function (
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
})(
|
1178
|
-
var
|
1179
|
-
(function (
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1191
|
+
})(TransactionClassification || (TransactionClassification = {}));
|
1192
|
+
var TransactionInquiryStatus;
|
1193
|
+
(function (TransactionInquiryStatus) {
|
1194
|
+
TransactionInquiryStatus[TransactionInquiryStatus["All"] = -1] = "All";
|
1195
|
+
TransactionInquiryStatus[TransactionInquiryStatus["Posted"] = 0] = "Posted";
|
1196
|
+
TransactionInquiryStatus[TransactionInquiryStatus["Pending"] = 1] = "Pending";
|
1197
|
+
TransactionInquiryStatus[TransactionInquiryStatus["Declined"] = 2] = "Declined";
|
1198
|
+
TransactionInquiryStatus[TransactionInquiryStatus["Canceled"] = 3] = "Canceled";
|
1199
|
+
})(TransactionInquiryStatus || (TransactionInquiryStatus = {}));
|
1200
|
+
var TransactionRequestStatus;
|
1201
|
+
(function (TransactionRequestStatus) {
|
1202
|
+
TransactionRequestStatus[TransactionRequestStatus["Undefined"] = 0] = "Undefined";
|
1203
|
+
TransactionRequestStatus[TransactionRequestStatus["Pending"] = 1] = "Pending";
|
1204
|
+
TransactionRequestStatus[TransactionRequestStatus["Processed"] = 2] = "Processed";
|
1205
|
+
TransactionRequestStatus[TransactionRequestStatus["Cleared"] = 3] = "Cleared";
|
1206
|
+
TransactionRequestStatus[TransactionRequestStatus["Canceled"] = 4] = "Canceled";
|
1207
|
+
TransactionRequestStatus[TransactionRequestStatus["Reversed"] = 5] = "Reversed";
|
1208
|
+
TransactionRequestStatus[TransactionRequestStatus["Failed"] = 6] = "Failed";
|
1209
|
+
TransactionRequestStatus[TransactionRequestStatus["Blocked"] = 7] = "Blocked";
|
1210
|
+
TransactionRequestStatus[TransactionRequestStatus["Declined"] = 8] = "Declined";
|
1211
|
+
TransactionRequestStatus[TransactionRequestStatus["Network_Canceled"] = 9] = "Network_Canceled";
|
1212
|
+
TransactionRequestStatus[TransactionRequestStatus["Pending_Processing"] = 10] = "Pending_Processing";
|
1213
|
+
TransactionRequestStatus[TransactionRequestStatus["Pending_Reversal"] = 11] = "Pending_Reversal";
|
1214
|
+
TransactionRequestStatus[TransactionRequestStatus["Pending_Cancellation"] = 12] = "Pending_Cancellation";
|
1215
|
+
TransactionRequestStatus[TransactionRequestStatus["Manual_Review"] = 13] = "Manual_Review";
|
1216
|
+
TransactionRequestStatus[TransactionRequestStatus["Critical"] = 14] = "Critical";
|
1217
|
+
TransactionRequestStatus[TransactionRequestStatus["Problem"] = 15] = "Problem";
|
1218
|
+
})(TransactionRequestStatus || (TransactionRequestStatus = {}));
|
1219
|
+
var TransactionType;
|
1220
|
+
(function (TransactionType) {
|
1221
|
+
TransactionType[TransactionType["Undefined"] = -1] = "Undefined";
|
1222
|
+
// Interchange Transactions
|
1223
|
+
TransactionType[TransactionType["Interchange_Cash_Withdrawal"] = 46] = "Interchange_Cash_Withdrawal";
|
1224
|
+
TransactionType[TransactionType["Interchange_Cash_Withdrawal_Fee"] = 47] = "Interchange_Cash_Withdrawal_Fee";
|
1225
|
+
TransactionType[TransactionType["Interchange_Cash_Withdrawal_ATM"] = 3] = "Interchange_Cash_Withdrawal_ATM";
|
1226
|
+
TransactionType[TransactionType["Interchange_Cash_Withdrawal_ATM_Fee"] = 10] = "Interchange_Cash_Withdrawal_ATM_Fee";
|
1227
|
+
TransactionType[TransactionType["Interchange_Purchase"] = 48] = "Interchange_Purchase";
|
1228
|
+
TransactionType[TransactionType["Interchange_Purchase_Fee"] = 49] = "Interchange_Purchase_Fee";
|
1229
|
+
TransactionType[TransactionType["Interchange_Purchase_POS"] = 4] = "Interchange_Purchase_POS";
|
1230
|
+
TransactionType[TransactionType["Interchange_Purchase_POS_Fee"] = 9] = "Interchange_Purchase_POS_Fee";
|
1231
|
+
TransactionType[TransactionType["Interchange_Purchase_Credit_Adjustment"] = 26] = "Interchange_Purchase_Credit_Adjustment";
|
1232
|
+
TransactionType[TransactionType["Interchange_Purchase_Credit_Adjustment_Fee"] = 27] = "Interchange_Purchase_Credit_Adjustment_Fee";
|
1233
|
+
TransactionType[TransactionType["Interchange_Purchase_Return"] = 30] = "Interchange_Purchase_Return";
|
1234
|
+
TransactionType[TransactionType["Interchange_Purchase_Return_Fee"] = 31] = "Interchange_Purchase_Return_Fee";
|
1235
|
+
TransactionType[TransactionType["Interchange_Purchase_Cashback"] = 142] = "Interchange_Purchase_Cashback";
|
1236
|
+
TransactionType[TransactionType["Interchange_Purchase_Cashback_Fee"] = 143] = "Interchange_Purchase_Cashback_Fee";
|
1237
|
+
TransactionType[TransactionType["Interchange_Purchase_Internet"] = 38] = "Interchange_Purchase_Internet";
|
1238
|
+
TransactionType[TransactionType["Interchange_Purchase_Internet_Fee"] = 39] = "Interchange_Purchase_Internet_Fee";
|
1239
|
+
TransactionType[TransactionType["Interchange_Cash_Disbursement"] = 150] = "Interchange_Cash_Disbursement";
|
1240
|
+
TransactionType[TransactionType["Interchange_Cash_Disbursement_Fee"] = 151] = "Interchange_Cash_Disbursement_Fee";
|
1241
|
+
TransactionType[TransactionType["Interchange_Merchant_Payment"] = 200] = "Interchange_Merchant_Payment";
|
1242
|
+
TransactionType[TransactionType["Interchange_Merchant_Payment_Fee"] = 201] = "Interchange_Merchant_Payment_Fee";
|
1243
|
+
TransactionType[TransactionType["Interchange_Charge_Back"] = 202] = "Interchange_Charge_Back";
|
1244
|
+
TransactionType[TransactionType["Interchange_Charge_Back_Fee"] = 203] = "Interchange_Charge_Back_Fee";
|
1245
|
+
TransactionType[TransactionType["Interchange_Payment"] = 212] = "Interchange_Payment";
|
1246
|
+
TransactionType[TransactionType["Interchange_Payment_Fee"] = 213] = "Interchange_Payment_Fee";
|
1247
|
+
TransactionType[TransactionType["Interchange_Balance_Inquiry"] = 216] = "Interchange_Balance_Inquiry";
|
1248
|
+
TransactionType[TransactionType["Interchange_Balance_Inquiry_Fee"] = 217] = "Interchange_Balance_Inquiry_Fee";
|
1249
|
+
// System Transactions
|
1250
|
+
TransactionType[TransactionType["System_Deposit_Merchant"] = 32] = "System_Deposit_Merchant";
|
1251
|
+
TransactionType[TransactionType["System_Deposit_Merchant_Fee"] = 33] = "System_Deposit_Merchant_Fee";
|
1252
|
+
TransactionType[TransactionType["System_Withdrawal_Merchant"] = 34] = "System_Withdrawal_Merchant";
|
1253
|
+
TransactionType[TransactionType["System_Withdrawal_Merchant_Fee"] = 35] = "System_Withdrawal_Merchant_Fee";
|
1254
|
+
TransactionType[TransactionType["System_Transaction_Reversal"] = 13] = "System_Transaction_Reversal";
|
1255
|
+
TransactionType[TransactionType["System_Bank_Account_Load"] = 14] = "System_Bank_Account_Load";
|
1256
|
+
TransactionType[TransactionType["System_Bank_Account_Load_Fee"] = 15] = "System_Bank_Account_Load_Fee";
|
1257
|
+
TransactionType[TransactionType["System_Bank_Account_Withdrawal"] = 16] = "System_Bank_Account_Withdrawal";
|
1258
|
+
TransactionType[TransactionType["System_Bank_Account_Withdrawal_Fee"] = 17] = "System_Bank_Account_Withdrawal_Fee";
|
1259
|
+
TransactionType[TransactionType["System_Wire_Load"] = 18] = "System_Wire_Load";
|
1260
|
+
TransactionType[TransactionType["System_Wire_Load_Fee"] = 19] = "System_Wire_Load_Fee";
|
1261
|
+
TransactionType[TransactionType["System_Wire_Withdrawal"] = 20] = "System_Wire_Withdrawal";
|
1262
|
+
TransactionType[TransactionType["System_Wire_Withdrawal_Fee"] = 21] = "System_Wire_Withdrawal_Fee";
|
1263
|
+
TransactionType[TransactionType["System_Check_Load"] = 22] = "System_Check_Load";
|
1264
|
+
TransactionType[TransactionType["System_Check_Load_Fee"] = 23] = "System_Check_Load_Fee";
|
1265
|
+
TransactionType[TransactionType["System_Check_Withdrawal"] = 24] = "System_Check_Withdrawal";
|
1266
|
+
TransactionType[TransactionType["System_Check_Withdrawal_Fee"] = 25] = "System_Check_Withdrawal_Fee";
|
1267
|
+
TransactionType[TransactionType["System_Manual_Load"] = 84] = "System_Manual_Load";
|
1268
|
+
TransactionType[TransactionType["System_Manual_Load_Fee"] = 85] = "System_Manual_Load_Fee";
|
1269
|
+
TransactionType[TransactionType["System_Manual_Withdrawal"] = 86] = "System_Manual_Withdrawal";
|
1270
|
+
TransactionType[TransactionType["System_Manual_Withdrawal_Fee"] = 87] = "System_Manual_Withdrawal_Fee";
|
1271
|
+
TransactionType[TransactionType["System_Payment_Received"] = 88] = "System_Payment_Received";
|
1272
|
+
TransactionType[TransactionType["System_Payment_Received_Fee"] = 89] = "System_Payment_Received_Fee";
|
1273
|
+
TransactionType[TransactionType["System_Generic_Transfer_Send"] = 220] = "System_Generic_Transfer_Send";
|
1274
|
+
TransactionType[TransactionType["System_Generic_Transfer_Send_Fee"] = 221] = "System_Generic_Transfer_Send_Fee";
|
1275
|
+
TransactionType[TransactionType["System_Generic_Transfer_Receive"] = 222] = "System_Generic_Transfer_Receive";
|
1276
|
+
TransactionType[TransactionType["System_Generic_Transfer_Receive_Fee"] = 223] = "System_Generic_Transfer_Receive_Fee";
|
1277
|
+
TransactionType[TransactionType["System_Refund"] = 224] = "System_Refund";
|
1278
|
+
TransactionType[TransactionType["System_Refund_Fee"] = 225] = "System_Refund_Fee";
|
1279
|
+
TransactionType[TransactionType["System_Sales_Tax"] = 226] = "System_Sales_Tax";
|
1280
|
+
TransactionType[TransactionType["System_Sales_Tax_Fee"] = 227] = "System_Sales_Tax_Fee";
|
1281
|
+
TransactionType[TransactionType["System_Limited_Debit"] = 228] = "System_Limited_Debit";
|
1282
|
+
TransactionType[TransactionType["System_Limited_Debit_Fee"] = 229] = "System_Limited_Debit_Fee";
|
1283
|
+
TransactionType[TransactionType["System_Negative_Balance_Load"] = 232] = "System_Negative_Balance_Load";
|
1284
|
+
TransactionType[TransactionType["System_Negative_Balance_Load_Fee"] = 233] = "System_Negative_Balance_Load_Fee";
|
1285
|
+
TransactionType[TransactionType["System_General_Debit"] = 136] = "System_General_Debit";
|
1286
|
+
TransactionType[TransactionType["System_General_Debit_Fee"] = 137] = "System_General_Debit_Fee";
|
1287
|
+
TransactionType[TransactionType["System_General_Credit"] = 138] = "System_General_Credit";
|
1288
|
+
TransactionType[TransactionType["System_General_Credit_Fee"] = 139] = "System_General_Credit_Fee";
|
1289
|
+
TransactionType[TransactionType["System_Voucher_Load"] = 162] = "System_Voucher_Load";
|
1290
|
+
TransactionType[TransactionType["System_Voucher_Load_Fee"] = 163] = "System_Voucher_Load_Fee";
|
1291
|
+
TransactionType[TransactionType["System_Voucher_Payment_Send"] = 164] = "System_Voucher_Payment_Send";
|
1292
|
+
TransactionType[TransactionType["System_Voucher_Payment_Send_Fee"] = 165] = "System_Voucher_Payment_Send_Fee";
|
1293
|
+
TransactionType[TransactionType["System_Voucher_Payment_Receive"] = 166] = "System_Voucher_Payment_Receive";
|
1294
|
+
TransactionType[TransactionType["System_Voucher_Payment_Receive_Fee"] = 167] = "System_Voucher_Payment_Receive_Fee";
|
1295
|
+
TransactionType[TransactionType["System_General_Transfer_Send"] = 242] = "System_General_Transfer_Send";
|
1296
|
+
TransactionType[TransactionType["System_General_Transfer_Send_Fee"] = 243] = "System_General_Transfer_Send_Fee";
|
1297
|
+
TransactionType[TransactionType["System_General_Transfer_Receive"] = 244] = "System_General_Transfer_Receive";
|
1298
|
+
TransactionType[TransactionType["System_General_Transfer_Receive_Fee"] = 245] = "System_General_Transfer_Receive_Fee";
|
1299
|
+
TransactionType[TransactionType["System_External_Auth_Credit"] = 246] = "System_External_Auth_Credit";
|
1300
|
+
TransactionType[TransactionType["System_External_Auth_Credit_Fee"] = 247] = "System_External_Auth_Credit_Fee";
|
1301
|
+
TransactionType[TransactionType["System_External_Auth_Debit"] = 248] = "System_External_Auth_Debit";
|
1302
|
+
TransactionType[TransactionType["System_External_Auth_Debit_Fee"] = 249] = "System_External_Auth_Debit_Fee";
|
1303
|
+
TransactionType[TransactionType["System_Reseller_Purchase"] = 188] = "System_Reseller_Purchase";
|
1304
|
+
TransactionType[TransactionType["System_Reseller_Purchase_Fee"] = 189] = "System_Reseller_Purchase_Fee";
|
1305
|
+
TransactionType[TransactionType["System_User_Purchase"] = 190] = "System_User_Purchase";
|
1306
|
+
TransactionType[TransactionType["System_User_Purchase_Fee"] = 191] = "System_User_Purchase_Fee";
|
1307
|
+
TransactionType[TransactionType["System_Crypto_Load"] = 192] = "System_Crypto_Load";
|
1308
|
+
TransactionType[TransactionType["System_Crypto_Load_Fee"] = 193] = "System_Crypto_Load_Fee";
|
1309
|
+
TransactionType[TransactionType["System_Crypto_Withdrawal"] = 194] = "System_Crypto_Withdrawal";
|
1310
|
+
TransactionType[TransactionType["System_Crypto_Withdrawal_Fee"] = 195] = "System_Crypto_Withdrawal_Fee";
|
1311
|
+
// Gateway Transactions
|
1312
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_Load"] = 234] = "Gateway_Payment_Gateway_Load";
|
1313
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_Load_Fee"] = 235] = "Gateway_Payment_Gateway_Load_Fee";
|
1314
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_Purchase"] = 236] = "Gateway_Payment_Gateway_Purchase";
|
1315
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_Purchase_Fee"] = 237] = "Gateway_Payment_Gateway_Purchase_Fee";
|
1316
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_Withdrawal"] = 250] = "Gateway_Payment_Gateway_Withdrawal";
|
1317
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_Withdrawal_Fee"] = 251] = "Gateway_Payment_Gateway_Withdrawal_Fee";
|
1318
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_E_Transfer"] = 252] = "Gateway_Payment_Gateway_E_Transfer";
|
1319
|
+
TransactionType[TransactionType["Gateway_Payment_Gateway_E_Transfer_Fee"] = 253] = "Gateway_Payment_Gateway_E_Transfer_Fee";
|
1320
|
+
// Service Transactions
|
1321
|
+
TransactionType[TransactionType["Service_Account_Activation"] = 116] = "Service_Account_Activation";
|
1322
|
+
TransactionType[TransactionType["Service_Account_Activation_Fee"] = 117] = "Service_Account_Activation_Fee";
|
1323
|
+
TransactionType[TransactionType["Service_Account_Termination"] = 118] = "Service_Account_Termination";
|
1324
|
+
TransactionType[TransactionType["Service_Account_Termination_Fee"] = 119] = "Service_Account_Termination_Fee";
|
1325
|
+
TransactionType[TransactionType["Service_Debit_Card_Shipping"] = 120] = "Service_Debit_Card_Shipping";
|
1326
|
+
TransactionType[TransactionType["Service_Debit_Card_Shipping_Fee"] = 121] = "Service_Debit_Card_Shipping_Fee";
|
1327
|
+
TransactionType[TransactionType["Service_NSF"] = 122] = "Service_NSF";
|
1328
|
+
TransactionType[TransactionType["Service_NSF_Fee"] = 123] = "Service_NSF_Fee";
|
1329
|
+
TransactionType[TransactionType["Service_Lost_Card"] = 124] = "Service_Lost_Card";
|
1330
|
+
TransactionType[TransactionType["Service_Lost_Card_Fee"] = 125] = "Service_Lost_Card_Fee";
|
1331
|
+
TransactionType[TransactionType["Service_Support"] = 126] = "Service_Support";
|
1332
|
+
TransactionType[TransactionType["Service_Support_Fee"] = 127] = "Service_Support_Fee";
|
1333
|
+
TransactionType[TransactionType["Service_Administration"] = 128] = "Service_Administration";
|
1334
|
+
TransactionType[TransactionType["Service_Administration_Fee"] = 129] = "Service_Administration_Fee";
|
1335
|
+
TransactionType[TransactionType["Service_Account_Suspension"] = 130] = "Service_Account_Suspension";
|
1336
|
+
TransactionType[TransactionType["Service_Account_Suspension_Fee"] = 131] = "Service_Account_Suspension_Fee";
|
1337
|
+
TransactionType[TransactionType["Service_Account_Reactivation"] = 132] = "Service_Account_Reactivation";
|
1338
|
+
TransactionType[TransactionType["Service_Account_Reactivation_Fee"] = 133] = "Service_Account_Reactivation_Fee";
|
1339
|
+
TransactionType[TransactionType["Service_Generic"] = 134] = "Service_Generic";
|
1340
|
+
TransactionType[TransactionType["Service_Generic_Fee"] = 135] = "Service_Generic_Fee";
|
1341
|
+
TransactionType[TransactionType["Service_Balance_Request"] = 140] = "Service_Balance_Request";
|
1342
|
+
TransactionType[TransactionType["Service_Balance_Request_Fee"] = 141] = "Service_Balance_Request_Fee";
|
1343
|
+
TransactionType[TransactionType["Service_Decline"] = 160] = "Service_Decline";
|
1344
|
+
TransactionType[TransactionType["Service_Decline_Fee"] = 161] = "Service_Decline_Fee";
|
1345
|
+
TransactionType[TransactionType["Service_Cash_Withdrawal_NSF"] = 230] = "Service_Cash_Withdrawal_NSF";
|
1346
|
+
TransactionType[TransactionType["Service_Cash_Withdrawal_NSF_Fee"] = 231] = "Service_Cash_Withdrawal_NSF_Fee";
|
1347
|
+
TransactionType[TransactionType["Service_Account_Renewal"] = 170] = "Service_Account_Renewal";
|
1348
|
+
TransactionType[TransactionType["Service_Account_Renewal_Fee"] = 171] = "Service_Account_Renewal_Fee";
|
1349
|
+
TransactionType[TransactionType["Service_Generic_Inactivity"] = 172] = "Service_Generic_Inactivity";
|
1350
|
+
TransactionType[TransactionType["Service_Generic_Inactivity_Fee"] = 173] = "Service_Generic_Inactivity_Fee";
|
1351
|
+
TransactionType[TransactionType["Service_Account_Replacement"] = 174] = "Service_Account_Replacement";
|
1352
|
+
TransactionType[TransactionType["Service_Account_Replacement_Fee"] = 175] = "Service_Account_Replacement_Fee";
|
1353
|
+
TransactionType[TransactionType["Service_Account_Multipan"] = 176] = "Service_Account_Multipan";
|
1354
|
+
TransactionType[TransactionType["Service_Account_Multipan_Fee"] = 177] = "Service_Account_Multipan_Fee";
|
1355
|
+
})(TransactionType || (TransactionType = {}));
|
1356
|
+
var TrustLimits;
|
1357
|
+
(function (TrustLimits) {
|
1358
|
+
TrustLimits["Limited"] = "Limited";
|
1359
|
+
TrustLimits["Confirmed"] = "Confirmed";
|
1360
|
+
TrustLimits["Trusted"] = "Trusted";
|
1361
|
+
TrustLimits["Unverified"] = "Unverified";
|
1362
|
+
})(TrustLimits || (TrustLimits = {}));
|
1363
|
+
var UserTrustLevelRange;
|
1364
|
+
(function (UserTrustLevelRange) {
|
1365
|
+
UserTrustLevelRange[UserTrustLevelRange["Unverified"] = 0] = "Unverified";
|
1366
|
+
UserTrustLevelRange[UserTrustLevelRange["Limited"] = 1] = "Limited";
|
1367
|
+
UserTrustLevelRange[UserTrustLevelRange["Limited_Max"] = 2] = "Limited_Max";
|
1368
|
+
UserTrustLevelRange[UserTrustLevelRange["Confirmed"] = 3] = "Confirmed";
|
1369
|
+
UserTrustLevelRange[UserTrustLevelRange["Confirmed_Max"] = 4] = "Confirmed_Max";
|
1370
|
+
UserTrustLevelRange[UserTrustLevelRange["Trusted"] = 5] = "Trusted";
|
1371
|
+
UserTrustLevelRange[UserTrustLevelRange["Trusted_Organization"] = 6] = "Trusted_Organization";
|
1372
|
+
UserTrustLevelRange[UserTrustLevelRange["Trusted_Max"] = 10] = "Trusted_Max";
|
1373
|
+
})(UserTrustLevelRange || (UserTrustLevelRange = {}));
|
1374
|
+
var UserType;
|
1375
|
+
(function (UserType) {
|
1376
|
+
UserType[UserType["Undefined"] = 0] = "Undefined";
|
1377
|
+
UserType[UserType["Individual"] = 1] = "Individual";
|
1378
|
+
UserType[UserType["System"] = 2] = "System";
|
1379
|
+
UserType[UserType["Organization"] = 3] = "Organization";
|
1380
|
+
})(UserType || (UserType = {}));
|
1183
1381
|
var ValidateType;
|
1184
1382
|
(function (ValidateType) {
|
1185
1383
|
ValidateType[ValidateType["NoValidation"] = 0] = "NoValidation";
|
1186
1384
|
ValidateType[ValidateType["ValidateOnly"] = 1] = "ValidateOnly";
|
1187
|
-
})(ValidateType || (
|
1188
|
-
var
|
1189
|
-
(function (
|
1190
|
-
|
1191
|
-
|
1192
|
-
})(
|
1193
|
-
var PromotionVisibility;
|
1194
|
-
(function (PromotionVisibility) {
|
1195
|
-
PromotionVisibility[PromotionVisibility["Public"] = 1] = "Public";
|
1196
|
-
PromotionVisibility[PromotionVisibility["Invite"] = 2] = "Invite";
|
1197
|
-
})(PromotionVisibility || (exports.PromotionVisibility = PromotionVisibility = {}));
|
1198
|
-
var PromotionStatus;
|
1199
|
-
(function (PromotionStatus) {
|
1200
|
-
PromotionStatus[PromotionStatus["Active"] = 1] = "Active";
|
1201
|
-
PromotionStatus[PromotionStatus["Suspended"] = 2] = "Suspended";
|
1202
|
-
PromotionStatus[PromotionStatus["Ended"] = 3] = "Ended";
|
1203
|
-
})(PromotionStatus || (exports.PromotionStatus = PromotionStatus = {}));
|
1204
|
-
var PromotionGames;
|
1205
|
-
(function (PromotionGames) {
|
1206
|
-
PromotionGames[PromotionGames["Wheel_Of_Fortune"] = 1] = "Wheel_Of_Fortune";
|
1207
|
-
PromotionGames[PromotionGames["Rock_Paper_Scissors"] = 2] = "Rock_Paper_Scissors";
|
1208
|
-
})(PromotionGames || (exports.PromotionGames = PromotionGames = {}));
|
1209
|
-
var GGEZGiftType;
|
1210
|
-
(function (GGEZGiftType) {
|
1211
|
-
GGEZGiftType[GGEZGiftType["Wheel_Of_Fortune"] = 1] = "Wheel_Of_Fortune";
|
1212
|
-
})(GGEZGiftType || (exports.GGEZGiftType = GGEZGiftType = {}));
|
1213
|
-
var ExternalHostMessageType;
|
1214
|
-
(function (ExternalHostMessageType) {
|
1215
|
-
ExternalHostMessageType[ExternalHostMessageType["Interchange_Authorization"] = 1] = "Interchange_Authorization";
|
1216
|
-
ExternalHostMessageType[ExternalHostMessageType["Interchange_Financial_Post_Notification"] = 2] = "Interchange_Financial_Post_Notification";
|
1217
|
-
ExternalHostMessageType[ExternalHostMessageType["System_Financial_Notification"] = 3] = "System_Financial_Notification";
|
1218
|
-
ExternalHostMessageType[ExternalHostMessageType["User_Change_Notification"] = 4] = "User_Change_Notification";
|
1219
|
-
ExternalHostMessageType[ExternalHostMessageType["Account_Change_Notification"] = 5] = "Account_Change_Notification";
|
1220
|
-
ExternalHostMessageType[ExternalHostMessageType["Order_Notification"] = 6] = "Order_Notification";
|
1221
|
-
ExternalHostMessageType[ExternalHostMessageType["Network"] = 7] = "Network";
|
1222
|
-
ExternalHostMessageType[ExternalHostMessageType["OTP_Authentication_Notification"] = 8] = "OTP_Authentication_Notification";
|
1223
|
-
ExternalHostMessageType[ExternalHostMessageType["Payment_Gateway_Notification"] = 9] = "Payment_Gateway_Notification";
|
1224
|
-
ExternalHostMessageType[ExternalHostMessageType["Fulfilment_Batch_Notification"] = 10] = "Fulfilment_Batch_Notification";
|
1225
|
-
ExternalHostMessageType[ExternalHostMessageType["Ticket_Notification"] = 11] = "Ticket_Notification";
|
1226
|
-
ExternalHostMessageType[ExternalHostMessageType["Organization_Change_Notification"] = 12] = "Organization_Change_Notification";
|
1227
|
-
ExternalHostMessageType[ExternalHostMessageType["Service_Fee_Notification"] = 13] = "Service_Fee_Notification";
|
1228
|
-
ExternalHostMessageType[ExternalHostMessageType["Interchange_Charge_Back_Notification"] = 14] = "Interchange_Charge_Back_Notification";
|
1229
|
-
})(ExternalHostMessageType || (exports.ExternalHostMessageType = ExternalHostMessageType = {}));
|
1230
|
-
var ExternalHostMode;
|
1231
|
-
(function (ExternalHostMode) {
|
1232
|
-
ExternalHostMode[ExternalHostMode["Undefined"] = -1] = "Undefined";
|
1233
|
-
ExternalHostMode[ExternalHostMode["Notification_Only"] = 1] = "Notification_Only";
|
1234
|
-
ExternalHostMode[ExternalHostMode["Authorization"] = 2] = "Authorization";
|
1235
|
-
ExternalHostMode[ExternalHostMode["Authorization_With_StandIn"] = 3] = "Authorization_With_StandIn";
|
1236
|
-
ExternalHostMode[ExternalHostMode["Authorization_With_Auto_Approve"] = 4] = "Authorization_With_Auto_Approve";
|
1237
|
-
})(ExternalHostMode || (exports.ExternalHostMode = ExternalHostMode = {}));
|
1238
|
-
var TicketType;
|
1239
|
-
(function (TicketType) {
|
1240
|
-
TicketType[TicketType["Undefined"] = -1] = "Undefined";
|
1241
|
-
TicketType[TicketType["None"] = 0] = "None";
|
1242
|
-
TicketType[TicketType["Ticket"] = 1] = "Ticket";
|
1243
|
-
TicketType[TicketType["Note"] = 2] = "Note";
|
1244
|
-
})(TicketType || (exports.TicketType = TicketType = {}));
|
1385
|
+
})(ValidateType || (ValidateType = {}));
|
1386
|
+
var VariantType;
|
1387
|
+
(function (VariantType) {
|
1388
|
+
VariantType[VariantType["UGGEZ1"] = 177771] = "UGGEZ1";
|
1389
|
+
VariantType[VariantType["UGZ"] = 177772] = "UGZ";
|
1390
|
+
})(VariantType || (VariantType = {}));
|
1245
1391
|
var VerificationMethod;
|
1246
1392
|
(function (VerificationMethod) {
|
1247
1393
|
VerificationMethod[VerificationMethod["Whats_App"] = 1] = "Whats_App";
|
1248
1394
|
VerificationMethod[VerificationMethod["Telegram"] = 2] = "Telegram";
|
1249
1395
|
VerificationMethod[VerificationMethod["Phone_Call"] = 3] = "Phone_Call";
|
1250
1396
|
VerificationMethod[VerificationMethod["SMS"] = 4] = "SMS";
|
1251
|
-
})(VerificationMethod || (
|
1252
|
-
var
|
1253
|
-
(function (
|
1254
|
-
|
1255
|
-
|
1397
|
+
})(VerificationMethod || (VerificationMethod = {}));
|
1398
|
+
var WireTransferType;
|
1399
|
+
(function (WireTransferType) {
|
1400
|
+
WireTransferType[WireTransferType["Domestic"] = 1] = "Domestic";
|
1401
|
+
WireTransferType[WireTransferType["International"] = 2] = "International";
|
1402
|
+
})(WireTransferType || (WireTransferType = {}));
|
1403
|
+
export { AccountStatus, ActivityType, AddressType, AuthorizationOperationRequestType, BankAccountTypes, BankBeneficiaryType, BlockchainRequestType, BusinessType, ChainRequestType, ChainType, CommerceProductSourceType, CountryCode, CurrencyConversionType, DayOfWeek, DaysOfWeek, DeviceType, DocumentStatus, DocumentType, Entity, EntityData, EntityPriority, EntityStatus, EntityVerificationStatus, ErrorLevel, ExternalHostMessageType, ExternalHostMode, ForgetPasswordSecurityTypes, ForgetUserSecurityTypes, GGEZGiftType, Gender, IdentificationTypes, OperationStatus, OrderStatus, OrderType, OrganizationRequestTypes, PaymentMethodType, PhoneNumberTypes, ProgramTypes, PromotionGames, PromotionStatus, PromotionType, PromotionVisibility, RequestStatus, ResetSecurityType, SecurityAuthenticationTypes, SecurityLoginType, SecurityOperationMethod, SecurityQuestion1, SecurityQuestion2, SecurityValidationActionType, SecurityValidationStatus, SecurityValidationType, ServiceProvider, SettlementTransactionType, SourceApp, TicketCategory, TicketType, Titles, TransactionClassification, TransactionInquiryStatus, TransactionRequestStatus, TransactionType, TrustLimits, UserTrustLevelRange, UserType, ValidateType, VariantType, VerificationMethod, WireTransferType, };
|