@fiado/type-kit 1.9.30 → 1.9.33

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 (300) 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/BankAccountAchTransferResponse.d.ts +1 -1
  4. package/bin/account/dtos/CreateBankAccountInput.d.ts +8 -0
  5. package/bin/account/dtos/CreateBankAccountInput.js +6 -0
  6. package/bin/account/dtos/CreateBankAccountUserInput.d.ts +14 -0
  7. package/bin/account/dtos/CreateBankAccountUserInput.js +6 -0
  8. package/bin/account/dtos/PocketCreateRequest.d.ts +4 -0
  9. package/bin/account/dtos/PocketCreateRequest.js +31 -0
  10. package/bin/account/dtos/PocketCreateResponse.d.ts +2 -0
  11. package/bin/account/dtos/PocketCreateResponse.js +6 -0
  12. package/bin/account/enums/AccountStatus.d.ts +5 -0
  13. package/bin/account/enums/AccountStatus.js +9 -0
  14. package/bin/bankAccount/dtos/ExternalAccountType.d.ts +4 -0
  15. package/bin/bankAccount/dtos/ExternalAccountType.js +6 -0
  16. package/bin/card/dtos/CardCreateRequest.d.ts +34 -0
  17. package/bin/card/dtos/CardCreateRequest.js +176 -0
  18. package/bin/card/validations/CardUpdateKeyConstraint.js +2 -2
  19. package/bin/card/validations/IsPhoneNumberConstraint.js +2 -2
  20. package/bin/contactInfo/dtos/GetAllContactInfoResponse.d.ts +13 -0
  21. package/bin/contactInfo/dtos/GetAllContactInfoResponse.js +6 -0
  22. package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.d.ts +3 -0
  23. package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.js +22 -0
  24. package/bin/index.js +7 -17
  25. package/bin/legal-documents-business/enums/LegalDocumentType.d.ts +8 -0
  26. package/bin/legal-documents-business/enums/LegalDocumentType.js +12 -0
  27. package/bin/membership/dtos/CreateMembershipDirectoryUserRequest.d.ts +12 -0
  28. package/bin/membership/dtos/CreateMembershipDirectoryUserRequest.js +54 -0
  29. package/bin/membership/dtos/CreateMembershipRequest.d.ts +14 -0
  30. package/bin/membership/dtos/CreateMembershipRequest.js +56 -0
  31. package/bin/membership/dtos/GetMembershipDirectoryUserListAppResponse.d.ts +14 -0
  32. package/bin/membership/dtos/GetMembershipDirectoryUserListAppResponse.js +6 -0
  33. package/bin/membership/dtos/GetMembershipDirectoryUserListResponse.d.ts +21 -0
  34. package/bin/membership/dtos/GetMembershipDirectoryUserListResponse.js +6 -0
  35. package/bin/membership/dtos/GetMembershipListAppResponse.d.ts +10 -0
  36. package/bin/membership/dtos/GetMembershipListAppResponse.js +6 -0
  37. package/bin/membership/dtos/GetMembershipListResponse.d.ts +20 -0
  38. package/bin/membership/dtos/GetMembershipListResponse.js +6 -0
  39. package/bin/membership/dtos/RegisterMembershipDirectoryUserRequest.d.ts +4 -0
  40. package/bin/membership/dtos/RegisterMembershipDirectoryUserRequest.js +26 -0
  41. package/bin/membership/dtos/UpdateMembershipDirectoryUserRequest.d.ts +12 -0
  42. package/bin/membership/dtos/UpdateMembershipDirectoryUserRequest.js +54 -0
  43. package/bin/membership/dtos/UpdateMembershipRequest.d.ts +14 -0
  44. package/bin/membership/dtos/UpdateMembershipRequest.js +56 -0
  45. package/bin/membership/enums/MembershipDirectoryStatusEnum.d.ts +6 -0
  46. package/bin/membership/enums/MembershipDirectoryStatusEnum.js +10 -0
  47. package/bin/membership/enums/MembershipFlowEnum.d.ts +3 -0
  48. package/bin/membership/enums/MembershipFlowEnum.js +7 -0
  49. package/bin/membership/enums/MembershipProviderEnum.d.ts +5 -0
  50. package/bin/membership/enums/MembershipProviderEnum.js +9 -0
  51. package/bin/membership/enums/MembershipStatusEnum.d.ts +4 -0
  52. package/bin/membership/enums/MembershipStatusEnum.js +8 -0
  53. package/bin/membership/enums/MembershipTypeEnum.d.ts +3 -0
  54. package/bin/membership/enums/MembershipTypeEnum.js +7 -0
  55. package/bin/membership/index.d.ts +14 -0
  56. package/bin/membership/index.js +32 -0
  57. package/bin/pomelo/dtos/PomeloCreateUserRequest.d.ts +28 -0
  58. package/bin/pomelo/dtos/PomeloCreateUserRequest.js +2 -0
  59. package/bin/pomelo/dtos/PomeloCreateUserResponse.d.ts +35 -0
  60. package/bin/pomelo/dtos/PomeloCreateUserResponse.js +2 -0
  61. package/bin/pomelo/enums/CountryEnum.d.ts +8 -0
  62. package/bin/pomelo/enums/CountryEnum.js +12 -0
  63. package/bin/pomelo/enums/IdentificationTypeEnum.d.ts +7 -0
  64. package/bin/pomelo/enums/IdentificationTypeEnum.js +11 -0
  65. package/bin/pomelo/enums/SexEnum.d.ts +4 -0
  66. package/bin/pomelo/enums/SexEnum.js +8 -0
  67. package/bin/pomelo/enums/TaxTypeEnum.d.ts +7 -0
  68. package/bin/pomelo/enums/TaxTypeEnum.js +11 -0
  69. package/bin/pomelo/enums/UserStatusEnum.d.ts +4 -0
  70. package/bin/pomelo/enums/UserStatusEnum.js +8 -0
  71. package/bin/pomelo/index.d.ts +7 -0
  72. package/bin/pomelo/index.js +25 -0
  73. package/bin/productCatalog/dtos/GetProductCatalogRequest.d.ts +3 -0
  74. package/bin/productCatalog/dtos/GetProductCatalogRequest.js +19 -0
  75. package/bin/role/dtos/DirectoryBackoffice.d.ts +15 -0
  76. package/bin/role/dtos/DirectoryBackoffice.js +6 -0
  77. package/bin/role/enums/DirectoryBackofficeStatusEnum.d.ts +4 -0
  78. package/bin/role/enums/DirectoryBackofficeStatusEnum.js +8 -0
  79. package/bin/tern/dtos/TernAddress.d.ts +8 -0
  80. package/bin/tern/dtos/TernAddress.js +40 -0
  81. package/bin/tern/dtos/TernCreateAccountRequest.d.ts +7 -0
  82. package/bin/tern/dtos/TernCreateAccountRequest.js +33 -0
  83. package/bin/tern/dtos/TernCreateAccountResponse.d.ts +5 -0
  84. package/bin/tern/dtos/TernCreateAccountResponse.js +25 -0
  85. package/bin/tern/dtos/TernCreateUserRequest.d.ts +15 -0
  86. package/bin/tern/dtos/TernCreateUserRequest.js +70 -0
  87. package/bin/tern/dtos/TernCreateUserResponse.d.ts +8 -0
  88. package/bin/tern/dtos/TernCreateUserResponse.js +37 -0
  89. package/bin/tern/dtos/TernGetAccountRequest.d.ts +5 -0
  90. package/bin/tern/dtos/TernGetAccountRequest.js +25 -0
  91. package/bin/tern/dtos/TernGetAccountResponse.d.ts +22 -0
  92. package/bin/tern/dtos/TernGetAccountResponse.js +87 -0
  93. package/bin/tern/dtos/TernGetUserRequest.d.ts +3 -0
  94. package/bin/tern/dtos/TernGetUserRequest.js +20 -0
  95. package/bin/tern/dtos/TernGetUserResponse.d.ts +24 -0
  96. package/bin/tern/dtos/TernGetUserResponse.js +96 -0
  97. package/bin/tern/enums/TernAccountStatusEnum.d.ts +4 -0
  98. package/bin/tern/enums/TernAccountStatusEnum.js +8 -0
  99. package/bin/tern/enums/TernAccountTypeEnum.d.ts +5 -0
  100. package/bin/tern/enums/TernAccountTypeEnum.js +9 -0
  101. package/bin/tern/index.d.ts +11 -0
  102. package/bin/tern/index.js +29 -0
  103. package/bin/transaction/dtos/TransactionGetResponse.d.ts +1 -0
  104. package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.d.ts +5 -0
  105. package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.js +6 -0
  106. package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.d.ts +7 -0
  107. package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.js +6 -0
  108. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfo.d.ts +6 -0
  109. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfo.js +6 -0
  110. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfoItem.d.ts +4 -0
  111. package/bin/transactionProcessor/dtos/private/PrivateProcessorAmountInfoItem.js +6 -0
  112. package/bin/transactionProcessor/dtos/private/PrivateProcessorCardInfo.d.ts +6 -0
  113. package/bin/transactionProcessor/dtos/private/PrivateProcessorCardInfo.js +6 -0
  114. package/bin/transactionProcessor/dtos/private/PrivateProcessorMerchantInfo.d.ts +7 -0
  115. package/bin/transactionProcessor/dtos/private/PrivateProcessorMerchantInfo.js +6 -0
  116. package/bin/transactionProcessor/dtos/private/PrivateProcessorTransactionInfo.d.ts +8 -0
  117. package/bin/transactionProcessor/dtos/private/PrivateProcessorTransactionInfo.js +6 -0
  118. package/bin/transactionProcessor/dtos/private/PrivateTransactionProcessorRequest.d.ts +16 -0
  119. package/bin/transactionProcessor/dtos/private/PrivateTransactionProcessorRequest.js +6 -0
  120. package/package.json +1 -1
  121. package/src/account/dtos/BankAccountAchTransferResponse.ts +1 -1
  122. package/src/transaction/dtos/TransactionGetResponse.ts +1 -0
  123. package/.idea/aws.xml +0 -11
  124. package/.idea/fiado-type-kit.iml +0 -12
  125. package/.idea/modules.xml +0 -8
  126. package/.idea/sonarlint/issuestore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
  127. package/.idea/sonarlint/issuestore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
  128. package/.idea/sonarlint/issuestore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  129. package/.idea/sonarlint/issuestore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
  130. package/.idea/sonarlint/issuestore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  131. package/.idea/sonarlint/issuestore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -2
  132. package/.idea/sonarlint/issuestore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  133. package/.idea/sonarlint/issuestore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
  134. package/.idea/sonarlint/issuestore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  135. package/.idea/sonarlint/issuestore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
  136. package/.idea/sonarlint/issuestore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  137. package/.idea/sonarlint/issuestore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
  138. package/.idea/sonarlint/issuestore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
  139. package/.idea/sonarlint/issuestore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  140. package/.idea/sonarlint/issuestore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  141. package/.idea/sonarlint/issuestore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
  142. package/.idea/sonarlint/issuestore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  143. package/.idea/sonarlint/issuestore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  144. package/.idea/sonarlint/issuestore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  145. package/.idea/sonarlint/issuestore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
  146. package/.idea/sonarlint/issuestore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  147. package/.idea/sonarlint/issuestore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
  148. package/.idea/sonarlint/issuestore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  149. package/.idea/sonarlint/issuestore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  150. package/.idea/sonarlint/issuestore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
  151. package/.idea/sonarlint/issuestore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  152. package/.idea/sonarlint/issuestore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
  153. package/.idea/sonarlint/issuestore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  154. package/.idea/sonarlint/issuestore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
  155. package/.idea/sonarlint/issuestore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  156. package/.idea/sonarlint/issuestore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  157. package/.idea/sonarlint/issuestore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  158. package/.idea/sonarlint/issuestore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
  159. package/.idea/sonarlint/issuestore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
  160. package/.idea/sonarlint/issuestore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  161. package/.idea/sonarlint/issuestore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
  162. package/.idea/sonarlint/issuestore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  163. package/.idea/sonarlint/issuestore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  164. package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  165. package/.idea/sonarlint/issuestore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
  166. package/.idea/sonarlint/issuestore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  167. package/.idea/sonarlint/issuestore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  168. package/.idea/sonarlint/issuestore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
  169. package/.idea/sonarlint/issuestore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  170. package/.idea/sonarlint/issuestore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
  171. package/.idea/sonarlint/issuestore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
  172. package/.idea/sonarlint/issuestore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  173. package/.idea/sonarlint/issuestore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  174. package/.idea/sonarlint/issuestore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
  175. package/.idea/sonarlint/issuestore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
  176. package/.idea/sonarlint/issuestore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  177. package/.idea/sonarlint/issuestore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  178. package/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  179. package/.idea/sonarlint/issuestore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
  180. package/.idea/sonarlint/issuestore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  181. package/.idea/sonarlint/issuestore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
  182. package/.idea/sonarlint/issuestore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
  183. package/.idea/sonarlint/issuestore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  184. package/.idea/sonarlint/issuestore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  185. package/.idea/sonarlint/issuestore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
  186. package/.idea/sonarlint/issuestore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
  187. package/.idea/sonarlint/issuestore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  188. package/.idea/sonarlint/issuestore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
  189. package/.idea/sonarlint/issuestore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
  190. package/.idea/sonarlint/issuestore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  191. package/.idea/sonarlint/issuestore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  192. package/.idea/sonarlint/issuestore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  193. package/.idea/sonarlint/issuestore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
  194. package/.idea/sonarlint/issuestore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
  195. package/.idea/sonarlint/issuestore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
  196. package/.idea/sonarlint/issuestore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
  197. package/.idea/sonarlint/issuestore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
  198. package/.idea/sonarlint/issuestore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
  199. package/.idea/sonarlint/issuestore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
  200. package/.idea/sonarlint/issuestore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
  201. package/.idea/sonarlint/issuestore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
  202. package/.idea/sonarlint/issuestore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
  203. package/.idea/sonarlint/issuestore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  204. package/.idea/sonarlint/issuestore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  205. package/.idea/sonarlint/issuestore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
  206. package/.idea/sonarlint/issuestore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
  207. package/.idea/sonarlint/issuestore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
  208. package/.idea/sonarlint/issuestore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
  209. package/.idea/sonarlint/issuestore/index.pb +0 -168
  210. package/.idea/sonarlint/securityhotspotstore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
  211. package/.idea/sonarlint/securityhotspotstore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
  212. package/.idea/sonarlint/securityhotspotstore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  213. package/.idea/sonarlint/securityhotspotstore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
  214. package/.idea/sonarlint/securityhotspotstore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  215. package/.idea/sonarlint/securityhotspotstore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -0
  216. package/.idea/sonarlint/securityhotspotstore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  217. package/.idea/sonarlint/securityhotspotstore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
  218. package/.idea/sonarlint/securityhotspotstore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  219. package/.idea/sonarlint/securityhotspotstore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
  220. package/.idea/sonarlint/securityhotspotstore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  221. package/.idea/sonarlint/securityhotspotstore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
  222. package/.idea/sonarlint/securityhotspotstore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
  223. package/.idea/sonarlint/securityhotspotstore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  224. package/.idea/sonarlint/securityhotspotstore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  225. package/.idea/sonarlint/securityhotspotstore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
  226. package/.idea/sonarlint/securityhotspotstore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  227. package/.idea/sonarlint/securityhotspotstore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  228. package/.idea/sonarlint/securityhotspotstore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  229. package/.idea/sonarlint/securityhotspotstore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
  230. package/.idea/sonarlint/securityhotspotstore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  231. package/.idea/sonarlint/securityhotspotstore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
  232. package/.idea/sonarlint/securityhotspotstore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  233. package/.idea/sonarlint/securityhotspotstore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  234. package/.idea/sonarlint/securityhotspotstore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
  235. package/.idea/sonarlint/securityhotspotstore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  236. package/.idea/sonarlint/securityhotspotstore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
  237. package/.idea/sonarlint/securityhotspotstore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  238. package/.idea/sonarlint/securityhotspotstore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
  239. package/.idea/sonarlint/securityhotspotstore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  240. package/.idea/sonarlint/securityhotspotstore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  241. package/.idea/sonarlint/securityhotspotstore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  242. package/.idea/sonarlint/securityhotspotstore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
  243. package/.idea/sonarlint/securityhotspotstore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
  244. package/.idea/sonarlint/securityhotspotstore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  245. package/.idea/sonarlint/securityhotspotstore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
  246. package/.idea/sonarlint/securityhotspotstore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  247. package/.idea/sonarlint/securityhotspotstore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  248. package/.idea/sonarlint/securityhotspotstore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  249. package/.idea/sonarlint/securityhotspotstore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
  250. package/.idea/sonarlint/securityhotspotstore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  251. package/.idea/sonarlint/securityhotspotstore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  252. package/.idea/sonarlint/securityhotspotstore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
  253. package/.idea/sonarlint/securityhotspotstore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  254. package/.idea/sonarlint/securityhotspotstore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
  255. package/.idea/sonarlint/securityhotspotstore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
  256. package/.idea/sonarlint/securityhotspotstore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  257. package/.idea/sonarlint/securityhotspotstore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  258. package/.idea/sonarlint/securityhotspotstore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
  259. package/.idea/sonarlint/securityhotspotstore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
  260. package/.idea/sonarlint/securityhotspotstore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  261. package/.idea/sonarlint/securityhotspotstore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  262. package/.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  263. package/.idea/sonarlint/securityhotspotstore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
  264. package/.idea/sonarlint/securityhotspotstore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  265. package/.idea/sonarlint/securityhotspotstore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
  266. package/.idea/sonarlint/securityhotspotstore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
  267. package/.idea/sonarlint/securityhotspotstore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  268. package/.idea/sonarlint/securityhotspotstore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  269. package/.idea/sonarlint/securityhotspotstore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
  270. package/.idea/sonarlint/securityhotspotstore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
  271. package/.idea/sonarlint/securityhotspotstore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  272. package/.idea/sonarlint/securityhotspotstore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
  273. package/.idea/sonarlint/securityhotspotstore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
  274. package/.idea/sonarlint/securityhotspotstore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  275. package/.idea/sonarlint/securityhotspotstore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  276. package/.idea/sonarlint/securityhotspotstore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  277. package/.idea/sonarlint/securityhotspotstore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
  278. package/.idea/sonarlint/securityhotspotstore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
  279. package/.idea/sonarlint/securityhotspotstore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
  280. package/.idea/sonarlint/securityhotspotstore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
  281. package/.idea/sonarlint/securityhotspotstore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
  282. package/.idea/sonarlint/securityhotspotstore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
  283. package/.idea/sonarlint/securityhotspotstore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
  284. package/.idea/sonarlint/securityhotspotstore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
  285. package/.idea/sonarlint/securityhotspotstore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
  286. package/.idea/sonarlint/securityhotspotstore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
  287. package/.idea/sonarlint/securityhotspotstore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  288. package/.idea/sonarlint/securityhotspotstore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  289. package/.idea/sonarlint/securityhotspotstore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
  290. package/.idea/sonarlint/securityhotspotstore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
  291. package/.idea/sonarlint/securityhotspotstore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
  292. package/.idea/sonarlint/securityhotspotstore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
  293. package/.idea/sonarlint/securityhotspotstore/index.pb +0 -168
  294. package/.idea/vcs.xml +0 -6
  295. package/bin/centralPayments/dtos/CentralPaymentsDocumentUploadResponse.d.ts +0 -10
  296. package/bin/centralPayments/dtos/CentralPaymentsDocumentUploadResponse.js +0 -6
  297. package/bin/centralPayments/dtos/UploadDocumentStatusDetail.d.ts +0 -9
  298. package/bin/centralPayments/dtos/UploadDocumentStatusDetail.js +0 -6
  299. package/bin/centralPayments/enums/UploadDocumentStatusEnum.d.ts +0 -4
  300. package/bin/centralPayments/enums/UploadDocumentStatusEnum.js +0 -8
@@ -0,0 +1,21 @@
1
+ import { Provider } from '../../provider/enums/Provider';
2
+ import { Country } from '../../country/enums/Country';
3
+ import { AccountStatus } from '../enums/AccountStatus';
4
+ import { TypeOfDirectoryId } from '../../directory/enums/TypeOfDirectoryId';
5
+ export declare class AccountResponse {
6
+ id: string;
7
+ typeOfAccountId: string;
8
+ externalAccountId: string;
9
+ externalSubAccountId: string | null;
10
+ provider: Provider;
11
+ directoryId: string;
12
+ typeOfDirectoryId: TypeOfDirectoryId;
13
+ currentBalance: number;
14
+ balanceLock: number;
15
+ countryId: Country;
16
+ createDate: string;
17
+ lastUpdateDate: string;
18
+ accountNumber: string;
19
+ routingNumber: string;
20
+ status: AccountStatus;
21
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountResponse = void 0;
4
+ class AccountResponse {
5
+ }
6
+ exports.AccountResponse = AccountResponse;
@@ -6,6 +6,6 @@ export declare class BankAccountAchTransferResponse {
6
6
  bankInfo: BankInfo;
7
7
  transferType: string;
8
8
  status: AchTransferStatusEnum;
9
- trackingNumber: string;
9
+ trackingNumber?: string;
10
10
  amount: number;
11
11
  }
@@ -0,0 +1,8 @@
1
+ import { BankAccountTypeEnum } from "../enums/BankAccountTypeEnum";
2
+ export declare class CreateBankAccountInput {
3
+ externalClientId?: string;
4
+ externalUserId?: string;
5
+ name: string;
6
+ lastName: string;
7
+ type: BankAccountTypeEnum;
8
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateBankAccountInput = void 0;
4
+ class CreateBankAccountInput {
5
+ }
6
+ exports.CreateBankAccountInput = CreateBankAccountInput;
@@ -0,0 +1,14 @@
1
+ import { AddressBase } from "../../address/dtos/AddressBase";
2
+ export declare class CreateBankAccountUserInput {
3
+ directoryId: string;
4
+ typeOfDirectoryId: string;
5
+ firstName: string;
6
+ lastName: string;
7
+ phoneNumber: string;
8
+ address: AddressBase;
9
+ email: string;
10
+ dob: string;
11
+ documentNumber: string;
12
+ documentType?: string;
13
+ gender?: "M" | "F";
14
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateBankAccountUserInput = void 0;
4
+ class CreateBankAccountUserInput {
5
+ }
6
+ exports.CreateBankAccountUserInput = CreateBankAccountUserInput;
@@ -0,0 +1,4 @@
1
+ export declare class PocketCreateRequest {
2
+ beneficiaryDirectoryId?: string;
3
+ accountId: string;
4
+ }
@@ -0,0 +1,31 @@
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.PocketCreateRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const regex_1 = require("../../helpers/constans/regex");
15
+ class PocketCreateRequest {
16
+ }
17
+ exports.PocketCreateRequest = PocketCreateRequest;
18
+ __decorate([
19
+ (0, class_validator_1.IsString)(),
20
+ (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
21
+ message: 'beneficiaryDirectoryId must be a valid UUID v4',
22
+ }),
23
+ __metadata("design:type", String)
24
+ ], PocketCreateRequest.prototype, "beneficiaryDirectoryId", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsString)(),
27
+ (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
28
+ message: 'accountId must be a valid UUID v4',
29
+ }),
30
+ __metadata("design:type", String)
31
+ ], PocketCreateRequest.prototype, "accountId", void 0);
@@ -0,0 +1,2 @@
1
+ export declare class PocketCreateResponse {
2
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PocketCreateResponse = void 0;
4
+ class PocketCreateResponse {
5
+ }
6
+ exports.PocketCreateResponse = PocketCreateResponse;
@@ -0,0 +1,5 @@
1
+ export declare enum AccountStatus {
2
+ ACTIVE = "ACTIVE",
3
+ INACTIVE = "INACTIVE",
4
+ BLOCKED = "BLOCKED"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountStatus = void 0;
4
+ var AccountStatus;
5
+ (function (AccountStatus) {
6
+ AccountStatus["ACTIVE"] = "ACTIVE";
7
+ AccountStatus["INACTIVE"] = "INACTIVE";
8
+ AccountStatus["BLOCKED"] = "BLOCKED";
9
+ })(AccountStatus || (exports.AccountStatus = AccountStatus = {}));
@@ -0,0 +1,4 @@
1
+ export declare class ExternalAccountType {
2
+ id?: number;
3
+ name?: string;
4
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ExternalAccountType = void 0;
4
+ class ExternalAccountType {
5
+ }
6
+ exports.ExternalAccountType = ExternalAccountType;
@@ -0,0 +1,34 @@
1
+ import { CountryId } from '../../country/enums/CountryId';
2
+ import { CardType } from '../enums/CardType';
3
+ import { Brand } from '../enums/Brand';
4
+ import { OwnershipType } from '../enums/OwnershipType';
5
+ import { Status } from '../enums/Status';
6
+ import { Shipping } from '../../address';
7
+ export declare class CardCreateRequest {
8
+ id?: string;
9
+ accountId?: string;
10
+ activationDate?: string;
11
+ countryId: CountryId;
12
+ type: CardType;
13
+ directoryId?: string;
14
+ externalCardId: string;
15
+ externalUserId: string;
16
+ externalShipmentId: string;
17
+ shipmentProvider: string;
18
+ externalShipmentTrackingId: string;
19
+ externalShipmentTrackingUrl: string;
20
+ holderName: string;
21
+ holderLastName: string;
22
+ imageUrl?: string;
23
+ brand: Brand;
24
+ ownershipType: OwnershipType;
25
+ lastFour: string;
26
+ providerName?: string;
27
+ status: Status;
28
+ statusUpdateDate?: string;
29
+ tenantId?: string;
30
+ spendLimitByTransaction?: number;
31
+ spendLimitByDay?: number;
32
+ spendLimitByMonth?: number;
33
+ shippedAddress?: Shipping;
34
+ }
@@ -0,0 +1,176 @@
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.CardCreateRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const CountryId_1 = require("../../country/enums/CountryId");
16
+ const CardType_1 = require("../enums/CardType");
17
+ const Brand_1 = require("../enums/Brand");
18
+ const OwnershipType_1 = require("../enums/OwnershipType");
19
+ const Status_1 = require("../enums/Status");
20
+ const regex_1 = require("../../helpers/constans/regex");
21
+ const address_1 = require("../../address");
22
+ class CardCreateRequest {
23
+ }
24
+ exports.CardCreateRequest = CardCreateRequest;
25
+ __decorate([
26
+ (0, class_validator_1.IsOptional)(),
27
+ (0, class_validator_1.IsString)(),
28
+ (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
29
+ message: 'id must be a valid UUID v4',
30
+ }),
31
+ __metadata("design:type", String)
32
+ ], CardCreateRequest.prototype, "id", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsOptional)(),
35
+ (0, class_validator_1.IsString)(),
36
+ (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
37
+ message: 'accountId must be a valid UUID v4 or null',
38
+ }),
39
+ __metadata("design:type", String)
40
+ ], CardCreateRequest.prototype, "accountId", void 0);
41
+ __decorate([
42
+ (0, class_validator_1.IsOptional)(),
43
+ (0, class_validator_1.IsString)(),
44
+ (0, class_validator_1.Matches)(regex_1.regexIso8601, {
45
+ message: 'activationDate must be a valid ISO 8601 date string',
46
+ }),
47
+ __metadata("design:type", String)
48
+ ], CardCreateRequest.prototype, "activationDate", void 0);
49
+ __decorate([
50
+ (0, class_validator_1.IsEnum)(CountryId_1.CountryId),
51
+ __metadata("design:type", String)
52
+ ], CardCreateRequest.prototype, "countryId", void 0);
53
+ __decorate([
54
+ (0, class_validator_1.IsEnum)(CardType_1.CardType),
55
+ __metadata("design:type", String)
56
+ ], CardCreateRequest.prototype, "type", void 0);
57
+ __decorate([
58
+ (0, class_validator_1.IsString)(),
59
+ (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
60
+ message: 'directoryId must be a valid UUID v4',
61
+ }),
62
+ __metadata("design:type", String)
63
+ ], CardCreateRequest.prototype, "directoryId", void 0);
64
+ __decorate([
65
+ (0, class_validator_1.IsString)(),
66
+ (0, class_validator_1.Length)(1, 100),
67
+ __metadata("design:type", String)
68
+ ], CardCreateRequest.prototype, "externalCardId", void 0);
69
+ __decorate([
70
+ (0, class_validator_1.IsString)(),
71
+ (0, class_validator_1.Length)(1, 100),
72
+ __metadata("design:type", String)
73
+ ], CardCreateRequest.prototype, "externalUserId", void 0);
74
+ __decorate([
75
+ (0, class_validator_1.IsOptional)(),
76
+ (0, class_validator_1.IsString)(),
77
+ (0, class_validator_1.Length)(1, 100),
78
+ __metadata("design:type", String)
79
+ ], CardCreateRequest.prototype, "externalShipmentId", void 0);
80
+ __decorate([
81
+ (0, class_validator_1.IsOptional)(),
82
+ (0, class_validator_1.IsString)(),
83
+ (0, class_validator_1.Length)(1, 50),
84
+ __metadata("design:type", String)
85
+ ], CardCreateRequest.prototype, "shipmentProvider", void 0);
86
+ __decorate([
87
+ (0, class_validator_1.IsOptional)(),
88
+ (0, class_validator_1.IsString)(),
89
+ (0, class_validator_1.Length)(1, 50),
90
+ __metadata("design:type", String)
91
+ ], CardCreateRequest.prototype, "externalShipmentTrackingId", void 0);
92
+ __decorate([
93
+ (0, class_validator_1.IsOptional)(),
94
+ (0, class_validator_1.IsString)(),
95
+ (0, class_validator_1.Length)(1, 200),
96
+ __metadata("design:type", String)
97
+ ], CardCreateRequest.prototype, "externalShipmentTrackingUrl", void 0);
98
+ __decorate([
99
+ (0, class_validator_1.IsOptional)(),
100
+ (0, class_validator_1.IsString)(),
101
+ (0, class_validator_1.Length)(1, 50),
102
+ __metadata("design:type", String)
103
+ ], CardCreateRequest.prototype, "holderName", void 0);
104
+ __decorate([
105
+ (0, class_validator_1.IsOptional)(),
106
+ (0, class_validator_1.IsString)(),
107
+ (0, class_validator_1.Length)(1, 50),
108
+ __metadata("design:type", String)
109
+ ], CardCreateRequest.prototype, "holderLastName", void 0);
110
+ __decorate([
111
+ (0, class_validator_1.IsOptional)(),
112
+ (0, class_validator_1.IsString)(),
113
+ (0, class_validator_1.Length)(1, 200),
114
+ __metadata("design:type", String)
115
+ ], CardCreateRequest.prototype, "imageUrl", void 0);
116
+ __decorate([
117
+ (0, class_validator_1.IsEnum)(Brand_1.Brand),
118
+ __metadata("design:type", String)
119
+ ], CardCreateRequest.prototype, "brand", void 0);
120
+ __decorate([
121
+ (0, class_validator_1.IsEnum)(OwnershipType_1.OwnershipType),
122
+ __metadata("design:type", String)
123
+ ], CardCreateRequest.prototype, "ownershipType", void 0);
124
+ __decorate([
125
+ (0, class_validator_1.IsString)(),
126
+ (0, class_validator_1.Length)(4, 4),
127
+ __metadata("design:type", String)
128
+ ], CardCreateRequest.prototype, "lastFour", void 0);
129
+ __decorate([
130
+ (0, class_validator_1.IsOptional)(),
131
+ (0, class_validator_1.IsString)(),
132
+ (0, class_validator_1.Length)(1, 50),
133
+ __metadata("design:type", String)
134
+ ], CardCreateRequest.prototype, "providerName", void 0);
135
+ __decorate([
136
+ (0, class_validator_1.IsEnum)(Status_1.Status),
137
+ __metadata("design:type", String)
138
+ ], CardCreateRequest.prototype, "status", void 0);
139
+ __decorate([
140
+ (0, class_validator_1.IsOptional)(),
141
+ (0, class_validator_1.IsString)(),
142
+ __metadata("design:type", String)
143
+ ], CardCreateRequest.prototype, "statusUpdateDate", void 0);
144
+ __decorate([
145
+ (0, class_validator_1.IsOptional)(),
146
+ (0, class_validator_1.IsString)(),
147
+ (0, class_validator_1.Length)(1, 50),
148
+ __metadata("design:type", String)
149
+ ], CardCreateRequest.prototype, "tenantId", void 0);
150
+ __decorate([
151
+ (0, class_validator_1.IsOptional)(),
152
+ (0, class_validator_1.IsNumber)(),
153
+ (0, class_validator_1.Min)(1),
154
+ (0, class_validator_1.Max)(9999999999),
155
+ __metadata("design:type", Number)
156
+ ], CardCreateRequest.prototype, "spendLimitByTransaction", void 0);
157
+ __decorate([
158
+ (0, class_validator_1.IsOptional)(),
159
+ (0, class_validator_1.IsNumber)(),
160
+ (0, class_validator_1.Min)(1),
161
+ (0, class_validator_1.Max)(9999999999),
162
+ __metadata("design:type", Number)
163
+ ], CardCreateRequest.prototype, "spendLimitByDay", void 0);
164
+ __decorate([
165
+ (0, class_validator_1.IsOptional)(),
166
+ (0, class_validator_1.IsNumber)(),
167
+ (0, class_validator_1.Min)(1),
168
+ (0, class_validator_1.Max)(9999999999),
169
+ __metadata("design:type", Number)
170
+ ], CardCreateRequest.prototype, "spendLimitByMonth", void 0);
171
+ __decorate([
172
+ (0, class_validator_1.IsOptional)(),
173
+ (0, class_validator_1.ValidateNested)(),
174
+ (0, class_transformer_1.Type)(() => address_1.Shipping),
175
+ __metadata("design:type", address_1.Shipping)
176
+ ], CardCreateRequest.prototype, "shippedAddress", void 0);
@@ -6,8 +6,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.CardUpdateKeyConstraint = exports.IsReasonRequiredForCancelledStatusConstraint = void 0;
10
- exports.IsValueValid = IsValueValid;
9
+ exports.IsValueValid = exports.CardUpdateKeyConstraint = exports.IsReasonRequiredForCancelledStatusConstraint = void 0;
11
10
  const class_validator_1 = require("class-validator");
12
11
  const Status_1 = require("../enums/Status");
13
12
  const UpdateKey_1 = require("../enums/UpdateKey");
@@ -71,3 +70,4 @@ function IsValueValid(validationOptions) {
71
70
  });
72
71
  };
73
72
  }
73
+ exports.IsValueValid = IsValueValid;
@@ -6,8 +6,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.IsPhoneNumberConstraint = void 0;
10
- exports.IsPhoneNumberFiado = IsPhoneNumberFiado;
9
+ exports.IsPhoneNumberFiado = exports.IsPhoneNumberConstraint = void 0;
11
10
  const class_validator_1 = require("class-validator");
12
11
  const regex_1 = require("../../helpers/constans/regex");
13
12
  let IsPhoneNumberConstraint = class IsPhoneNumberConstraint {
@@ -37,3 +36,4 @@ function IsPhoneNumberFiado(validationOptions) {
37
36
  });
38
37
  };
39
38
  }
39
+ exports.IsPhoneNumberFiado = IsPhoneNumberFiado;
@@ -0,0 +1,13 @@
1
+ import { TypeOfContactIdEnum } from "../enums/TypeOfContactIdEnum";
2
+ export declare class GetAllContactInfoResponse {
3
+ id: string;
4
+ contact: string;
5
+ directoryId: string;
6
+ isPrincipal: boolean;
7
+ typeOfContactId: TypeOfContactIdEnum;
8
+ isWhatsApp: boolean;
9
+ isVoice: boolean;
10
+ isSMS: boolean;
11
+ isApp: boolean;
12
+ note: string;
13
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetAllContactInfoResponse = void 0;
4
+ class GetAllContactInfoResponse {
5
+ }
6
+ exports.GetAllContactInfoResponse = GetAllContactInfoResponse;
@@ -0,0 +1,3 @@
1
+ export declare class GroupDirectoryRetationsUpdateRequest {
2
+ agent: string;
3
+ }
@@ -0,0 +1,22 @@
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.GroupDirectoryRetationsUpdateRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class GroupDirectoryRetationsUpdateRequest {
15
+ }
16
+ exports.GroupDirectoryRetationsUpdateRequest = GroupDirectoryRetationsUpdateRequest;
17
+ __decorate([
18
+ (0, class_validator_1.IsOptional)(),
19
+ (0, class_validator_1.IsString)(),
20
+ (0, class_validator_1.Length)(1, 20),
21
+ __metadata("design:type", String)
22
+ ], GroupDirectoryRetationsUpdateRequest.prototype, "agent", void 0);
package/bin/index.js CHANGED
@@ -15,23 +15,13 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || (function () {
19
- var ownKeys = function(o) {
20
- ownKeys = Object.getOwnPropertyNames || function (o) {
21
- var ar = [];
22
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
- return ar;
24
- };
25
- return ownKeys(o);
26
- };
27
- return function (mod) {
28
- if (mod && mod.__esModule) return mod;
29
- var result = {};
30
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
- __setModuleDefault(result, mod);
32
- return result;
33
- };
34
- })();
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
35
25
  Object.defineProperty(exports, "__esModule", { value: true });
36
26
  exports.Collector = exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = exports.Device = exports.Observations = exports.IssuanceBusiness = exports.Blacklist = exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
37
27
  exports.Account = __importStar(require("./account"));
@@ -0,0 +1,8 @@
1
+ export declare enum LegalDocumentType {
2
+ TERMS_AND_CONDITIONS_APP = "TERMS_AND_CONDITIONS_APP",
3
+ TERMS_AND_CONDITIONS_USA = "TERMS_AND_CONDITIONS_USA",
4
+ TERMS_AND_CONDITIONS_MEX = "TERMS_AND_CONDITIONS_MEX",
5
+ PRIVACY_POLICY_USA = "PRIVACY_POLICY_USA",
6
+ PRIVACY_POLICY_MEX = "PRIVACY_POLICY_MEX",
7
+ COMMUNICATION_POLICIES = "COMMUNICATION_POLICIES"
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LegalDocumentType = void 0;
4
+ var LegalDocumentType;
5
+ (function (LegalDocumentType) {
6
+ LegalDocumentType["TERMS_AND_CONDITIONS_APP"] = "TERMS_AND_CONDITIONS_APP";
7
+ LegalDocumentType["TERMS_AND_CONDITIONS_USA"] = "TERMS_AND_CONDITIONS_USA";
8
+ LegalDocumentType["TERMS_AND_CONDITIONS_MEX"] = "TERMS_AND_CONDITIONS_MEX";
9
+ LegalDocumentType["PRIVACY_POLICY_USA"] = "PRIVACY_POLICY_USA";
10
+ LegalDocumentType["PRIVACY_POLICY_MEX"] = "PRIVACY_POLICY_MEX";
11
+ LegalDocumentType["COMMUNICATION_POLICIES"] = "COMMUNICATION_POLICIES";
12
+ })(LegalDocumentType || (exports.LegalDocumentType = LegalDocumentType = {}));
@@ -0,0 +1,12 @@
1
+ import { CountryId } from "../../country";
2
+ import { MembershipDirectoryStatusEnum } from "../enums/MembershipDirectoryStatusEnum";
3
+ import { MembershipProviderEnum } from "../enums/MembershipProviderEnum";
4
+ export declare class CreateMembershipDirectoryUserRequest {
5
+ membershipId: string;
6
+ directoryId: string;
7
+ peopleId: string;
8
+ status?: MembershipDirectoryStatusEnum;
9
+ provider?: MembershipProviderEnum;
10
+ collectorPreferredDay?: number;
11
+ countryId: CountryId;
12
+ }
@@ -0,0 +1,54 @@
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.CreateMembershipDirectoryUserRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const country_1 = require("../../country");
15
+ const MembershipDirectoryStatusEnum_1 = require("../enums/MembershipDirectoryStatusEnum");
16
+ const MembershipProviderEnum_1 = require("../enums/MembershipProviderEnum");
17
+ class CreateMembershipDirectoryUserRequest {
18
+ }
19
+ exports.CreateMembershipDirectoryUserRequest = CreateMembershipDirectoryUserRequest;
20
+ __decorate([
21
+ (0, class_validator_1.IsNotEmpty)(),
22
+ (0, class_validator_1.IsString)(),
23
+ __metadata("design:type", String)
24
+ ], CreateMembershipDirectoryUserRequest.prototype, "membershipId", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsNotEmpty)(),
27
+ (0, class_validator_1.IsString)(),
28
+ __metadata("design:type", String)
29
+ ], CreateMembershipDirectoryUserRequest.prototype, "directoryId", void 0);
30
+ __decorate([
31
+ (0, class_validator_1.IsNotEmpty)(),
32
+ (0, class_validator_1.IsString)(),
33
+ __metadata("design:type", String)
34
+ ], CreateMembershipDirectoryUserRequest.prototype, "peopleId", void 0);
35
+ __decorate([
36
+ (0, class_validator_1.IsOptional)(),
37
+ (0, class_validator_1.IsEnum)(MembershipDirectoryStatusEnum_1.MembershipDirectoryStatusEnum),
38
+ __metadata("design:type", String)
39
+ ], CreateMembershipDirectoryUserRequest.prototype, "status", void 0);
40
+ __decorate([
41
+ (0, class_validator_1.IsOptional)(),
42
+ (0, class_validator_1.IsEnum)(MembershipProviderEnum_1.MembershipProviderEnum),
43
+ __metadata("design:type", String)
44
+ ], CreateMembershipDirectoryUserRequest.prototype, "provider", void 0);
45
+ __decorate([
46
+ (0, class_validator_1.IsOptional)(),
47
+ (0, class_validator_1.IsNumber)(),
48
+ __metadata("design:type", Number)
49
+ ], CreateMembershipDirectoryUserRequest.prototype, "collectorPreferredDay", void 0);
50
+ __decorate([
51
+ (0, class_validator_1.IsNotEmpty)(),
52
+ (0, class_validator_1.IsEnum)(country_1.CountryId),
53
+ __metadata("design:type", String)
54
+ ], CreateMembershipDirectoryUserRequest.prototype, "countryId", void 0);
@@ -0,0 +1,14 @@
1
+ import { CountryId } from "../../country";
2
+ import { MembershipTypeEnum } from "../enums/MembershipTypeEnum";
3
+ import { MembershipStatusEnum } from "../enums/MembershipStatusEnum";
4
+ import { MembershipFlowEnum } from "../enums/MembershipFlowEnum";
5
+ import { MembershipProviderEnum } from "../enums/MembershipProviderEnum";
6
+ export declare class CreateMembershipRequest {
7
+ name: string;
8
+ description: string;
9
+ status?: MembershipStatusEnum;
10
+ type: MembershipTypeEnum;
11
+ countryId: CountryId;
12
+ flow: MembershipFlowEnum;
13
+ provider: MembershipProviderEnum;
14
+ }