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