@fiado/type-kit 1.2.44 → 1.2.45

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 (267) hide show
  1. package/bin/account/dtos/AccountResponse.d.ts +21 -0
  2. package/bin/account/dtos/AccountResponse.js +6 -0
  3. package/bin/account/dtos/CreateBankAccountInput.d.ts +8 -0
  4. package/bin/account/dtos/CreateBankAccountInput.js +6 -0
  5. package/bin/account/dtos/CreateBankAccountOutput.d.ts +5 -0
  6. package/bin/account/dtos/CreateBankAccountOutput.js +6 -0
  7. package/bin/account/dtos/CreateBankAccountUserInput.d.ts +14 -0
  8. package/bin/account/dtos/CreateBankAccountUserInput.js +6 -0
  9. package/bin/account/dtos/CreateBankAccountUserOutput.d.ts +8 -0
  10. package/bin/account/dtos/CreateBankAccountUserOutput.js +6 -0
  11. package/bin/account/dtos/PocketCreateRequest.d.ts +4 -0
  12. package/bin/account/dtos/PocketCreateRequest.js +31 -0
  13. package/bin/account/dtos/PocketCreateResponse.d.ts +2 -0
  14. package/bin/account/dtos/PocketCreateResponse.js +6 -0
  15. package/bin/account/enums/AccountStatus.d.ts +5 -0
  16. package/bin/account/enums/AccountStatus.js +9 -0
  17. package/bin/card/dtos/CardCreateRequest.d.ts +34 -0
  18. package/bin/card/dtos/CardCreateRequest.js +176 -0
  19. package/bin/creditContract/dto/CreditContractCreateRequest.d.ts +15 -0
  20. package/bin/creditContract/dto/CreditContractCreateRequest.js +72 -0
  21. package/bin/pomelo/dtos/PomeloCreateUserRequest.d.ts +28 -0
  22. package/bin/pomelo/dtos/PomeloCreateUserRequest.js +2 -0
  23. package/bin/pomelo/dtos/PomeloCreateUserResponse.d.ts +35 -0
  24. package/bin/pomelo/dtos/PomeloCreateUserResponse.js +2 -0
  25. package/bin/pomelo/enums/CountryEnum.d.ts +8 -0
  26. package/bin/pomelo/enums/CountryEnum.js +12 -0
  27. package/bin/pomelo/enums/IdentificationTypeEnum.d.ts +7 -0
  28. package/bin/pomelo/enums/IdentificationTypeEnum.js +11 -0
  29. package/bin/pomelo/enums/SexEnum.d.ts +4 -0
  30. package/bin/pomelo/enums/SexEnum.js +8 -0
  31. package/bin/pomelo/enums/TaxTypeEnum.d.ts +7 -0
  32. package/bin/pomelo/enums/TaxTypeEnum.js +11 -0
  33. package/bin/pomelo/enums/UserStatusEnum.d.ts +4 -0
  34. package/bin/pomelo/enums/UserStatusEnum.js +8 -0
  35. package/bin/pomelo/index.d.ts +7 -0
  36. package/bin/pomelo/index.js +25 -0
  37. package/bin/productCatalog/dtos/GetProductCatalogRequest.d.ts +3 -0
  38. package/bin/productCatalog/dtos/GetProductCatalogRequest.js +19 -0
  39. package/bin/stpSpei/enums/ActividadesProductivasEnum.d.ts +48 -0
  40. package/bin/stpSpei/enums/ActividadesProductivasEnum.js +52 -0
  41. package/bin/stpSpei/enums/EntidadesFederativasEnum.d.ts +34 -0
  42. package/bin/stpSpei/enums/EntidadesFederativasEnum.js +38 -0
  43. package/bin/stpSpei/enums/PaisesEnum.d.ts +276 -0
  44. package/bin/stpSpei/enums/PaisesEnum.js +280 -0
  45. package/bin/stpSpei/index.d.ts +3 -0
  46. package/bin/stpSpei/index.js +3 -0
  47. package/bin/tern/dtos/TernAddress.d.ts +8 -0
  48. package/bin/tern/dtos/TernAddress.js +40 -0
  49. package/bin/tern/dtos/TernCreateAccountRequest.d.ts +7 -0
  50. package/bin/tern/dtos/TernCreateAccountRequest.js +33 -0
  51. package/bin/tern/dtos/TernCreateAccountResponse.d.ts +5 -0
  52. package/bin/tern/dtos/TernCreateAccountResponse.js +25 -0
  53. package/bin/tern/dtos/TernCreateUserRequest.d.ts +15 -0
  54. package/bin/tern/dtos/TernCreateUserRequest.js +70 -0
  55. package/bin/tern/dtos/TernCreateUserResponse.d.ts +8 -0
  56. package/bin/tern/dtos/TernCreateUserResponse.js +37 -0
  57. package/bin/tern/dtos/TernGetAccountRequest.d.ts +5 -0
  58. package/bin/tern/dtos/TernGetAccountRequest.js +25 -0
  59. package/bin/tern/dtos/TernGetAccountResponse.d.ts +22 -0
  60. package/bin/tern/dtos/TernGetAccountResponse.js +87 -0
  61. package/bin/tern/dtos/TernGetUserRequest.d.ts +3 -0
  62. package/bin/tern/dtos/TernGetUserRequest.js +20 -0
  63. package/bin/tern/dtos/TernGetUserResponse.d.ts +24 -0
  64. package/bin/tern/dtos/TernGetUserResponse.js +96 -0
  65. package/bin/tern/enums/TernAccountStatusEnum.d.ts +4 -0
  66. package/bin/tern/enums/TernAccountStatusEnum.js +8 -0
  67. package/bin/tern/enums/TernAccountTypeEnum.d.ts +5 -0
  68. package/bin/tern/enums/TernAccountTypeEnum.js +9 -0
  69. package/bin/tern/index.d.ts +11 -0
  70. package/bin/tern/index.js +29 -0
  71. package/bin/transaction/TransactionCreateRequest.d.ts +2 -0
  72. package/bin/transaction/TransactionCreateRequest.js +6 -0
  73. package/bin/transaction/TransactionCreateResponse.d.ts +2 -0
  74. package/bin/transaction/TransactionCreateResponse.js +6 -0
  75. package/bin/transaction/dtos/TransactionGetDetailResponse.d.ts +1 -0
  76. package/bin/transaction/dtos/TransactionSourceEnum.d.ts +5 -0
  77. package/bin/transaction/dtos/TransactionSourceEnum.js +9 -0
  78. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfo.d.ts +6 -0
  79. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfo.js +6 -0
  80. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfoItem.d.ts +4 -0
  81. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfoItem.js +6 -0
  82. package/bin/transactionProcessor/dtos/private/PrivateProcessorCardInfo.d.ts +6 -0
  83. package/bin/transactionProcessor/dtos/private/PrivateProcessorCardInfo.js +6 -0
  84. package/bin/transactionProcessor/dtos/private/PrivateProcessorMerchantInfo.d.ts +7 -0
  85. package/bin/transactionProcessor/dtos/private/PrivateProcessorMerchantInfo.js +6 -0
  86. package/bin/transactionProcessor/dtos/private/PrivateProcessorTransactionInfo.d.ts +8 -0
  87. package/bin/transactionProcessor/dtos/private/PrivateProcessorTransactionInfo.js +6 -0
  88. package/bin/transactionProcessor/dtos/private/PrivateTransactionProcessorRequest.d.ts +16 -0
  89. package/bin/transactionProcessor/dtos/private/PrivateTransactionProcessorRequest.js +6 -0
  90. package/package.json +1 -1
  91. package/src/stpSpei/enums/ActividadesProductivasEnum.ts +48 -0
  92. package/src/stpSpei/enums/EntidadesFederativasEnum.ts +34 -0
  93. package/src/stpSpei/enums/PaisesEnum.ts +276 -0
  94. package/src/stpSpei/index.ts +4 -1
  95. package/src/transaction/dtos/TransactionGetDetailResponse.ts +1 -0
  96. package/.idea/aws.xml +0 -11
  97. package/.idea/fiado-type-kit.iml +0 -12
  98. package/.idea/modules.xml +0 -8
  99. package/.idea/sonarlint/issuestore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
  100. package/.idea/sonarlint/issuestore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
  101. package/.idea/sonarlint/issuestore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  102. package/.idea/sonarlint/issuestore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
  103. package/.idea/sonarlint/issuestore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  104. package/.idea/sonarlint/issuestore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -2
  105. package/.idea/sonarlint/issuestore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  106. package/.idea/sonarlint/issuestore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
  107. package/.idea/sonarlint/issuestore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  108. package/.idea/sonarlint/issuestore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
  109. package/.idea/sonarlint/issuestore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  110. package/.idea/sonarlint/issuestore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
  111. package/.idea/sonarlint/issuestore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
  112. package/.idea/sonarlint/issuestore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  113. package/.idea/sonarlint/issuestore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  114. package/.idea/sonarlint/issuestore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
  115. package/.idea/sonarlint/issuestore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  116. package/.idea/sonarlint/issuestore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  117. package/.idea/sonarlint/issuestore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  118. package/.idea/sonarlint/issuestore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
  119. package/.idea/sonarlint/issuestore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  120. package/.idea/sonarlint/issuestore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
  121. package/.idea/sonarlint/issuestore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  122. package/.idea/sonarlint/issuestore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  123. package/.idea/sonarlint/issuestore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
  124. package/.idea/sonarlint/issuestore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  125. package/.idea/sonarlint/issuestore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
  126. package/.idea/sonarlint/issuestore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  127. package/.idea/sonarlint/issuestore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
  128. package/.idea/sonarlint/issuestore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  129. package/.idea/sonarlint/issuestore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  130. package/.idea/sonarlint/issuestore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  131. package/.idea/sonarlint/issuestore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
  132. package/.idea/sonarlint/issuestore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
  133. package/.idea/sonarlint/issuestore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  134. package/.idea/sonarlint/issuestore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
  135. package/.idea/sonarlint/issuestore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  136. package/.idea/sonarlint/issuestore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  137. package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  138. package/.idea/sonarlint/issuestore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
  139. package/.idea/sonarlint/issuestore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  140. package/.idea/sonarlint/issuestore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  141. package/.idea/sonarlint/issuestore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
  142. package/.idea/sonarlint/issuestore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  143. package/.idea/sonarlint/issuestore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
  144. package/.idea/sonarlint/issuestore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
  145. package/.idea/sonarlint/issuestore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  146. package/.idea/sonarlint/issuestore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  147. package/.idea/sonarlint/issuestore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
  148. package/.idea/sonarlint/issuestore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
  149. package/.idea/sonarlint/issuestore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  150. package/.idea/sonarlint/issuestore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  151. package/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  152. package/.idea/sonarlint/issuestore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
  153. package/.idea/sonarlint/issuestore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  154. package/.idea/sonarlint/issuestore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
  155. package/.idea/sonarlint/issuestore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
  156. package/.idea/sonarlint/issuestore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  157. package/.idea/sonarlint/issuestore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  158. package/.idea/sonarlint/issuestore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
  159. package/.idea/sonarlint/issuestore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
  160. package/.idea/sonarlint/issuestore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  161. package/.idea/sonarlint/issuestore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
  162. package/.idea/sonarlint/issuestore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
  163. package/.idea/sonarlint/issuestore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  164. package/.idea/sonarlint/issuestore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  165. package/.idea/sonarlint/issuestore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  166. package/.idea/sonarlint/issuestore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
  167. package/.idea/sonarlint/issuestore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
  168. package/.idea/sonarlint/issuestore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
  169. package/.idea/sonarlint/issuestore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
  170. package/.idea/sonarlint/issuestore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
  171. package/.idea/sonarlint/issuestore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
  172. package/.idea/sonarlint/issuestore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
  173. package/.idea/sonarlint/issuestore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
  174. package/.idea/sonarlint/issuestore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
  175. package/.idea/sonarlint/issuestore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
  176. package/.idea/sonarlint/issuestore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  177. package/.idea/sonarlint/issuestore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  178. package/.idea/sonarlint/issuestore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
  179. package/.idea/sonarlint/issuestore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
  180. package/.idea/sonarlint/issuestore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
  181. package/.idea/sonarlint/issuestore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
  182. package/.idea/sonarlint/issuestore/index.pb +0 -168
  183. package/.idea/sonarlint/securityhotspotstore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
  184. package/.idea/sonarlint/securityhotspotstore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
  185. package/.idea/sonarlint/securityhotspotstore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  186. package/.idea/sonarlint/securityhotspotstore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
  187. package/.idea/sonarlint/securityhotspotstore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  188. package/.idea/sonarlint/securityhotspotstore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -0
  189. package/.idea/sonarlint/securityhotspotstore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  190. package/.idea/sonarlint/securityhotspotstore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
  191. package/.idea/sonarlint/securityhotspotstore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  192. package/.idea/sonarlint/securityhotspotstore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
  193. package/.idea/sonarlint/securityhotspotstore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  194. package/.idea/sonarlint/securityhotspotstore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
  195. package/.idea/sonarlint/securityhotspotstore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
  196. package/.idea/sonarlint/securityhotspotstore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  197. package/.idea/sonarlint/securityhotspotstore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  198. package/.idea/sonarlint/securityhotspotstore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
  199. package/.idea/sonarlint/securityhotspotstore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  200. package/.idea/sonarlint/securityhotspotstore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  201. package/.idea/sonarlint/securityhotspotstore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  202. package/.idea/sonarlint/securityhotspotstore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
  203. package/.idea/sonarlint/securityhotspotstore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  204. package/.idea/sonarlint/securityhotspotstore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
  205. package/.idea/sonarlint/securityhotspotstore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  206. package/.idea/sonarlint/securityhotspotstore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  207. package/.idea/sonarlint/securityhotspotstore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
  208. package/.idea/sonarlint/securityhotspotstore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  209. package/.idea/sonarlint/securityhotspotstore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
  210. package/.idea/sonarlint/securityhotspotstore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  211. package/.idea/sonarlint/securityhotspotstore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
  212. package/.idea/sonarlint/securityhotspotstore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  213. package/.idea/sonarlint/securityhotspotstore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  214. package/.idea/sonarlint/securityhotspotstore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  215. package/.idea/sonarlint/securityhotspotstore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
  216. package/.idea/sonarlint/securityhotspotstore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
  217. package/.idea/sonarlint/securityhotspotstore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  218. package/.idea/sonarlint/securityhotspotstore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
  219. package/.idea/sonarlint/securityhotspotstore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  220. package/.idea/sonarlint/securityhotspotstore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  221. package/.idea/sonarlint/securityhotspotstore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  222. package/.idea/sonarlint/securityhotspotstore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
  223. package/.idea/sonarlint/securityhotspotstore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  224. package/.idea/sonarlint/securityhotspotstore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  225. package/.idea/sonarlint/securityhotspotstore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
  226. package/.idea/sonarlint/securityhotspotstore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  227. package/.idea/sonarlint/securityhotspotstore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
  228. package/.idea/sonarlint/securityhotspotstore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
  229. package/.idea/sonarlint/securityhotspotstore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  230. package/.idea/sonarlint/securityhotspotstore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  231. package/.idea/sonarlint/securityhotspotstore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
  232. package/.idea/sonarlint/securityhotspotstore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
  233. package/.idea/sonarlint/securityhotspotstore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  234. package/.idea/sonarlint/securityhotspotstore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  235. package/.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  236. package/.idea/sonarlint/securityhotspotstore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
  237. package/.idea/sonarlint/securityhotspotstore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  238. package/.idea/sonarlint/securityhotspotstore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
  239. package/.idea/sonarlint/securityhotspotstore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
  240. package/.idea/sonarlint/securityhotspotstore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  241. package/.idea/sonarlint/securityhotspotstore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  242. package/.idea/sonarlint/securityhotspotstore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
  243. package/.idea/sonarlint/securityhotspotstore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
  244. package/.idea/sonarlint/securityhotspotstore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  245. package/.idea/sonarlint/securityhotspotstore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
  246. package/.idea/sonarlint/securityhotspotstore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
  247. package/.idea/sonarlint/securityhotspotstore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  248. package/.idea/sonarlint/securityhotspotstore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  249. package/.idea/sonarlint/securityhotspotstore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  250. package/.idea/sonarlint/securityhotspotstore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
  251. package/.idea/sonarlint/securityhotspotstore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
  252. package/.idea/sonarlint/securityhotspotstore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
  253. package/.idea/sonarlint/securityhotspotstore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
  254. package/.idea/sonarlint/securityhotspotstore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
  255. package/.idea/sonarlint/securityhotspotstore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
  256. package/.idea/sonarlint/securityhotspotstore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
  257. package/.idea/sonarlint/securityhotspotstore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
  258. package/.idea/sonarlint/securityhotspotstore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
  259. package/.idea/sonarlint/securityhotspotstore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
  260. package/.idea/sonarlint/securityhotspotstore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  261. package/.idea/sonarlint/securityhotspotstore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  262. package/.idea/sonarlint/securityhotspotstore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
  263. package/.idea/sonarlint/securityhotspotstore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
  264. package/.idea/sonarlint/securityhotspotstore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
  265. package/.idea/sonarlint/securityhotspotstore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
  266. package/.idea/sonarlint/securityhotspotstore/index.pb +0 -168
  267. package/.idea/vcs.xml +0 -6
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.TernGetAccountResponse = void 0;
13
+ const TernAccountTypeEnum_1 = require("../enums/TernAccountTypeEnum");
14
+ const TernAddress_1 = require("./TernAddress");
15
+ const TernAccountStatusEnum_1 = require("../enums/TernAccountStatusEnum");
16
+ const class_validator_1 = require("class-validator");
17
+ class TernGetAccountResponse {
18
+ }
19
+ exports.TernGetAccountResponse = TernGetAccountResponse;
20
+ __decorate([
21
+ (0, class_validator_1.IsString)(),
22
+ __metadata("design:type", String)
23
+ ], TernGetAccountResponse.prototype, "id", void 0);
24
+ __decorate([
25
+ (0, class_validator_1.IsString)(),
26
+ __metadata("design:type", String)
27
+ ], TernGetAccountResponse.prototype, "businessId", void 0);
28
+ __decorate([
29
+ (0, class_validator_1.IsString)(),
30
+ __metadata("design:type", String)
31
+ ], TernGetAccountResponse.prototype, "userId", void 0);
32
+ __decorate([
33
+ (0, class_validator_1.IsString)(),
34
+ __metadata("design:type", String)
35
+ ], TernGetAccountResponse.prototype, "name", void 0);
36
+ __decorate([
37
+ (0, class_validator_1.IsString)(),
38
+ __metadata("design:type", String)
39
+ ], TernGetAccountResponse.prototype, "accountNumber", void 0);
40
+ __decorate([
41
+ (0, class_validator_1.IsString)(),
42
+ __metadata("design:type", String)
43
+ ], TernGetAccountResponse.prototype, "routingNumber", void 0);
44
+ __decorate([
45
+ (0, class_validator_1.IsEnum)(TernAccountTypeEnum_1.TernAccountTypeEnum),
46
+ __metadata("design:type", String)
47
+ ], TernGetAccountResponse.prototype, "accountType", void 0);
48
+ __decorate([
49
+ (0, class_validator_1.IsBoolean)(),
50
+ __metadata("design:type", Boolean)
51
+ ], TernGetAccountResponse.prototype, "active", void 0);
52
+ __decorate([
53
+ (0, class_validator_1.IsBoolean)(),
54
+ __metadata("design:type", Boolean)
55
+ ], TernGetAccountResponse.prototype, "isPrimary", void 0);
56
+ __decorate([
57
+ (0, class_validator_1.IsString)(),
58
+ __metadata("design:type", String)
59
+ ], TernGetAccountResponse.prototype, "createdDate", void 0);
60
+ __decorate([
61
+ (0, class_validator_1.IsString)(),
62
+ __metadata("design:type", String)
63
+ ], TernGetAccountResponse.prototype, "updatedDate", void 0);
64
+ __decorate([
65
+ (0, class_validator_1.IsString)(),
66
+ __metadata("design:type", String)
67
+ ], TernGetAccountResponse.prototype, "deletedDate", void 0);
68
+ __decorate([
69
+ (0, class_validator_1.IsString)(),
70
+ __metadata("design:type", String)
71
+ ], TernGetAccountResponse.prototype, "updatedBy", void 0);
72
+ __decorate([
73
+ (0, class_validator_1.IsNumber)(),
74
+ __metadata("design:type", Number)
75
+ ], TernGetAccountResponse.prototype, "balance", void 0);
76
+ __decorate([
77
+ (0, class_validator_1.ValidateNested)(),
78
+ __metadata("design:type", TernAddress_1.TernAddress)
79
+ ], TernGetAccountResponse.prototype, "address", void 0);
80
+ __decorate([
81
+ (0, class_validator_1.IsString)(),
82
+ __metadata("design:type", String)
83
+ ], TernGetAccountResponse.prototype, "kybStatus", void 0);
84
+ __decorate([
85
+ (0, class_validator_1.IsEnum)(TernAccountStatusEnum_1.TernAccountStatusEnum),
86
+ __metadata("design:type", String)
87
+ ], TernGetAccountResponse.prototype, "statusName", void 0);
@@ -0,0 +1,3 @@
1
+ export declare class TernGetUserRequest {
2
+ externalUserId: string;
3
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.TernGetUserRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class TernGetUserRequest {
15
+ }
16
+ exports.TernGetUserRequest = TernGetUserRequest;
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ __metadata("design:type", String)
20
+ ], TernGetUserRequest.prototype, "externalUserId", void 0);
@@ -0,0 +1,24 @@
1
+ import { SexDocument } from "../../identity";
2
+ import { TernAccountStatusEnum } from "../enums/TernAccountStatusEnum";
3
+ import { TernAddress } from "./TernAddress";
4
+ export declare class TernGetUserResponse {
5
+ id: string;
6
+ typeOfUserId: string;
7
+ dob: string;
8
+ name: string;
9
+ lastName: string;
10
+ phoneNumber: string;
11
+ email: string;
12
+ address?: TernAddress;
13
+ status: TernAccountStatusEnum;
14
+ sex?: SexDocument;
15
+ documentNumber: string;
16
+ typeOfDocumentId?: string;
17
+ countryId: string;
18
+ userAccountIds?: string[];
19
+ createdDate?: string;
20
+ updatedDate?: string;
21
+ deletedDate?: string;
22
+ updatedBy?: string;
23
+ accountIds?: number[];
24
+ }
@@ -0,0 +1,96 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.TernGetUserResponse = void 0;
13
+ const identity_1 = require("../../identity");
14
+ const TernAccountStatusEnum_1 = require("../enums/TernAccountStatusEnum");
15
+ const TernAddress_1 = require("./TernAddress");
16
+ const class_validator_1 = require("class-validator");
17
+ const IsPhoneNumberConstraint_1 = require("../../card/validations/IsPhoneNumberConstraint");
18
+ class TernGetUserResponse {
19
+ }
20
+ exports.TernGetUserResponse = TernGetUserResponse;
21
+ __decorate([
22
+ (0, class_validator_1.IsString)(),
23
+ __metadata("design:type", String)
24
+ ], TernGetUserResponse.prototype, "id", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsString)(),
27
+ __metadata("design:type", String)
28
+ ], TernGetUserResponse.prototype, "typeOfUserId", void 0);
29
+ __decorate([
30
+ (0, class_validator_1.IsString)(),
31
+ __metadata("design:type", String)
32
+ ], TernGetUserResponse.prototype, "dob", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsString)(),
35
+ __metadata("design:type", String)
36
+ ], TernGetUserResponse.prototype, "name", void 0);
37
+ __decorate([
38
+ (0, class_validator_1.IsString)(),
39
+ __metadata("design:type", String)
40
+ ], TernGetUserResponse.prototype, "lastName", void 0);
41
+ __decorate([
42
+ (0, IsPhoneNumberConstraint_1.IsPhoneNumberFiado)(),
43
+ __metadata("design:type", String)
44
+ ], TernGetUserResponse.prototype, "phoneNumber", void 0);
45
+ __decorate([
46
+ (0, class_validator_1.IsEmail)(),
47
+ __metadata("design:type", String)
48
+ ], TernGetUserResponse.prototype, "email", void 0);
49
+ __decorate([
50
+ (0, class_validator_1.ValidateNested)(),
51
+ __metadata("design:type", TernAddress_1.TernAddress)
52
+ ], TernGetUserResponse.prototype, "address", void 0);
53
+ __decorate([
54
+ (0, class_validator_1.IsEnum)(TernAccountStatusEnum_1.TernAccountStatusEnum),
55
+ __metadata("design:type", String)
56
+ ], TernGetUserResponse.prototype, "status", void 0);
57
+ __decorate([
58
+ (0, class_validator_1.IsEnum)(identity_1.SexDocument),
59
+ __metadata("design:type", String)
60
+ ], TernGetUserResponse.prototype, "sex", void 0);
61
+ __decorate([
62
+ (0, class_validator_1.IsString)(),
63
+ __metadata("design:type", String)
64
+ ], TernGetUserResponse.prototype, "documentNumber", void 0);
65
+ __decorate([
66
+ (0, class_validator_1.IsString)(),
67
+ __metadata("design:type", String)
68
+ ], TernGetUserResponse.prototype, "typeOfDocumentId", void 0);
69
+ __decorate([
70
+ (0, class_validator_1.IsString)(),
71
+ __metadata("design:type", String)
72
+ ], TernGetUserResponse.prototype, "countryId", void 0);
73
+ __decorate([
74
+ (0, class_validator_1.IsArray)(),
75
+ __metadata("design:type", Array)
76
+ ], TernGetUserResponse.prototype, "userAccountIds", void 0);
77
+ __decorate([
78
+ (0, class_validator_1.IsString)(),
79
+ __metadata("design:type", String)
80
+ ], TernGetUserResponse.prototype, "createdDate", void 0);
81
+ __decorate([
82
+ (0, class_validator_1.IsString)(),
83
+ __metadata("design:type", String)
84
+ ], TernGetUserResponse.prototype, "updatedDate", void 0);
85
+ __decorate([
86
+ (0, class_validator_1.IsString)(),
87
+ __metadata("design:type", String)
88
+ ], TernGetUserResponse.prototype, "deletedDate", void 0);
89
+ __decorate([
90
+ (0, class_validator_1.IsString)(),
91
+ __metadata("design:type", String)
92
+ ], TernGetUserResponse.prototype, "updatedBy", void 0);
93
+ __decorate([
94
+ (0, class_validator_1.IsArray)(),
95
+ __metadata("design:type", Array)
96
+ ], TernGetUserResponse.prototype, "accountIds", void 0);
@@ -0,0 +1,4 @@
1
+ export declare enum TernAccountStatusEnum {
2
+ ACTIVE = "ACTIVE",
3
+ INACTIVE = "INACTIVE"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TernAccountStatusEnum = void 0;
4
+ var TernAccountStatusEnum;
5
+ (function (TernAccountStatusEnum) {
6
+ TernAccountStatusEnum["ACTIVE"] = "ACTIVE";
7
+ TernAccountStatusEnum["INACTIVE"] = "INACTIVE";
8
+ })(TernAccountStatusEnum || (exports.TernAccountStatusEnum = TernAccountStatusEnum = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum TernAccountTypeEnum {
2
+ CARD_ISSUING = "Card Issuing",
3
+ USER = "USER",
4
+ BUSINESS = "BUSINESS"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TernAccountTypeEnum = void 0;
4
+ var TernAccountTypeEnum;
5
+ (function (TernAccountTypeEnum) {
6
+ TernAccountTypeEnum["CARD_ISSUING"] = "Card Issuing";
7
+ TernAccountTypeEnum["USER"] = "USER";
8
+ TernAccountTypeEnum["BUSINESS"] = "BUSINESS";
9
+ })(TernAccountTypeEnum || (exports.TernAccountTypeEnum = TernAccountTypeEnum = {}));
@@ -0,0 +1,11 @@
1
+ export * from './dtos/TernCreateUserRequest';
2
+ export * from './dtos/TernCreateUserResponse';
3
+ export * from './dtos/TernCreateAccountRequest';
4
+ export * from './dtos/TernCreateAccountResponse';
5
+ export * from './dtos/TernGetAccountRequest';
6
+ export * from './dtos/TernGetAccountResponse';
7
+ export * from './dtos/TernGetUserRequest';
8
+ export * from './dtos/TernGetUserResponse';
9
+ export * from './dtos/TernAddress';
10
+ export * from './enums/TernAccountTypeEnum';
11
+ export * from './enums/TernAccountStatusEnum';
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ // DTOs
18
+ __exportStar(require("./dtos/TernCreateUserRequest"), exports);
19
+ __exportStar(require("./dtos/TernCreateUserResponse"), exports);
20
+ __exportStar(require("./dtos/TernCreateAccountRequest"), exports);
21
+ __exportStar(require("./dtos/TernCreateAccountResponse"), exports);
22
+ __exportStar(require("./dtos/TernGetAccountRequest"), exports);
23
+ __exportStar(require("./dtos/TernGetAccountResponse"), exports);
24
+ __exportStar(require("./dtos/TernGetUserRequest"), exports);
25
+ __exportStar(require("./dtos/TernGetUserResponse"), exports);
26
+ __exportStar(require("./dtos/TernAddress"), exports);
27
+ // ENUMS
28
+ __exportStar(require("./enums/TernAccountTypeEnum"), exports);
29
+ __exportStar(require("./enums/TernAccountStatusEnum"), exports);
@@ -0,0 +1,2 @@
1
+ export declare class TransactionCreateRequest {
2
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionCreateRequest = void 0;
4
+ class TransactionCreateRequest {
5
+ }
6
+ exports.TransactionCreateRequest = TransactionCreateRequest;
@@ -0,0 +1,2 @@
1
+ export declare class TransactionCreateResponse {
2
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionCreateResponse = void 0;
4
+ class TransactionCreateResponse {
5
+ }
6
+ exports.TransactionCreateResponse = TransactionCreateResponse;
@@ -19,4 +19,5 @@ export declare class TransactionGetDetailResponse {
19
19
  status: TransactionStatusEnum;
20
20
  date: string;
21
21
  operation: OperationEnum;
22
+ displayName: string;
22
23
  }
@@ -0,0 +1,5 @@
1
+ export declare enum TransactionSourceEnum {
2
+ FIADO_INC = "FIADO_INC",
3
+ FIADO_IFPE = "FIADO_IFPE",
4
+ FIADO_SA = "FIADO_SA"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionSourceEnum = void 0;
4
+ var TransactionSourceEnum;
5
+ (function (TransactionSourceEnum) {
6
+ TransactionSourceEnum["FIADO_INC"] = "FIADO_INC";
7
+ TransactionSourceEnum["FIADO_IFPE"] = "FIADO_IFPE";
8
+ TransactionSourceEnum["FIADO_SA"] = "FIADO_SA";
9
+ })(TransactionSourceEnum || (exports.TransactionSourceEnum = TransactionSourceEnum = {}));
@@ -0,0 +1,6 @@
1
+ import { PrivateProcessorAmountInfoItem } from "./PrivateProcessorAmountInfoItem";
2
+ export declare class PrivateProcessorAmountInfo {
3
+ transaction: PrivateProcessorAmountInfoItem;
4
+ settlement: PrivateProcessorAmountInfoItem;
5
+ local: PrivateProcessorAmountInfoItem;
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrivateProcessorAmountInfo = void 0;
4
+ class PrivateProcessorAmountInfo {
5
+ }
6
+ exports.PrivateProcessorAmountInfo = PrivateProcessorAmountInfo;
@@ -0,0 +1,4 @@
1
+ export declare class PrivateProcessorAmountInfoItem {
2
+ total: number;
3
+ currencyId: string;
4
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrivateProcessorAmountInfoItem = void 0;
4
+ class PrivateProcessorAmountInfoItem {
5
+ }
6
+ exports.PrivateProcessorAmountInfoItem = PrivateProcessorAmountInfoItem;
@@ -0,0 +1,6 @@
1
+ export declare class PrivateProcessorCardInfo {
2
+ productType: string;
3
+ lastFour: string;
4
+ provider: string;
5
+ externalCardId: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrivateProcessorCardInfo = void 0;
4
+ class PrivateProcessorCardInfo {
5
+ }
6
+ exports.PrivateProcessorCardInfo = PrivateProcessorCardInfo;
@@ -0,0 +1,7 @@
1
+ export declare class PrivateProcessorMerchantInfo {
2
+ id: string;
3
+ address: string;
4
+ name: string;
5
+ mcc: string;
6
+ terminalId: string;
7
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrivateProcessorMerchantInfo = void 0;
4
+ class PrivateProcessorMerchantInfo {
5
+ }
6
+ exports.PrivateProcessorMerchantInfo = PrivateProcessorMerchantInfo;
@@ -0,0 +1,8 @@
1
+ export declare class PrivateProcessorTransactionInfo {
2
+ id: string;
3
+ type: string;
4
+ network: string;
5
+ date: string;
6
+ originalTransactionId: string;
7
+ pointType: string;
8
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrivateProcessorTransactionInfo = void 0;
4
+ class PrivateProcessorTransactionInfo {
5
+ }
6
+ exports.PrivateProcessorTransactionInfo = PrivateProcessorTransactionInfo;
@@ -0,0 +1,16 @@
1
+ import { PrivateProcessorCardInfo } from "./PrivateProcessorCardInfo";
2
+ import { PrivateProcessorMerchantInfo } from "./PrivateProcessorMerchantInfo";
3
+ import { PrivateProcessorAmountInfo } from "./PrivateProcessorAmountInfo";
4
+ import { PrivateProcessorTransactionInfo } from "./PrivateProcessorTransactionInfo";
5
+ import { CountryId } from "../../../country";
6
+ export declare class PrivateTransactionProcessorRequest {
7
+ idempotencyKey: string;
8
+ externalUserId: string;
9
+ cardInfo: PrivateProcessorCardInfo | null;
10
+ productCatalogId: string;
11
+ merchantInfo: PrivateProcessorMerchantInfo;
12
+ amountInfo: PrivateProcessorAmountInfo;
13
+ transactionInfo: PrivateProcessorTransactionInfo;
14
+ countryId: CountryId;
15
+ additionalData: any;
16
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PrivateTransactionProcessorRequest = void 0;
4
+ class PrivateTransactionProcessorRequest {
5
+ }
6
+ exports.PrivateTransactionProcessorRequest = PrivateTransactionProcessorRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.2.44",
3
+ "version": "1.2.45",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,48 @@
1
+ export enum ActividadesProductivasEnum{
2
+ SERVICIOS_PASARELA_DE_PAGOS = "28",
3
+ SERVICIOS_TURISTICOS = "29",
4
+ FINTECH_CROWDFOUNDING = "30",
5
+ FINTECH_WALLET = "31",
6
+ FINTECH_MONEDAS_VIRTUALES = "32",
7
+ SERVICIOS_OUTSOURCING = "33",
8
+ MANUFACTURA = "34",
9
+ SOCIEDADES_FINANCIERAS_DE_OBJETO_MULTIPLE_REGULADAS = "35",
10
+ SOCIEDADES_FINANCIERAS_DE_OBJETO_MULTIPLE_NO_REGULADAS = "36",
11
+ INSTITUCIONES_FINANCIERAS_DEL_EXTRANJERO = "37",
12
+ SERVICIOS_DE_INSTITUCIONES_DE_CREDITO_ORGANIZACIONES_AUXILIARES_E_INSTITUCIONES_DE_SEGUROS_Y_FIANZAS = "38",
13
+ SERVICIOS_RELACIONADOS_CON_INMUEBLES = "39",
14
+ SERVICIOS_PROFESIONALES_Y_TECNICOS = "40",
15
+ SERVICIOS_DE_BUFETES_JURIDICOS = "41",
16
+ SERVICIOS_DE_ANALISIS_DE_SISTEMAS_Y_PROCESAMIENTO_ELECTRONICO_DE_DATOS = "42",
17
+ SERVICIOS_DE_AGENCIAS_DE_COLOCACION_Y_SELECCION_DE_PERSONAL = "43",
18
+ SERVICIOS_MEDICO_GENERAL_Y_ESPECIALIZADO_EN_CONSULTORIOS = "44",
19
+ ESTABLECIMIENTOS_PRIVADOS_DE_INSTRUCCION_EDUCACION_CULTURA_E_INVESTIGACION = "45",
20
+ SOCIEDADES_DE_AHORRO_Y_CREDITO_POPULAR = "47",
21
+ SOCIEDADES_DE_INVERSION = "48",
22
+ COMPRAVENTA_DE_GAS_PARA_USO_DOMESTICO_O_COMERCIAL = "49",
23
+ CONTRATACION_DE_OBRAS_COMPLETAS_DE_CONSTRUCCION = "50",
24
+ SERVICIOS_DE_ENSENANZA_PRE_PRIMARIA_Y_PRIMARIA = "51",
25
+ SERVICIOS_DE_ENSENANZA_SECUNDARIA = "52",
26
+ SERVICIOS_DE_ENSENANZA_COMERCIAL_Y_DE_IDIOMA = "53",
27
+ CASAS_DE_BOLSA_NACIONALES = "54",
28
+ ADMINISTRACION_DE_INMUEBLES = "55",
29
+ COMPANIAS_DE_SEGUROS_NACIONALES = "56",
30
+ CASA_DE_CAMBIO = "57",
31
+ CONSTRUCCION_DE_INMUEBLES = "58",
32
+ COMPRAVENTA_DE_ARTICULOS_DE_PLATA = "59",
33
+ COMPRAVENTA_DE_OTRAS_JOYAS = "60",
34
+ COMPRAVENTA_DE_RELOJES = "61",
35
+ SERVICIOS_DE_BLINDAJE = "62",
36
+ COMPRAVENTA_DE_AUTOMOVILES_Y_CAMIONES_NUEVOS = "63",
37
+ COMPRAVENTA_DE_CASAS_Y_OTROS_INMUEBLES = "64",
38
+ TARJETA_DE_CREDITO = "65",
39
+ CENTROS_CAMBIARIOS = "66",
40
+ AGENCIA_ADUANAL = "67",
41
+ MONTEPIO_O_CASAS_DE_EMPENO = "68",
42
+ FACTORING = "69",
43
+ ADMINISTRADORAS_DE_TARJETA_DE_CREDITO = "70",
44
+ NOTARIAS_PUBLICAS = "71",
45
+ EMPRESAS_TRANSPORTADORAS_DE_VALORES = "72",
46
+ JUEGOS_DE_FERIA_Y_APUESTAS = "73",
47
+ TRANSMISORES_DE_DINERO_O_DISPERSORES = "74"
48
+ }
@@ -0,0 +1,34 @@
1
+ export enum EntidadesFederativasEnum{
2
+ AGUASCALIENTES = "1",
3
+ BAJA_CALIFORNIA = "2",
4
+ BAJA_CALIFORNIA_SUR = "3",
5
+ CAMPECHE = "4",
6
+ CHIAPAS = "5",
7
+ CHIHUAHUA = "6",
8
+ COAHUILA = "7",
9
+ COLIMA = "8",
10
+ CIUDAD_DE_MEXICO = "9",
11
+ DURANGO = "10",
12
+ ESTADO_DE_MEXICO = "11",
13
+ GUANAJUATO = "12",
14
+ GUERRERO = "13",
15
+ HIDALGO = "14",
16
+ JALISCO = "15",
17
+ MICHOACAN = "16",
18
+ MORELOS = "17",
19
+ NAYARIT = "18",
20
+ NUEVO_LEON = "19",
21
+ OAXACA = "20",
22
+ PUEBLA = "21",
23
+ QUERETARO = "22",
24
+ QUINTANA_ROO = "23",
25
+ SAN_LUIS_POTOSI = "24",
26
+ SINALOA = "25",
27
+ SONORA = "26",
28
+ TABASCO = "27",
29
+ TAMAULIPAS = "28",
30
+ TLAXCALA = "29",
31
+ VERACRUZ = "30",
32
+ YUCATAN = "31",
33
+ ZACATECAS = "32"
34
+ }