@fiado/type-kit 1.8.25 → 1.8.26

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 (641) hide show
  1. package/.idea/aws.xml +10 -10
  2. package/.idea/fiado-type-kit.iml +11 -11
  3. package/.idea/modules.xml +7 -7
  4. package/.idea/vcs.xml +5 -5
  5. package/README.md +70 -70
  6. package/bin/account/enums/BankAccountTypeEnum.d.ts +3 -1
  7. package/bin/account/enums/BankAccountTypeEnum.js +3 -0
  8. package/bin/contactInfo/dtos/GetAllContactInfoResponse.d.ts +13 -0
  9. package/bin/contactInfo/dtos/GetAllContactInfoResponse.js +6 -0
  10. package/bin/index.js +7 -17
  11. package/package.json +23 -23
  12. package/src/account/dtos/AccountCreateRequest.ts +100 -100
  13. package/src/account/dtos/AccountCreateResponse.ts +7 -7
  14. package/src/account/dtos/AccountInfo.ts +43 -43
  15. package/src/account/dtos/AccountUpdateBalanceRequest.ts +6 -6
  16. package/src/account/dtos/AccountUpdateRequest.ts +40 -40
  17. package/src/account/dtos/BankAccountExternalAddress.ts +17 -17
  18. package/src/account/dtos/BankAccountP2pTransferRequest.ts +7 -7
  19. package/src/account/dtos/CreateBankAccountRequest.ts +11 -11
  20. package/src/account/dtos/CreateBankAccountResponse.ts +8 -8
  21. package/src/account/dtos/CreateBankAccountUserRequest.ts +20 -20
  22. package/src/account/dtos/CreateBankAccountUserResponse.ts +14 -14
  23. package/src/account/dtos/ExchangeInfo.ts +8 -8
  24. package/src/account/dtos/ExecuteP2pOperationRequest.ts +11 -11
  25. package/src/account/dtos/ExecutePocketOperationRequest.ts +5 -5
  26. package/src/account/dtos/GetAccountBalanceResponse.ts +46 -46
  27. package/src/account/dtos/GetAccountResponse.ts +62 -62
  28. package/src/account/dtos/GetAccountResponseList.ts +5 -5
  29. package/src/account/dtos/GetBankAccountRequest.ts +3 -3
  30. package/src/account/dtos/GetBankAccountResponse.ts +22 -22
  31. package/src/account/dtos/GetBankAccountSensitiveInformationRequest.ts +5 -5
  32. package/src/account/dtos/GetBankAccountSensitiveInformationResponse.ts +8 -8
  33. package/src/account/dtos/GetBankAccountUserRequest.ts +2 -2
  34. package/src/account/dtos/GetBankAccountUserResponse.ts +25 -25
  35. package/src/account/dtos/GetPocketBalanceResponse.ts +46 -46
  36. package/src/account/dtos/GetPocketResponse.ts +8 -8
  37. package/src/account/dtos/PocketBalanceItem.ts +17 -17
  38. package/src/account/dtos/PocketItem.ts +43 -43
  39. package/src/account/dtos/SPEITransferCreateRequest.ts +42 -42
  40. package/src/account/dtos/SPEITransferResponse.ts +22 -22
  41. package/src/account/dtos/SPEITransferUpdateRequest.ts +43 -43
  42. package/src/account/dtos/UpdateBalanceOperation.ts +10 -10
  43. package/src/account/dtos/UpdateBankAccountUserRequest.ts +26 -26
  44. package/src/account/dtos/UpdateBankAccountUserResponse.ts +3 -3
  45. package/src/account/entities/AccountEntityBase.ts +12 -12
  46. package/src/account/enums/AccountEntityStatusEnum.ts +6 -6
  47. package/src/account/enums/AccountLevelEnum.ts +5 -5
  48. package/src/account/enums/BankAccountP2pTransferType.ts +5 -5
  49. package/src/account/enums/BankAccountTypeEnum.ts +5 -2
  50. package/src/account/enums/BankAccountUserStatusEnum.ts +4 -4
  51. package/src/account/enums/CreateBankAccountUserStatusEnum.ts +5 -5
  52. package/src/account/enums/SpeiTransferStatusEnum.ts +10 -10
  53. package/src/account/enums/UserEntityStatusEnum.ts +4 -4
  54. package/src/account/index.ts +49 -49
  55. package/src/accountIssuanceBusiness/enums/Status.ts +12 -12
  56. package/src/accountIssuanceBusiness/index.ts +2 -2
  57. package/src/activity/dtos/ActivityMessageRequest.ts +30 -30
  58. package/src/activity/dtos/ActivityMessageResponse.ts +24 -24
  59. package/src/activity/dtos/ActivityQueueMessage.ts +9 -9
  60. package/src/activity/index.ts +8 -8
  61. package/src/address/dtos/AddressBase.ts +130 -130
  62. package/src/address/dtos/AddressCreateRequest.ts +6 -6
  63. package/src/address/dtos/AddressResponse.ts +41 -41
  64. package/src/address/dtos/AddressShippingCardRequest.ts +12 -12
  65. package/src/address/dtos/AddressShippingCardResponse.ts +11 -11
  66. package/src/address/dtos/Geometry.ts +4 -4
  67. package/src/address/dtos/OfficeDetails.ts +30 -30
  68. package/src/address/dtos/OperationSchedule.ts +8 -8
  69. package/src/address/dtos/Place.ts +83 -83
  70. package/src/address/dtos/Shipping.ts +36 -36
  71. package/src/address/dtos/Timezone.ts +5 -5
  72. package/src/address/enums/AddressProvider.ts +10 -10
  73. package/src/address/enums/AddressStatus.ts +9 -9
  74. package/src/address/index.ts +16 -16
  75. package/src/apiResponse/dtos/FiadoApiResponse.ts +7 -7
  76. package/src/app/enums/App.ts +10 -10
  77. package/src/app/index.ts +3 -3
  78. package/src/appSelectionData/dtos/AppSelectionDataCreateRequest.ts +27 -27
  79. package/src/appSelectionData/index.ts +4 -4
  80. package/src/auth/dtos/ChallengeBackofficeRequest.ts +22 -22
  81. package/src/auth/dtos/ResetPasswordBackofficeRequest.ts +9 -9
  82. package/src/auth/dtos/SignInBackofficeRequest.ts +13 -13
  83. package/src/auth/dtos/SignInBackofficeResponse.ts +6 -6
  84. package/src/auth/dtos/SignUpBackofficeRequest.ts +18 -18
  85. package/src/auth/index.ts +7 -7
  86. package/src/authentication/dtos/ChangePasswordRequest.ts +16 -16
  87. package/src/authentication/dtos/RefreshTokenRequest.ts +12 -12
  88. package/src/authentication/dtos/RespondToAuthChallengeRequest.ts +24 -24
  89. package/src/authentication/dtos/SignInRequest.ts +30 -30
  90. package/src/authentication/dtos/SignUpAdditionalRequest.ts +32 -32
  91. package/src/authentication/dtos/SignUpAdditionalResponse.ts +5 -5
  92. package/src/authentication/dtos/SignUpRequest.ts +21 -21
  93. package/src/authentication/dtos/UserConfirmRequest.ts +13 -13
  94. package/src/authentication/index.ts +14 -14
  95. package/src/bankAccount/dtos/ExternalAccountCurrency.ts +3 -3
  96. package/src/bankAccount/dtos/ExternalAccountType.ts +3 -3
  97. package/src/bankAccount/dtos/GetExternalBankAccountRequest.ts +11 -11
  98. package/src/bankAccount/dtos/GetExternalBankAccountResponse.ts +15 -15
  99. package/src/bankAccount/dtos/GetExternalBankResponse.ts +13 -13
  100. package/src/bankAccount/index.ts +4 -4
  101. package/src/bbvaRst/dtos/CreateRSTTransactionRequest.ts +14 -14
  102. package/src/bbvaRst/dtos/CreateRSTTransactionResponse.ts +9 -9
  103. package/src/bbvaRst/enums/RSTStatusEnum.ts +4 -4
  104. package/src/bbvaRst/index.ts +2 -2
  105. package/src/beneficiary/dtos/AccountBeneficiaryCreateRequest.ts +56 -56
  106. package/src/beneficiary/dtos/AccountBeneficiaryResponse.ts +26 -26
  107. package/src/beneficiary/dtos/AccountBeneficiaryUpdateRequest.ts +42 -42
  108. package/src/beneficiary/enums/AccountType.ts +6 -6
  109. package/src/beneficiary/index.ts +7 -7
  110. package/src/blacklist/dtos/CreateBlockedPersonRequest.ts +32 -32
  111. package/src/blacklist/dtos/GetBlockedPersonsResponse.ts +84 -84
  112. package/src/blacklist/dtos/UpdateBlockedPersonRequest.ts +42 -42
  113. package/src/blacklist/enums/IdentificationParameter.ts +5 -5
  114. package/src/blacklist/index.ts +7 -7
  115. package/src/card/dtos/AccountCancelGetResponse.ts +25 -25
  116. package/src/card/dtos/AccountIssuanceStepConfig.ts +13 -13
  117. package/src/card/dtos/CardActivateRequest.ts +12 -12
  118. package/src/card/dtos/CardAdditionalRequest.ts +25 -25
  119. package/src/card/dtos/CardAdditionalResponse.ts +14 -14
  120. package/src/card/dtos/CardApplicationRequest.ts +35 -35
  121. package/src/card/dtos/CardBalanceResponse.ts +10 -10
  122. package/src/card/dtos/CardCreateAdditionalRequest.ts +82 -82
  123. package/src/card/dtos/CardResponse.ts +34 -34
  124. package/src/card/dtos/CardSensitiveInformationResponse.ts +18 -18
  125. package/src/card/dtos/CardShipmentQueueMessage.ts +7 -7
  126. package/src/card/dtos/CardShipmentUpdateRequest.ts +19 -19
  127. package/src/card/dtos/CardSummaryResponse.ts +10 -10
  128. package/src/card/dtos/CardUpdateIssuanceRequest.ts +20 -20
  129. package/src/card/dtos/CardUpdateRequest.ts +11 -11
  130. package/src/card/dtos/Internal/ActivateBankAccountCardRequest.ts +11 -11
  131. package/src/card/dtos/Internal/ActivateBankAccountCardResponse.ts +4 -4
  132. package/src/card/dtos/Internal/AssignCardRequest.ts +8 -8
  133. package/src/card/dtos/Internal/BatchBeneficiary.ts +6 -6
  134. package/src/card/dtos/Internal/BatchCardAttributes.ts +9 -9
  135. package/src/card/dtos/Internal/BatchCardInitialLoad.ts +3 -3
  136. package/src/card/dtos/Internal/BatchPointOfContact.ts +4 -4
  137. package/src/card/dtos/Internal/BatchShippingAddress.ts +7 -7
  138. package/src/card/dtos/Internal/CardBatchRequest.ts +13 -13
  139. package/src/card/dtos/Internal/CardBatchResponse.ts +19 -19
  140. package/src/card/dtos/Internal/CardStatementListResponse.ts +6 -6
  141. package/src/card/dtos/Internal/CreateBankAccountCardRequest.ts +16 -16
  142. package/src/card/dtos/Internal/CreateBankAccountCardResponse.ts +8 -8
  143. package/src/card/dtos/Internal/CreateBankAccountCardShippingRequest.ts +14 -14
  144. package/src/card/dtos/Internal/CreateBankAccountCardShippingResponse.ts +12 -12
  145. package/src/card/dtos/Internal/GetBankAccountCardBalanceResponse.ts +12 -12
  146. package/src/card/dtos/Internal/GetBankAccountCardResponse.ts +34 -34
  147. package/src/card/dtos/Internal/GetBankAccountShippingRequest.ts +5 -5
  148. package/src/card/dtos/Internal/GetBankAccountShippingResponse.ts +19 -19
  149. package/src/card/dtos/Internal/StatementDocumentResponse.ts +2 -2
  150. package/src/card/dtos/Internal/UpdateBankAccountCardRequest.ts +22 -22
  151. package/src/card/dtos/Internal/UpdateBankAccountCardResponse.ts +7 -7
  152. package/src/card/enums/AccountCancellationStatus.ts +7 -7
  153. package/src/card/enums/Brand.ts +7 -7
  154. package/src/card/enums/CardIssuanceStatus.ts +5 -5
  155. package/src/card/enums/CardIssuing.ts +6 -6
  156. package/src/card/enums/CardType.ts +4 -4
  157. package/src/card/enums/CardUpdateKey.ts +4 -4
  158. package/src/card/enums/CreditOrDebit.ts +5 -5
  159. package/src/card/enums/DeliveryChannel.ts +7 -7
  160. package/src/card/enums/ExternalShippingStatus.ts +14 -14
  161. package/src/card/enums/ExternalShippingStatusDetails.ts +53 -53
  162. package/src/card/enums/IssuanceType.ts +5 -5
  163. package/src/card/enums/NominatedOrInnominated.ts +8 -8
  164. package/src/card/enums/OwnershipType.ts +3 -3
  165. package/src/card/enums/Program.ts +6 -6
  166. package/src/card/enums/ShippingStatus.ts +8 -8
  167. package/src/card/enums/Status.ts +6 -6
  168. package/src/card/enums/UpdateKey.ts +5 -5
  169. package/src/card/enums/VirtualOrPhysical.ts +6 -6
  170. package/src/card/enums/issuance/IssuanceFlow.ts +8 -8
  171. package/src/card/enums/issuance/KycStatus.ts +13 -13
  172. package/src/card/enums/issuance/UserStatus.ts +7 -7
  173. package/src/card/index.ts +68 -68
  174. package/src/card/validations/CardUpdateKeyConstraint.ts +53 -53
  175. package/src/card/validations/IsPhoneNumberConstraint.ts +29 -29
  176. package/src/centralPayments/dtos/CentralPaymentsDocumentImages.ts +6 -6
  177. package/src/centralPayments/dtos/CentralPaymentsDocumentUploadRequest.ts +6 -6
  178. package/src/centralPayments/dtos/HealthcheckResponse.ts +8 -8
  179. package/src/centralPayments/dtos/OOWAnswer.ts +3 -3
  180. package/src/centralPayments/dtos/OOWQuestionsResponse.ts +6 -6
  181. package/src/centralPayments/dtos/SubmitOOWQuestionAnswersRequest.ts +3 -3
  182. package/src/centralPayments/enums/ServiceStatusEnum.ts +4 -4
  183. package/src/centralPayments/index.ts +7 -7
  184. package/src/cognitoConnector/dtos/ChangePasswordRequest.ts +20 -20
  185. package/src/cognitoConnector/dtos/GetUserRequest.ts +12 -12
  186. package/src/cognitoConnector/dtos/GetUserResponse.ts +9 -9
  187. package/src/cognitoConnector/dtos/RefreshTokenRequest.ts +14 -14
  188. package/src/cognitoConnector/dtos/RefreshTokenResponse.ts +6 -6
  189. package/src/cognitoConnector/dtos/RespondToAuthChallengeRequest.ts +25 -25
  190. package/src/cognitoConnector/dtos/SetPasswordRequest.ts +19 -19
  191. package/src/cognitoConnector/dtos/SignInRequest.ts +20 -20
  192. package/src/cognitoConnector/dtos/SignInResponse.ts +11 -11
  193. package/src/cognitoConnector/dtos/SignUpConfirmRequest.ts +17 -17
  194. package/src/cognitoConnector/dtos/SignUpRequest.ts +22 -22
  195. package/src/cognitoConnector/dtos/SignUpResponse.ts +8 -8
  196. package/src/cognitoConnector/enums/SyncStatus.ts +6 -6
  197. package/src/cognitoConnector/index.ts +24 -24
  198. package/src/company/enums/Company.ts +7 -7
  199. package/src/company/index.ts +6 -6
  200. package/src/contactInfo/dtos/ContactInfoBackOfficeResponse.ts +9 -9
  201. package/src/contactInfo/dtos/ContactInfoCreateBackOfficeRequest.ts +10 -10
  202. package/src/contactInfo/dtos/ContactInfoCreateRequest.ts +2 -2
  203. package/src/contactInfo/dtos/ContactInfoRequest.ts +29 -29
  204. package/src/contactInfo/dtos/ContactInfoResponse.ts +30 -30
  205. package/src/contactInfo/dtos/ContactInfoUpdateBackOfficeRequest.ts +15 -15
  206. package/src/contactInfo/dtos/ContactInfoUpdateRequest.ts +4 -4
  207. package/src/contactInfo/enums/TypeOfContactIdEnum.ts +3 -3
  208. package/src/contactInfo/index.ts +7 -7
  209. package/src/contract/dtos/ContractCreateRequest.ts +29 -29
  210. package/src/contract/dtos/ContractCreateResponse.ts +2 -2
  211. package/src/contract/index.ts +4 -4
  212. package/src/country/dtos/CreateCountryRequest.ts +65 -65
  213. package/src/country/dtos/UpdateCountryRequest.ts +65 -65
  214. package/src/country/enums/CountriesISO3.ts +220 -220
  215. package/src/country/enums/Country.ts +6 -6
  216. package/src/country/enums/CountryISO2ToISO3.ts +69 -69
  217. package/src/country/enums/CountryISO3ToISO2.ts +61 -61
  218. package/src/country/enums/CountryId.ts +6 -6
  219. package/src/country/index.ts +13 -13
  220. package/src/country/utilities/CountryCodeConverter.ts +13 -13
  221. package/src/creditContract/dtos/CreditContractCreateRequest.ts +53 -53
  222. package/src/creditContract/enums/InstrumentEnum.ts +5 -5
  223. package/src/creditContract/index.ts +5 -5
  224. package/src/currency/dtos/CurrencyResponse.ts +8 -8
  225. package/src/currency/index.ts +2 -2
  226. package/src/device/dtos/RegisterDeviceRequest.ts +20 -20
  227. package/src/device/dtos/ReplaceDeviceRequest.ts +23 -23
  228. package/src/device/enums/DeviceStatusEnum.ts +4 -4
  229. package/src/device/enums/DeviceTypeEnum.ts +4 -4
  230. package/src/device/index.ts +7 -7
  231. package/src/directory/dtos/DirectoryBackoffice.ts +16 -16
  232. package/src/directory/dtos/DirectoryBackofficeCreateRequest.ts +22 -22
  233. package/src/directory/dtos/DirectoryBackofficeResponse.ts +17 -17
  234. package/src/directory/dtos/DirectoryBackofficeUpdateRequest.ts +34 -34
  235. package/src/directory/dtos/DirectoryResponse.ts +19 -19
  236. package/src/directory/dtos/External.ts +6 -6
  237. package/src/directory/enums/DirectoryBackofficeStatusEnum.ts +4 -4
  238. package/src/directory/enums/Profile.ts +6 -6
  239. package/src/directory/enums/Scope.ts +7 -7
  240. package/src/directory/enums/Status.ts +9 -9
  241. package/src/directory/enums/TypeOfDirectoryId.ts +6 -6
  242. package/src/directory/index.ts +13 -13
  243. package/src/eventBridge/dto/EventBridgeMessageRequest.ts +4 -4
  244. package/src/eventBridge/index.ts +1 -1
  245. package/src/exchangeRate/dtos/ExchangeRateCreateRequest.ts +50 -50
  246. package/src/exchangeRate/dtos/ExchangeRateCreateResponse.ts +4 -4
  247. package/src/exchangeRate/dtos/ExchangeRateResponse.ts +19 -19
  248. package/src/exchangeRate/dtos/GetExchangeRatesRequest.ts +3 -3
  249. package/src/exchangeRate/enums/ExchangeRateStatus.ts +5 -5
  250. package/src/exchangeRate/index.ts +9 -9
  251. package/src/fraudPreventionEngine/dtos/CreateAccountLevelRequest.ts +9 -9
  252. package/src/fraudPreventionEngine/dtos/GetAccountLevelParams.ts +5 -5
  253. package/src/fraudPreventionEngine/dtos/GetAccountLevelResponse.ts +7 -7
  254. package/src/fraudPreventionEngine/enums/AccountLevelTenantEnum.ts +5 -5
  255. package/src/fraudPreventionEngine/index.ts +5 -5
  256. package/src/genericMessage/dto/GenericMessageRequest.ts +17 -17
  257. package/src/genericMessage/enums/GenericMessageSourceEnum.ts +3 -3
  258. package/src/genericMessage/index.ts +1 -1
  259. package/src/group/dtos/GroupAddDirectoryRequest.ts +27 -27
  260. package/src/group/dtos/GroupCreateRequest.ts +54 -54
  261. package/src/group/dtos/GroupDirectoryRelationsResponse.ts +20 -20
  262. package/src/group/dtos/GroupDirectoryRelationsUpdateRequest.ts +10 -10
  263. package/src/group/dtos/GroupResponse.ts +17 -17
  264. package/src/group/dtos/GroupUpdateRequest.ts +31 -31
  265. package/src/group/enums/GroupAction.ts +8 -8
  266. package/src/group/enums/GroupStatus.ts +6 -6
  267. package/src/group/enums/RelationStatus.ts +8 -8
  268. package/src/group/enums/RelationType.ts +9 -9
  269. package/src/group/index.ts +18 -18
  270. package/src/header/TokenPayload.ts +18 -18
  271. package/src/header/index.ts +3 -3
  272. package/src/helpdesk/dtos/HelpdeskCreateTicketRequest.ts +30 -30
  273. package/src/helpdesk/dtos/HelpdeskCreateUserRequest.ts +39 -39
  274. package/src/helpdesk/index.ts +1 -1
  275. package/src/helpers/ValidationUtils.ts +32 -32
  276. package/src/helpers/constans/regex.ts +12 -12
  277. package/src/identity/dtos/IdentificationDocument.ts +22 -22
  278. package/src/identity/dtos/PeopleCreateRequest.ts +28 -28
  279. package/src/identity/dtos/PeopleResponse.ts +105 -105
  280. package/src/identity/dtos/PeopleUpdateRequest.ts +96 -96
  281. package/src/identity/dtos/TypeOfDocument.ts +11 -11
  282. package/src/identity/dtos/UploadDocumentFile.ts +6 -6
  283. package/src/identity/dtos/UploadDocumentRequest.ts +9 -9
  284. package/src/identity/enums/AccountRequirementStatusEnum.ts +4 -4
  285. package/src/identity/enums/AuthorizationNeededMXNStatus.ts +11 -11
  286. package/src/identity/enums/CPStatusEnum.ts +6 -6
  287. package/src/identity/enums/DocumentSideEnum.ts +3 -3
  288. package/src/identity/enums/IdentificationDocumentStatus.ts +7 -7
  289. package/src/identity/enums/InfoSelfVerifiedStatus.ts +9 -9
  290. package/src/identity/enums/SexDocument.ts +6 -6
  291. package/src/identity/enums/TypeOfDocument.ts +5 -5
  292. package/src/identity/index.ts +19 -19
  293. package/src/index.ts +50 -50
  294. package/src/issuanceBusiness/dtos/BaseIssuanceRequirement.ts +195 -195
  295. package/src/issuanceBusiness/dtos/IssuanceRequirementCreateRequest.ts +13 -13
  296. package/src/issuanceBusiness/dtos/IssuanceRequirementResponse.ts +13 -13
  297. package/src/issuanceBusiness/dtos/IssuanceRequirementUpdateRequest.ts +5 -5
  298. package/src/issuanceBusiness/enums/IssuanceStatus.ts +7 -7
  299. package/src/issuanceBusiness/index.ts +8 -8
  300. package/src/legal-documents-business/dtos/DirectoryAcceptanceRequest.ts +6 -6
  301. package/src/legal-documents-business/dtos/LegalDocumentCreateRequest.ts +25 -25
  302. package/src/legal-documents-business/dtos/LegalDocumentResponse.ts +11 -11
  303. package/src/legal-documents-business/dtos/UpdateLegalDocumentRequest.ts +34 -34
  304. package/src/legal-documents-business/index.ts +6 -6
  305. package/src/notificationMessages/dtos/NotificationQueueMessageRequest.ts +7 -7
  306. package/src/notificationMessages/dtos/QueueMessageDestination.ts +6 -6
  307. package/src/notificationMessages/dtos/QueueMessageVariableValues.ts +3 -3
  308. package/src/notificationMessages/enums/NotificationId.ts +13 -13
  309. package/src/notificationMessages/index.ts +5 -5
  310. package/src/observations/dtos/ObservationCreateRequest.ts +19 -19
  311. package/src/observations/index.ts +2 -2
  312. package/src/p2pContact/dtos/CreateP2pContactRequest.ts +8 -8
  313. package/src/productCatalog/dtos/CreateProductCatalogRequest.ts +14 -14
  314. package/src/productCatalog/dtos/GetProductCatalogResponse.ts +38 -38
  315. package/src/productCatalog/enums/ProductSubtypeEnum.ts +55 -55
  316. package/src/productCatalog/enums/ProductTaxFeeTypeEnum.ts +3 -3
  317. package/src/productCatalog/enums/ProductTypeEnum.ts +8 -8
  318. package/src/productCatalog/index.ts +5 -5
  319. package/src/provider/enums/Provider.ts +7 -7
  320. package/src/provider/enums/ProviderCode.ts +5 -5
  321. package/src/provider/index.ts +2 -2
  322. package/src/queue/dtos/QueueMessageBase.ts +13 -13
  323. package/src/riskProfile/dtos/AlarmCategory.ts +2 -2
  324. package/src/riskProfile/dtos/AnswerQuestionnaireQuestionRequest.ts +5 -5
  325. package/src/riskProfile/dtos/CreateBackofficeAlarm.ts +14 -14
  326. package/src/riskProfile/dtos/CreatePrivateAlarm.ts +38 -38
  327. package/src/riskProfile/dtos/CreateRiskProfileRequest.ts +45 -45
  328. package/src/riskProfile/dtos/GetUserQuestionnaireResponse.ts +12 -12
  329. package/src/riskProfile/dtos/TransactionAlarmQueueMessage.ts +48 -48
  330. package/src/riskProfile/dtos/TransactionAlertResponse.ts +50 -50
  331. package/src/riskProfile/dtos/UpdateAlarmProfileRequest.ts +9 -9
  332. package/src/riskProfile/dtos/UpdateFactorInfo.ts +5 -5
  333. package/src/riskProfile/dtos/UpdateRiskProfileRequest.ts +5 -5
  334. package/src/riskProfile/dtos/UpdateTransactionAlertRequest.ts +42 -42
  335. package/src/riskProfile/dtos/UserQuestionnaireQuestion.ts +8 -8
  336. package/src/riskProfile/enums/AlarmCategory.ts +11 -11
  337. package/src/riskProfile/enums/AlarmName.ts +21 -21
  338. package/src/riskProfile/enums/AlarmOperationType.ts +10 -10
  339. package/src/riskProfile/enums/AlarmPriority.ts +7 -7
  340. package/src/riskProfile/enums/AlarmType.ts +7 -7
  341. package/src/riskProfile/enums/PepLevelEnum.ts +6 -6
  342. package/src/riskProfile/enums/RiskFactorCategoryEnum.ts +14 -14
  343. package/src/riskProfile/enums/UserQuestionnaireQuestionAnswerEnum.ts +3 -3
  344. package/src/riskProfile/enums/UserQuestionnaireQuestionStatusEnum.ts +3 -3
  345. package/src/riskProfile/enums/UserQuestionnaireStatusEnum.ts +3 -3
  346. package/src/riskProfile/index.ts +24 -24
  347. package/src/role/dtos/PermissionCreateRequest.ts +32 -32
  348. package/src/role/dtos/PermissionResponse.ts +13 -13
  349. package/src/role/dtos/PermissionUpdateRequest.ts +40 -40
  350. package/src/role/dtos/RoleAssignRequest.ts +14 -14
  351. package/src/role/dtos/RoleCreateRequest.ts +18 -18
  352. package/src/role/dtos/RoleResponse.ts +9 -9
  353. package/src/role/dtos/RoleUpdateRequest.ts +22 -22
  354. package/src/role/dtos/UserRoleResponse.ts +9 -9
  355. package/src/role/index.ts +9 -9
  356. package/src/servicePayment/dtos/GetCatalogParams.ts +5 -5
  357. package/src/servicePayment/dtos/ServicePaymentRequest.ts +33 -33
  358. package/src/servicePayment/index.ts +1 -1
  359. package/src/services/dtos/CreateServiceRequest.ts +50 -50
  360. package/src/services/dtos/GetServiceListAppResponse.ts +5 -5
  361. package/src/services/dtos/GetServiceListResponse.ts +4 -4
  362. package/src/services/dtos/GetServiceMembershipListAppResponse.ts +4 -4
  363. package/src/services/dtos/GetServiceMembershipListResponse.ts +3 -3
  364. package/src/services/dtos/RegisterServiceMembershipRequest.ts +19 -19
  365. package/src/services/dtos/UpdateServiceMembershipRequest.ts +25 -25
  366. package/src/services/dtos/UpdateServiceRequest.ts +49 -49
  367. package/src/services/enums/ServiceCompanyEnum.ts +4 -4
  368. package/src/services/enums/ServiceFlowEnum.ts +3 -3
  369. package/src/services/enums/ServiceMembershipStatusEnum.ts +6 -6
  370. package/src/services/enums/ServiceRecurrenceEnum.ts +6 -6
  371. package/src/services/enums/ServiceStatusEnum.ts +4 -4
  372. package/src/services/enums/ServiceTypeEnum.ts +3 -3
  373. package/src/services/index.ts +22 -22
  374. package/src/sessionActivity/dtos/SessionActivityQueueMessageRequest.ts +14 -14
  375. package/src/sessionActivity/enums/SessionActivityActionEnum.ts +7 -7
  376. package/src/sessionActivity/enums/SessionActivityActionOriginEnum.ts +4 -4
  377. package/src/sessionActivity/index.ts +2 -2
  378. package/src/stpAccount/dtos/CreateAccountWebhookDetail.ts +5 -5
  379. package/src/stpSpei/dtos/GetBusinessAccountBalanceResponse.ts +4 -4
  380. package/src/stpSpei/dtos/PutStpOrderRequest.ts +16 -16
  381. package/src/stpSpei/dtos/SpeiWebhookMessage.ts +10 -10
  382. package/src/stpSpei/enums/ActividadesProductivasEnum.ts +47 -47
  383. package/src/stpSpei/enums/BusinessNameEnum.ts +3 -3
  384. package/src/stpSpei/enums/EntidadesFederativasEnum.ts +33 -33
  385. package/src/stpSpei/enums/PaisesEnum.ts +275 -275
  386. package/src/stpSpei/enums/WebhookMessageStatusEnum.ts +7 -7
  387. package/src/stpSpei/index.ts +9 -9
  388. package/src/transaction/dtos/ActivityProblemGetResponse.ts +22 -22
  389. package/src/transaction/dtos/Credit.ts +24 -24
  390. package/src/transaction/dtos/Debit.ts +20 -20
  391. package/src/transaction/dtos/Notional.ts +20 -20
  392. package/src/transaction/dtos/Product.ts +23 -23
  393. package/src/transaction/dtos/ProductDetail.ts +43 -43
  394. package/src/transaction/dtos/Total.ts +20 -20
  395. package/src/transaction/dtos/TransactionCreateRequest.ts +136 -136
  396. package/src/transaction/dtos/TransactionCreateResponse.ts +4 -4
  397. package/src/transaction/dtos/TransactionGetDetailResponse.ts +27 -27
  398. package/src/transaction/dtos/TransactionGetResponse.ts +20 -20
  399. package/src/transaction/dtos/internal/BaseProviderTransaction.ts +18 -18
  400. package/src/transaction/dtos/internal/BaseProviderTransactionQueryParams.ts +6 -6
  401. package/src/transaction/dtos/internal/CentralPaymentsQueryParams.ts +6 -6
  402. package/src/transaction/dtos/internal/CentralPaymentsTransactionItem.ts +36 -36
  403. package/src/transaction/dtos/internal/ProviderTransactionMerchant.ts +10 -10
  404. package/src/transaction/dtos/internal/ProviderTransactionPagination.ts +5 -5
  405. package/src/transaction/dtos/internal/TernQueryParams.ts +13 -13
  406. package/src/transaction/dtos/internal/TernTransactionItem.ts +23 -23
  407. package/src/transaction/dtos/internal/TransactionListResponse.ts +5 -5
  408. package/src/transaction/enums/ActivityProblemStatusEnum.ts +4 -4
  409. package/src/transaction/enums/DisputeOrFraudEnum.ts +3 -3
  410. package/src/transaction/enums/DisputeOrFraudStatusEnum.ts +4 -4
  411. package/src/transaction/enums/OperationEnum.ts +3 -3
  412. package/src/transaction/enums/TransactionSourceEnum.ts +7 -7
  413. package/src/transaction/enums/TransactionStatusEnum.ts +6 -6
  414. package/src/transaction/index.ts +31 -31
  415. package/src/transactionProcessor/dtos/AmountInfo.ts +6 -6
  416. package/src/transactionProcessor/dtos/AmountInfoItem.ts +3 -3
  417. package/src/transactionProcessor/dtos/AuthorizeAdjustmentTransactionRequest.ts +14 -14
  418. package/src/transactionProcessor/dtos/AuthorizeCollectorTransactionRequest.ts +6 -6
  419. package/src/transactionProcessor/dtos/AuthorizeCreditCardAdjustmentRequest.ts +19 -19
  420. package/src/transactionProcessor/dtos/AuthorizeCreditCardPurchaseRequest.ts +16 -16
  421. package/src/transactionProcessor/dtos/AuthorizeDisputeTransactionRequest.ts +13 -13
  422. package/src/transactionProcessor/dtos/AuthorizeP2pTransactionRequest.ts +11 -11
  423. package/src/transactionProcessor/dtos/AuthorizePocketTransactionRequest.ts +8 -8
  424. package/src/transactionProcessor/dtos/AuthorizeRstTransactionRequest.ts +4 -4
  425. package/src/transactionProcessor/dtos/AuthorizeServicePaymentRequest.ts +7 -7
  426. package/src/transactionProcessor/dtos/AuthorizeSpeiBankTransferNcRequest.ts +14 -14
  427. package/src/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.ts +7 -7
  428. package/src/transactionProcessor/dtos/AuthorizeSpeiMexBankTransferInRequest.ts +37 -37
  429. package/src/transactionProcessor/dtos/CardInfo.ts +5 -5
  430. package/src/transactionProcessor/dtos/InstallmentsInfo.ts +6 -6
  431. package/src/transactionProcessor/dtos/MerchantInfo.ts +6 -6
  432. package/src/transactionProcessor/dtos/ProcessUpdateLevelRequest.ts +3 -3
  433. package/src/transactionProcessor/dtos/RSTTransactionStatusUpdate.ts +6 -6
  434. package/src/transactionProcessor/dtos/SpeiBankTransferStatusUpdate.ts +6 -6
  435. package/src/transactionProcessor/dtos/TransactionInfo.ts +7 -7
  436. package/src/transactionProcessor/dtos/TransactionProcessorQueueMessage.ts +3 -3
  437. package/src/transactionProcessor/dtos/TransactionProcessorResponse.ts +13 -13
  438. package/src/transactionProcessor/enums/AppEnum.ts +3 -3
  439. package/src/transactionProcessor/enums/AsyncTxStatusEnum.ts +5 -5
  440. package/src/transactionProcessor/enums/TransactionProcessorCodesEnum.ts +19 -19
  441. package/src/transactionProcessor/index.ts +27 -27
  442. package/.idea/sonarlint/issuestore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
  443. package/.idea/sonarlint/issuestore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
  444. package/.idea/sonarlint/issuestore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  445. package/.idea/sonarlint/issuestore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
  446. package/.idea/sonarlint/issuestore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  447. package/.idea/sonarlint/issuestore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -2
  448. package/.idea/sonarlint/issuestore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  449. package/.idea/sonarlint/issuestore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
  450. package/.idea/sonarlint/issuestore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  451. package/.idea/sonarlint/issuestore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
  452. package/.idea/sonarlint/issuestore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  453. package/.idea/sonarlint/issuestore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
  454. package/.idea/sonarlint/issuestore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
  455. package/.idea/sonarlint/issuestore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  456. package/.idea/sonarlint/issuestore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  457. package/.idea/sonarlint/issuestore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
  458. package/.idea/sonarlint/issuestore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  459. package/.idea/sonarlint/issuestore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  460. package/.idea/sonarlint/issuestore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  461. package/.idea/sonarlint/issuestore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
  462. package/.idea/sonarlint/issuestore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  463. package/.idea/sonarlint/issuestore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
  464. package/.idea/sonarlint/issuestore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  465. package/.idea/sonarlint/issuestore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  466. package/.idea/sonarlint/issuestore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
  467. package/.idea/sonarlint/issuestore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  468. package/.idea/sonarlint/issuestore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
  469. package/.idea/sonarlint/issuestore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  470. package/.idea/sonarlint/issuestore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
  471. package/.idea/sonarlint/issuestore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  472. package/.idea/sonarlint/issuestore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  473. package/.idea/sonarlint/issuestore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  474. package/.idea/sonarlint/issuestore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
  475. package/.idea/sonarlint/issuestore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
  476. package/.idea/sonarlint/issuestore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  477. package/.idea/sonarlint/issuestore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
  478. package/.idea/sonarlint/issuestore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  479. package/.idea/sonarlint/issuestore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  480. package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  481. package/.idea/sonarlint/issuestore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
  482. package/.idea/sonarlint/issuestore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  483. package/.idea/sonarlint/issuestore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  484. package/.idea/sonarlint/issuestore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
  485. package/.idea/sonarlint/issuestore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  486. package/.idea/sonarlint/issuestore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
  487. package/.idea/sonarlint/issuestore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
  488. package/.idea/sonarlint/issuestore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  489. package/.idea/sonarlint/issuestore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  490. package/.idea/sonarlint/issuestore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
  491. package/.idea/sonarlint/issuestore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
  492. package/.idea/sonarlint/issuestore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  493. package/.idea/sonarlint/issuestore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  494. package/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  495. package/.idea/sonarlint/issuestore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
  496. package/.idea/sonarlint/issuestore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  497. package/.idea/sonarlint/issuestore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
  498. package/.idea/sonarlint/issuestore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
  499. package/.idea/sonarlint/issuestore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  500. package/.idea/sonarlint/issuestore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  501. package/.idea/sonarlint/issuestore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
  502. package/.idea/sonarlint/issuestore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
  503. package/.idea/sonarlint/issuestore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  504. package/.idea/sonarlint/issuestore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
  505. package/.idea/sonarlint/issuestore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
  506. package/.idea/sonarlint/issuestore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  507. package/.idea/sonarlint/issuestore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  508. package/.idea/sonarlint/issuestore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  509. package/.idea/sonarlint/issuestore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
  510. package/.idea/sonarlint/issuestore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
  511. package/.idea/sonarlint/issuestore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
  512. package/.idea/sonarlint/issuestore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
  513. package/.idea/sonarlint/issuestore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
  514. package/.idea/sonarlint/issuestore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
  515. package/.idea/sonarlint/issuestore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
  516. package/.idea/sonarlint/issuestore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
  517. package/.idea/sonarlint/issuestore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
  518. package/.idea/sonarlint/issuestore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
  519. package/.idea/sonarlint/issuestore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  520. package/.idea/sonarlint/issuestore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  521. package/.idea/sonarlint/issuestore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
  522. package/.idea/sonarlint/issuestore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
  523. package/.idea/sonarlint/issuestore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
  524. package/.idea/sonarlint/issuestore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
  525. package/.idea/sonarlint/issuestore/index.pb +0 -168
  526. package/.idea/sonarlint/securityhotspotstore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
  527. package/.idea/sonarlint/securityhotspotstore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
  528. package/.idea/sonarlint/securityhotspotstore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  529. package/.idea/sonarlint/securityhotspotstore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
  530. package/.idea/sonarlint/securityhotspotstore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  531. package/.idea/sonarlint/securityhotspotstore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -0
  532. package/.idea/sonarlint/securityhotspotstore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  533. package/.idea/sonarlint/securityhotspotstore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
  534. package/.idea/sonarlint/securityhotspotstore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  535. package/.idea/sonarlint/securityhotspotstore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
  536. package/.idea/sonarlint/securityhotspotstore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  537. package/.idea/sonarlint/securityhotspotstore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
  538. package/.idea/sonarlint/securityhotspotstore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
  539. package/.idea/sonarlint/securityhotspotstore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  540. package/.idea/sonarlint/securityhotspotstore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  541. package/.idea/sonarlint/securityhotspotstore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
  542. package/.idea/sonarlint/securityhotspotstore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  543. package/.idea/sonarlint/securityhotspotstore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  544. package/.idea/sonarlint/securityhotspotstore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  545. package/.idea/sonarlint/securityhotspotstore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
  546. package/.idea/sonarlint/securityhotspotstore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  547. package/.idea/sonarlint/securityhotspotstore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
  548. package/.idea/sonarlint/securityhotspotstore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  549. package/.idea/sonarlint/securityhotspotstore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  550. package/.idea/sonarlint/securityhotspotstore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
  551. package/.idea/sonarlint/securityhotspotstore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  552. package/.idea/sonarlint/securityhotspotstore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
  553. package/.idea/sonarlint/securityhotspotstore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  554. package/.idea/sonarlint/securityhotspotstore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
  555. package/.idea/sonarlint/securityhotspotstore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  556. package/.idea/sonarlint/securityhotspotstore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  557. package/.idea/sonarlint/securityhotspotstore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  558. package/.idea/sonarlint/securityhotspotstore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
  559. package/.idea/sonarlint/securityhotspotstore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
  560. package/.idea/sonarlint/securityhotspotstore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  561. package/.idea/sonarlint/securityhotspotstore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
  562. package/.idea/sonarlint/securityhotspotstore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  563. package/.idea/sonarlint/securityhotspotstore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  564. package/.idea/sonarlint/securityhotspotstore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  565. package/.idea/sonarlint/securityhotspotstore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
  566. package/.idea/sonarlint/securityhotspotstore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  567. package/.idea/sonarlint/securityhotspotstore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  568. package/.idea/sonarlint/securityhotspotstore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
  569. package/.idea/sonarlint/securityhotspotstore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  570. package/.idea/sonarlint/securityhotspotstore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
  571. package/.idea/sonarlint/securityhotspotstore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
  572. package/.idea/sonarlint/securityhotspotstore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  573. package/.idea/sonarlint/securityhotspotstore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  574. package/.idea/sonarlint/securityhotspotstore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
  575. package/.idea/sonarlint/securityhotspotstore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
  576. package/.idea/sonarlint/securityhotspotstore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  577. package/.idea/sonarlint/securityhotspotstore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  578. package/.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  579. package/.idea/sonarlint/securityhotspotstore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
  580. package/.idea/sonarlint/securityhotspotstore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  581. package/.idea/sonarlint/securityhotspotstore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
  582. package/.idea/sonarlint/securityhotspotstore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
  583. package/.idea/sonarlint/securityhotspotstore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  584. package/.idea/sonarlint/securityhotspotstore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  585. package/.idea/sonarlint/securityhotspotstore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
  586. package/.idea/sonarlint/securityhotspotstore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
  587. package/.idea/sonarlint/securityhotspotstore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  588. package/.idea/sonarlint/securityhotspotstore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
  589. package/.idea/sonarlint/securityhotspotstore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
  590. package/.idea/sonarlint/securityhotspotstore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  591. package/.idea/sonarlint/securityhotspotstore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  592. package/.idea/sonarlint/securityhotspotstore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  593. package/.idea/sonarlint/securityhotspotstore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
  594. package/.idea/sonarlint/securityhotspotstore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
  595. package/.idea/sonarlint/securityhotspotstore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
  596. package/.idea/sonarlint/securityhotspotstore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
  597. package/.idea/sonarlint/securityhotspotstore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
  598. package/.idea/sonarlint/securityhotspotstore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
  599. package/.idea/sonarlint/securityhotspotstore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
  600. package/.idea/sonarlint/securityhotspotstore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
  601. package/.idea/sonarlint/securityhotspotstore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
  602. package/.idea/sonarlint/securityhotspotstore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
  603. package/.idea/sonarlint/securityhotspotstore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  604. package/.idea/sonarlint/securityhotspotstore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  605. package/.idea/sonarlint/securityhotspotstore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
  606. package/.idea/sonarlint/securityhotspotstore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
  607. package/.idea/sonarlint/securityhotspotstore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
  608. package/.idea/sonarlint/securityhotspotstore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
  609. package/.idea/sonarlint/securityhotspotstore/index.pb +0 -168
  610. package/bin/membership/dtos/CreateMembershipDirectoryUserRequest.d.ts +0 -12
  611. package/bin/membership/dtos/CreateMembershipDirectoryUserRequest.js +0 -54
  612. package/bin/membership/dtos/CreateMembershipRequest.d.ts +0 -14
  613. package/bin/membership/dtos/CreateMembershipRequest.js +0 -56
  614. package/bin/membership/dtos/GetMembershipDirectoryUserListAppResponse.d.ts +0 -14
  615. package/bin/membership/dtos/GetMembershipDirectoryUserListAppResponse.js +0 -6
  616. package/bin/membership/dtos/GetMembershipDirectoryUserListResponse.d.ts +0 -21
  617. package/bin/membership/dtos/GetMembershipDirectoryUserListResponse.js +0 -6
  618. package/bin/membership/dtos/GetMembershipListAppResponse.d.ts +0 -10
  619. package/bin/membership/dtos/GetMembershipListAppResponse.js +0 -6
  620. package/bin/membership/dtos/GetMembershipListResponse.d.ts +0 -20
  621. package/bin/membership/dtos/GetMembershipListResponse.js +0 -6
  622. package/bin/membership/dtos/RegisterMembershipDirectoryUserRequest.d.ts +0 -4
  623. package/bin/membership/dtos/RegisterMembershipDirectoryUserRequest.js +0 -26
  624. package/bin/membership/dtos/UpdateMembershipDirectoryUserRequest.d.ts +0 -12
  625. package/bin/membership/dtos/UpdateMembershipDirectoryUserRequest.js +0 -54
  626. package/bin/membership/dtos/UpdateMembershipRequest.d.ts +0 -14
  627. package/bin/membership/dtos/UpdateMembershipRequest.js +0 -56
  628. package/bin/membership/enums/MembershipDirectoryStatusEnum.d.ts +0 -6
  629. package/bin/membership/enums/MembershipDirectoryStatusEnum.js +0 -10
  630. package/bin/membership/enums/MembershipFlowEnum.d.ts +0 -3
  631. package/bin/membership/enums/MembershipFlowEnum.js +0 -7
  632. package/bin/membership/enums/MembershipProviderEnum.d.ts +0 -5
  633. package/bin/membership/enums/MembershipProviderEnum.js +0 -9
  634. package/bin/membership/enums/MembershipStatusEnum.d.ts +0 -4
  635. package/bin/membership/enums/MembershipStatusEnum.js +0 -8
  636. package/bin/membership/enums/MembershipTypeEnum.d.ts +0 -3
  637. package/bin/membership/enums/MembershipTypeEnum.js +0 -7
  638. package/bin/membership/index.d.ts +0 -14
  639. package/bin/membership/index.js +0 -32
  640. package/bin/services/enums/ServiceProviderEnum.d.ts +0 -5
  641. package/bin/services/enums/ServiceProviderEnum.js +0 -9
@@ -1,21 +1,21 @@
1
- import { IsEnum, IsOptional, IsString, IsUUID } from "class-validator";
2
- import { KycStatus } from "../enums/issuance/KycStatus";
3
- import { UserStatus } from "../enums/issuance/UserStatus";
4
-
5
-
6
-
7
- export class CardUpdateIssuanceRequest {
8
-
9
- @IsEnum(KycStatus)
10
- kycStatus: KycStatus;
11
-
12
- @IsOptional()
13
- @IsEnum(UserStatus)
14
- userStatus: UserStatus;
15
-
16
- @IsUUID()
17
- directoryId: string;
18
-
19
- @IsString()
20
- externalUserId: string;
1
+ import { IsEnum, IsOptional, IsString, IsUUID } from "class-validator";
2
+ import { KycStatus } from "../enums/issuance/KycStatus";
3
+ import { UserStatus } from "../enums/issuance/UserStatus";
4
+
5
+
6
+
7
+ export class CardUpdateIssuanceRequest {
8
+
9
+ @IsEnum(KycStatus)
10
+ kycStatus: KycStatus;
11
+
12
+ @IsOptional()
13
+ @IsEnum(UserStatus)
14
+ userStatus: UserStatus;
15
+
16
+ @IsUUID()
17
+ directoryId: string;
18
+
19
+ @IsString()
20
+ externalUserId: string;
21
21
  }
@@ -1,12 +1,12 @@
1
- import {UpdateKey} from "../enums/UpdateKey";
2
- import {IsEnum, IsString} from "class-validator";
3
-
4
-
5
- export class CardUpdateRequest {
6
-
7
- @IsEnum(UpdateKey)
8
- type: UpdateKey;
9
-
10
- @IsString()
11
- value: string;
1
+ import {UpdateKey} from "../enums/UpdateKey";
2
+ import {IsEnum, IsString} from "class-validator";
3
+
4
+
5
+ export class CardUpdateRequest {
6
+
7
+ @IsEnum(UpdateKey)
8
+ type: UpdateKey;
9
+
10
+ @IsString()
11
+ value: string;
12
12
  }
@@ -1,12 +1,12 @@
1
-
2
-
3
- export class ActivateBankAccountCardRequest {
4
- externalAccountId?: string;
5
- externalUserId?: string;
6
- externalCardId?: string;
7
- pin?: string;
8
- pan?: string;
9
- previousCardId?: string;
10
- value?: string;
11
- panLastDigits?: string;
1
+
2
+
3
+ export class ActivateBankAccountCardRequest {
4
+ externalAccountId?: string;
5
+ externalUserId?: string;
6
+ externalCardId?: string;
7
+ pin?: string;
8
+ pan?: string;
9
+ previousCardId?: string;
10
+ value?: string;
11
+ panLastDigits?: string;
12
12
  }
@@ -1,5 +1,5 @@
1
-
2
-
3
- export class ActivateBankAccountCardResponse {
4
- activated: boolean;
1
+
2
+
3
+ export class ActivateBankAccountCardResponse {
4
+ activated: boolean;
5
5
  }
@@ -1,8 +1,8 @@
1
-
2
-
3
-
4
- export type AssignCardRequest = {
5
- proxyValue: string,
6
- accountId: number
7
- }
8
-
1
+
2
+
3
+
4
+ export type AssignCardRequest = {
5
+ proxyValue: string,
6
+ accountId: number
7
+ }
8
+
@@ -1,7 +1,7 @@
1
- export class BatchBeneficiary {
2
- phoneNumber?: string;
3
- email?: string;
4
- firstName?: string;
5
- lastName?: string;
6
- businessLegalName?: string;
1
+ export class BatchBeneficiary {
2
+ phoneNumber?: string;
3
+ email?: string;
4
+ firstName?: string;
5
+ lastName?: string;
6
+ businessLegalName?: string;
7
7
  }
@@ -1,10 +1,10 @@
1
- import {BatchCardInitialLoad} from "./BatchCardInitialLoad";
2
-
3
- export class BatchCardAttributes {
4
- packageId?: string;
5
- programId: string;
6
- printedConsumerName?: string;
7
- companyName?: string;
8
- initialLoad?: BatchCardInitialLoad;
9
- imageCode?: string;
1
+ import {BatchCardInitialLoad} from "./BatchCardInitialLoad";
2
+
3
+ export class BatchCardAttributes {
4
+ packageId?: string;
5
+ programId: string;
6
+ printedConsumerName?: string;
7
+ companyName?: string;
8
+ initialLoad?: BatchCardInitialLoad;
9
+ imageCode?: string;
10
10
  }
@@ -1,4 +1,4 @@
1
- export class BatchCardInitialLoad {
2
- amount: number;
3
- currency: string;
1
+ export class BatchCardInitialLoad {
2
+ amount: number;
3
+ currency: string;
4
4
  }
@@ -1,5 +1,5 @@
1
- export class BatchPointOfContact {
2
- name?: string;
3
- countryDialCode?: string;
4
- phoneNumber?: string;
1
+ export class BatchPointOfContact {
2
+ name?: string;
3
+ countryDialCode?: string;
4
+ phoneNumber?: string;
5
5
  }
@@ -1,8 +1,8 @@
1
- export class BatchShippingAddress {
2
- address1: string;
3
- address2?: string;
4
- city: string;
5
- region: string;
6
- postalCode: string;
7
- country: string;
1
+ export class BatchShippingAddress {
2
+ address1: string;
3
+ address2?: string;
4
+ city: string;
5
+ region: string;
6
+ postalCode: string;
7
+ country: string;
8
8
  }
@@ -1,14 +1,14 @@
1
- import {BatchCardAttributes} from "./BatchCardAttributes";
2
- import {BatchShippingAddress} from "./BatchShippingAddress";
3
- import {BatchPointOfContact} from "./BatchPointOfContact";
4
-
5
- export class CardBatchRequest {
6
- cardsQuantity: number;
7
- card: BatchCardAttributes;
8
- shippingType?: string;
9
- shipmentAddress: BatchShippingAddress;
10
- pointOfContact?: BatchPointOfContact;
11
- externalReference: string;
12
- trackingCode?: string;
13
- partnerId?: string;
1
+ import {BatchCardAttributes} from "./BatchCardAttributes";
2
+ import {BatchShippingAddress} from "./BatchShippingAddress";
3
+ import {BatchPointOfContact} from "./BatchPointOfContact";
4
+
5
+ export class CardBatchRequest {
6
+ cardsQuantity: number;
7
+ card: BatchCardAttributes;
8
+ shippingType?: string;
9
+ shipmentAddress: BatchShippingAddress;
10
+ pointOfContact?: BatchPointOfContact;
11
+ externalReference: string;
12
+ trackingCode?: string;
13
+ partnerId?: string;
14
14
  }
@@ -1,20 +1,20 @@
1
- import {BatchCardAttributes} from "./BatchCardAttributes";
2
- import {BatchBeneficiary} from "./BatchBeneficiary";
3
- import {BatchShippingAddress} from "./BatchShippingAddress";
4
-
5
- export class CardBatchResponse {
6
- batchId: string;
7
- batchStatus: string;
8
- failureReason?: string;
9
- batchRequestedDate: string;
10
- cardsQuantity: number;
11
- card: BatchCardAttributes;
12
- beneficiary: BatchBeneficiary;
13
- shippingType: string;
14
- shipmentAddress: BatchShippingAddress;
15
- externalReference: string;
16
- trackingCode?: string;
17
- cardIds: string[];
18
- enrollments: any;
19
- additionalData: any;
1
+ import {BatchCardAttributes} from "./BatchCardAttributes";
2
+ import {BatchBeneficiary} from "./BatchBeneficiary";
3
+ import {BatchShippingAddress} from "./BatchShippingAddress";
4
+
5
+ export class CardBatchResponse {
6
+ batchId: string;
7
+ batchStatus: string;
8
+ failureReason?: string;
9
+ batchRequestedDate: string;
10
+ cardsQuantity: number;
11
+ card: BatchCardAttributes;
12
+ beneficiary: BatchBeneficiary;
13
+ shippingType: string;
14
+ shipmentAddress: BatchShippingAddress;
15
+ externalReference: string;
16
+ trackingCode?: string;
17
+ cardIds: string[];
18
+ enrollments: any;
19
+ additionalData: any;
20
20
  }
@@ -1,7 +1,7 @@
1
- export class CardStatementListResponse {
2
- statementId: string;
3
- externalCardId: string;
4
- startDate: string;
5
- endDate: string;
6
- status: string;
1
+ export class CardStatementListResponse {
2
+ statementId: string;
3
+ externalCardId: string;
4
+ startDate: string;
5
+ endDate: string;
6
+ status: string;
7
7
  }
@@ -1,17 +1,17 @@
1
- import { AddressResponse } from "../../../address";
2
- import { CardIssuing } from "../../enums/CardIssuing";
3
- import { VirtualOrPhysical } from "../../enums/VirtualOrPhysical";
4
-
5
- export class CreateBankAccountCardRequest {
6
- externalUserId?: string;
7
- externalAccountId?: string;
8
- cardType: VirtualOrPhysical;
9
- firstName: string;
10
- lastName: string;
11
- address: AddressResponse;
12
- nominated: boolean;
13
- directoryId?: string;
14
- typeOfDirectoryId?: string;
15
- previousCardId?: string;
16
- issuing: CardIssuing;
1
+ import { AddressResponse } from "../../../address";
2
+ import { CardIssuing } from "../../enums/CardIssuing";
3
+ import { VirtualOrPhysical } from "../../enums/VirtualOrPhysical";
4
+
5
+ export class CreateBankAccountCardRequest {
6
+ externalUserId?: string;
7
+ externalAccountId?: string;
8
+ cardType: VirtualOrPhysical;
9
+ firstName: string;
10
+ lastName: string;
11
+ address: AddressResponse;
12
+ nominated: boolean;
13
+ directoryId?: string;
14
+ typeOfDirectoryId?: string;
15
+ previousCardId?: string;
16
+ issuing: CardIssuing;
17
17
  }
@@ -1,9 +1,9 @@
1
- import { Provider } from "../../../provider";
2
- import { Status } from "../../enums/Status";
3
-
4
-
5
- export class CreateBankAccountCardResponse {
6
- externalCardId: string;
7
- provider: Provider;
8
- status: Status;
1
+ import { Provider } from "../../../provider";
2
+ import { Status } from "../../enums/Status";
3
+
4
+
5
+ export class CreateBankAccountCardResponse {
6
+ externalCardId: string;
7
+ provider: Provider;
8
+ status: Status;
9
9
  }
@@ -1,15 +1,15 @@
1
- import { AddressResponse } from "../../../address";
2
- import { TypeOfDocument } from "../../../identity/enums/TypeOfDocument";
3
-
4
- export class CreateBankAccountCardShippingRequest {
5
- externalCardId?: string;
6
- typeOfDocumentId?: TypeOfDocument;
7
- documentNumber?: string;
8
- phoneNumber?: string;
9
- firstName: string;
10
- lastName: string;
11
- address: AddressResponse;
12
- nominated: boolean;
13
- email?: string;
14
- userId?: string;
1
+ import { AddressResponse } from "../../../address";
2
+ import { TypeOfDocument } from "../../../identity/enums/TypeOfDocument";
3
+
4
+ export class CreateBankAccountCardShippingRequest {
5
+ externalCardId?: string;
6
+ typeOfDocumentId?: TypeOfDocument;
7
+ documentNumber?: string;
8
+ phoneNumber?: string;
9
+ firstName: string;
10
+ lastName: string;
11
+ address: AddressResponse;
12
+ nominated: boolean;
13
+ email?: string;
14
+ userId?: string;
15
15
  }
@@ -1,13 +1,13 @@
1
-
2
-
3
- export class CreateBankAccountCardShippingResponse {
4
- externalShippingId: string;
5
- type: string;
6
- status: string;
7
- statusDetail: string;
8
- courier: {
9
- company: string;
10
- trackingNumber?: string;
11
- trackingUrl?: string;
12
- };
1
+
2
+
3
+ export class CreateBankAccountCardShippingResponse {
4
+ externalShippingId: string;
5
+ type: string;
6
+ status: string;
7
+ statusDetail: string;
8
+ courier: {
9
+ company: string;
10
+ trackingNumber?: string;
11
+ trackingUrl?: string;
12
+ };
13
13
  }
@@ -1,13 +1,13 @@
1
- import {Provider} from "../../../provider";
2
-
3
- export class GetBankAccountCardBalanceResponse {
4
- provider: {
5
- id: Provider,
6
- externalUserId?: string;
7
- externalCardId: string;
8
- externalAccountId?: string;
9
- };
10
- currency: string;
11
- availableBalance: number;
12
- ledgerBalance: number;
1
+ import {Provider} from "../../../provider";
2
+
3
+ export class GetBankAccountCardBalanceResponse {
4
+ provider: {
5
+ id: Provider,
6
+ externalUserId?: string;
7
+ externalCardId: string;
8
+ externalAccountId?: string;
9
+ };
10
+ currency: string;
11
+ availableBalance: number;
12
+ ledgerBalance: number;
13
13
  }
@@ -1,35 +1,35 @@
1
- import { CountryId } from "../../../country";
2
- import { Provider } from "../../../provider";
3
- import { CreditOrDebit } from "../../enums/CreditOrDebit";
4
- import { Status } from "../../enums/Status";
5
- import { VirtualOrPhysical } from "../../enums/VirtualOrPhysical";
6
-
7
-
8
- export interface GetBankAccountCardResponse {
9
- countryId: CountryId;
10
- holder?: {
11
- name?: string;
12
- lastName?: string;
13
- };
14
- expirationMonth?: string;
15
- expirationYear?: string;
16
- mii?: string;
17
- typeOfCardId?: VirtualOrPhysical;
18
- creditOrDebit?: CreditOrDebit;
19
- nominated?: boolean;
20
- pan?: string;
21
- panLastDigits?: string;
22
- activationValue?: string;
23
- provider: {
24
- id: Provider,
25
- externalUserId?: string;
26
- externalCardId: string;
27
- externalAccountId?: string;
28
- };
29
- address?: object;
30
- status: Status;
31
- statusDetail?: string;
32
- createDate?: string;
33
- secureUrl?: string;
34
- secureUrlExpiration?: string;
1
+ import { CountryId } from "../../../country";
2
+ import { Provider } from "../../../provider";
3
+ import { CreditOrDebit } from "../../enums/CreditOrDebit";
4
+ import { Status } from "../../enums/Status";
5
+ import { VirtualOrPhysical } from "../../enums/VirtualOrPhysical";
6
+
7
+
8
+ export interface GetBankAccountCardResponse {
9
+ countryId: CountryId;
10
+ holder?: {
11
+ name?: string;
12
+ lastName?: string;
13
+ };
14
+ expirationMonth?: string;
15
+ expirationYear?: string;
16
+ mii?: string;
17
+ typeOfCardId?: VirtualOrPhysical;
18
+ creditOrDebit?: CreditOrDebit;
19
+ nominated?: boolean;
20
+ pan?: string;
21
+ panLastDigits?: string;
22
+ activationValue?: string;
23
+ provider: {
24
+ id: Provider,
25
+ externalUserId?: string;
26
+ externalCardId: string;
27
+ externalAccountId?: string;
28
+ };
29
+ address?: object;
30
+ status: Status;
31
+ statusDetail?: string;
32
+ createDate?: string;
33
+ secureUrl?: string;
34
+ secureUrlExpiration?: string;
35
35
  }
@@ -1,6 +1,6 @@
1
-
2
-
3
-
4
- export class GetBankAccountShippingRequest {
5
- externalShippingId: string;
1
+
2
+
3
+
4
+ export class GetBankAccountShippingRequest {
5
+ externalShippingId: string;
6
6
  }
@@ -1,20 +1,20 @@
1
- import { ExternalShippingStatus } from "../../enums/ExternalShippingStatus";
2
- import { ExternalShippingStatusDetail } from "../../enums/ExternalShippingStatusDetails";
3
-
4
- export class GetBankAccountShippingResponse {
5
- id: string;
6
- courier: {
7
- company: string;
8
- trackingNumber?: string;
9
- trackingUrl?: string;
10
- };
11
- status: ExternalShippingStatus;
12
- statusDetail: ExternalShippingStatusDetail;
13
- type: string;
14
- shippingAddress: object;
15
- reciever: {
16
- name: string;
17
- lastName: string;
18
- phoneNumber: string;
19
- };
1
+ import { ExternalShippingStatus } from "../../enums/ExternalShippingStatus";
2
+ import { ExternalShippingStatusDetail } from "../../enums/ExternalShippingStatusDetails";
3
+
4
+ export class GetBankAccountShippingResponse {
5
+ id: string;
6
+ courier: {
7
+ company: string;
8
+ trackingNumber?: string;
9
+ trackingUrl?: string;
10
+ };
11
+ status: ExternalShippingStatus;
12
+ statusDetail: ExternalShippingStatusDetail;
13
+ type: string;
14
+ shippingAddress: object;
15
+ reciever: {
16
+ name: string;
17
+ lastName: string;
18
+ phoneNumber: string;
19
+ };
20
20
  }
@@ -1,3 +1,3 @@
1
- export class StatementDocumentResponse {
2
- documentUrl?: string;
1
+ export class StatementDocumentResponse {
2
+ documentUrl?: string;
3
3
  }
@@ -1,23 +1,23 @@
1
- import { AddressResponse } from "../../../address";
2
- import { ExternalShippingStatus } from "../../enums/ExternalShippingStatus";
3
- import { ExternalShippingStatusDetail } from "../../enums/ExternalShippingStatusDetails";
4
- import { ShippingStatus } from "../../enums/ShippingStatus";
5
- import { Status } from "../../enums/Status";
6
-
7
-
8
- export class UpdateBankAccountCardRequest {
9
- cardId: string;
10
- externalUserId?: string;
11
- nominated?: boolean | null;
12
- status?: Status | null;
13
- pin?: string | null;
14
- externalShippingId?: string;
15
- externalShippingStatus?: ExternalShippingStatus | null;
16
- externalShippingStatusDetail?: ExternalShippingStatusDetail | null;
17
- shippingStatus?: ShippingStatus | null;
18
- shippingTrackingNumber?: string | null;
19
- shippingTrackingUrl?: string | null;
20
- firstName?: string | null;
21
- lastName?: string | null;
22
- address?: AddressResponse | null;
1
+ import { AddressResponse } from "../../../address";
2
+ import { ExternalShippingStatus } from "../../enums/ExternalShippingStatus";
3
+ import { ExternalShippingStatusDetail } from "../../enums/ExternalShippingStatusDetails";
4
+ import { ShippingStatus } from "../../enums/ShippingStatus";
5
+ import { Status } from "../../enums/Status";
6
+
7
+
8
+ export class UpdateBankAccountCardRequest {
9
+ cardId: string;
10
+ externalUserId?: string;
11
+ nominated?: boolean | null;
12
+ status?: Status | null;
13
+ pin?: string | null;
14
+ externalShippingId?: string;
15
+ externalShippingStatus?: ExternalShippingStatus | null;
16
+ externalShippingStatusDetail?: ExternalShippingStatusDetail | null;
17
+ shippingStatus?: ShippingStatus | null;
18
+ shippingTrackingNumber?: string | null;
19
+ shippingTrackingUrl?: string | null;
20
+ firstName?: string | null;
21
+ lastName?: string | null;
22
+ address?: AddressResponse | null;
23
23
  }
@@ -1,8 +1,8 @@
1
-
2
-
3
- export class UpdateBankAccountCardResponse {
4
- updatedAt?: string;
5
- updatedBy?: string;
6
- pinSecureUrl?: string;
7
- secureUrlExpiration?: string;
1
+
2
+
3
+ export class UpdateBankAccountCardResponse {
4
+ updatedAt?: string;
5
+ updatedBy?: string;
6
+ pinSecureUrl?: string;
7
+ secureUrlExpiration?: string;
8
8
  }
@@ -1,8 +1,8 @@
1
-
2
-
3
-
4
- export enum AccountCancellationStatus {
5
- EXECUTED = "EXECUTED",
6
- PENDING = "PENDING",
7
- REJECTED = "REJECTED",
1
+
2
+
3
+
4
+ export enum AccountCancellationStatus {
5
+ EXECUTED = "EXECUTED",
6
+ PENDING = "PENDING",
7
+ REJECTED = "REJECTED",
8
8
  }
@@ -1,8 +1,8 @@
1
- export enum Brand {
2
- VISA = "VISA",
3
- MASTERCARD = 'MASTERCARD',
4
- AMERICAN_EXPRESS = 'AMERICAN_EXPRESS',
5
- DISCOVER = 'DISCOVER',
6
- DINERS_CLUB = 'DINERS_CLUB',
7
- JCB = 'JCB'
1
+ export enum Brand {
2
+ VISA = "VISA",
3
+ MASTERCARD = 'MASTERCARD',
4
+ AMERICAN_EXPRESS = 'AMERICAN_EXPRESS',
5
+ DISCOVER = 'DISCOVER',
6
+ DINERS_CLUB = 'DINERS_CLUB',
7
+ JCB = 'JCB'
8
8
  };
@@ -1,6 +1,6 @@
1
-
2
- export enum CardIssuanceStatus {
3
- IN_PROCESS = "IN_PROCESS",
4
- COMPLETED = "COMPLETED",
5
- FAILED = "FAILED"
1
+
2
+ export enum CardIssuanceStatus {
3
+ IN_PROCESS = "IN_PROCESS",
4
+ COMPLETED = "COMPLETED",
5
+ FAILED = "FAILED"
6
6
  }