@fiado/type-kit 1.0.85 → 1.0.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (270) 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/dtos/GetPocketResponse.d.ts +6 -0
  7. package/bin/account/dtos/PocketBalanceItem.d.ts +6 -0
  8. package/bin/account/dtos/PocketBalanceItem.js +32 -0
  9. package/bin/account/dtos/PocketItem.d.ts +2 -3
  10. package/bin/account/dtos/PocketItem.js +3 -11
  11. package/bin/account/index.d.ts +1 -0
  12. package/bin/account/index.js +1 -0
  13. package/bin/tern/dtos/TernAddress.d.ts +8 -0
  14. package/bin/tern/dtos/TernAddress.js +40 -0
  15. package/bin/tern/dtos/TernCreateAccountRequest.d.ts +7 -0
  16. package/bin/tern/dtos/TernCreateAccountRequest.js +33 -0
  17. package/bin/tern/dtos/TernCreateAccountResponse.d.ts +5 -0
  18. package/bin/tern/dtos/TernCreateAccountResponse.js +25 -0
  19. package/bin/tern/dtos/TernCreateUserRequest.d.ts +15 -0
  20. package/bin/tern/dtos/TernCreateUserRequest.js +70 -0
  21. package/bin/tern/dtos/TernCreateUserResponse.d.ts +8 -0
  22. package/bin/tern/dtos/TernCreateUserResponse.js +37 -0
  23. package/bin/tern/dtos/TernGetAccountRequest.d.ts +5 -0
  24. package/bin/tern/dtos/TernGetAccountRequest.js +25 -0
  25. package/bin/tern/dtos/TernGetAccountResponse.d.ts +22 -0
  26. package/bin/tern/dtos/TernGetAccountResponse.js +87 -0
  27. package/bin/tern/dtos/TernGetUserRequest.d.ts +3 -0
  28. package/bin/tern/dtos/TernGetUserRequest.js +20 -0
  29. package/bin/tern/dtos/TernGetUserResponse.d.ts +24 -0
  30. package/bin/tern/dtos/TernGetUserResponse.js +96 -0
  31. package/bin/tern/enums/TernAccountStatusEnum.d.ts +4 -0
  32. package/bin/tern/enums/TernAccountStatusEnum.js +8 -0
  33. package/bin/tern/enums/TernAccountTypeEnum.d.ts +5 -0
  34. package/bin/tern/enums/TernAccountTypeEnum.js +9 -0
  35. package/bin/tern/index.d.ts +11 -0
  36. package/bin/tern/index.js +29 -0
  37. package/package.json +23 -23
  38. package/src/account/dtos/AccountCreateRequest.ts +75 -75
  39. package/src/account/dtos/AccountCreateResponse.ts +7 -7
  40. package/src/account/dtos/AccountInfo.ts +39 -39
  41. package/src/account/dtos/BankAccountExternalAddress.ts +17 -17
  42. package/src/account/dtos/CreateBankAccountRequest.ts +11 -11
  43. package/src/account/dtos/CreateBankAccountResponse.ts +8 -8
  44. package/src/account/dtos/CreateBankAccountUserRequest.ts +17 -17
  45. package/src/account/dtos/CreateBankAccountUserResponse.ts +11 -11
  46. package/src/account/dtos/ExchangeInfo.ts +8 -8
  47. package/src/account/dtos/GetAccountBalanceResponse.ts +32 -32
  48. package/src/account/dtos/GetBankAccountRequest.ts +3 -3
  49. package/src/account/dtos/GetBankAccountResponse.ts +22 -22
  50. package/src/account/dtos/GetBankAccountSensitiveInformationRequest.ts +5 -5
  51. package/src/account/dtos/GetBankAccountSensitiveInformationResponse.ts +8 -8
  52. package/src/account/dtos/GetBankAccountUserRequest.ts +2 -2
  53. package/src/account/dtos/GetBankAccountUserResponse.ts +25 -25
  54. package/src/account/dtos/GetPocketBalanceResponse.ts +43 -43
  55. package/src/account/dtos/GetPocketResponse.ts +8 -2
  56. package/src/account/dtos/PocketBalanceItem.ts +15 -0
  57. package/src/account/dtos/PocketItem.ts +40 -45
  58. package/src/account/dtos/UpdateBankAccountUserRequest.ts +26 -26
  59. package/src/account/dtos/UpdateBankAccountUserResponse.ts +3 -3
  60. package/src/account/entities/AccountEntityBase.ts +12 -12
  61. package/src/account/enums/AccountEntityStatusEnum.ts +4 -4
  62. package/src/account/enums/AccountLevelEnum.ts +5 -5
  63. package/src/account/enums/BankAccountTypeEnum.ts +2 -2
  64. package/src/account/enums/BankAccountUserStatusEnum.ts +4 -4
  65. package/src/account/enums/UserEntityStatusEnum.ts +4 -4
  66. package/src/account/index.ts +33 -32
  67. package/src/address/dtos/AddressBase.ts +130 -130
  68. package/src/address/dtos/AddressCreateRequest.ts +6 -6
  69. package/src/address/dtos/AddressResponse.ts +41 -41
  70. package/src/address/dtos/AddressShippingCardRequest.ts +12 -12
  71. package/src/address/dtos/AddressShippingCardResponse.ts +11 -11
  72. package/src/address/dtos/Geometry.ts +4 -4
  73. package/src/address/dtos/OfficeDetails.ts +30 -30
  74. package/src/address/dtos/OperationSchedule.ts +8 -8
  75. package/src/address/dtos/Place.ts +83 -83
  76. package/src/address/dtos/Shipping.ts +36 -36
  77. package/src/address/dtos/Timezone.ts +5 -5
  78. package/src/address/enums/AddressProvider.ts +10 -10
  79. package/src/address/enums/AddressStatus.ts +9 -9
  80. package/src/address/index.ts +16 -16
  81. package/src/app/enums/App.ts +10 -10
  82. package/src/app/index.ts +3 -3
  83. package/src/authentication/dtos/SignUpAdditionalRequest.ts +32 -32
  84. package/src/authentication/dtos/SignUpAdditionalResponse.ts +5 -5
  85. package/src/authentication/index.ts +3 -3
  86. package/src/card/dtos/CardActivateRequest.ts +12 -12
  87. package/src/card/dtos/CardApplicationRequest.ts +20 -20
  88. package/src/card/dtos/CardBalanceResponse.ts +10 -10
  89. package/src/card/dtos/CardCreateAdditionalRequest.ts +40 -40
  90. package/src/card/dtos/CardResponse.ts +4 -4
  91. package/src/card/dtos/CardShipmentQueueMessage.ts +7 -7
  92. package/src/card/dtos/CardShipmentUpdateRequest.ts +19 -19
  93. package/src/card/dtos/CardUpdateRequest.ts +13 -13
  94. package/src/card/dtos/Internal/ActivateBankAccountCardRequest.ts +9 -9
  95. package/src/card/dtos/Internal/ActivateBankAccountCardResponse.ts +4 -4
  96. package/src/card/dtos/Internal/CreateBankAccountCardRequest.ts +16 -16
  97. package/src/card/dtos/Internal/CreateBankAccountCardResponse.ts +8 -8
  98. package/src/card/dtos/Internal/CreateBankAccountCardShippingRequest.ts +14 -14
  99. package/src/card/dtos/Internal/CreateBankAccountCardShippingResponse.ts +12 -12
  100. package/src/card/dtos/Internal/GetBankAccountShippingRequest.ts +5 -5
  101. package/src/card/dtos/Internal/GetBankAccountShippingResponse.ts +19 -19
  102. package/src/card/dtos/Internal/UpdateBankAccountCardRequest.ts +21 -21
  103. package/src/card/dtos/Internal/UpdateBankAccountCardResponse.ts +5 -5
  104. package/src/card/enums/Brand.ts +7 -7
  105. package/src/card/enums/CardIssuanceStatus.ts +5 -5
  106. package/src/card/enums/CardIssuing.ts +6 -6
  107. package/src/card/enums/CardType.ts +4 -4
  108. package/src/card/enums/CardUpdateKey.ts +4 -4
  109. package/src/card/enums/CreditOrDebit.ts +5 -5
  110. package/src/card/enums/DeliveryChannel.ts +7 -7
  111. package/src/card/enums/ExternalShippingStatus.ts +14 -14
  112. package/src/card/enums/ExternalShippingStatusDetails.ts +53 -53
  113. package/src/card/enums/IssuanceType.ts +5 -5
  114. package/src/card/enums/NominatedOrInnominated.ts +8 -8
  115. package/src/card/enums/OwnershipType.ts +3 -3
  116. package/src/card/enums/ShippingStatus.ts +8 -8
  117. package/src/card/enums/Status.ts +6 -6
  118. package/src/card/enums/UpdateKey.ts +5 -5
  119. package/src/card/enums/VirtualOrPhysical.ts +6 -6
  120. package/src/card/index.ts +44 -44
  121. package/src/card/validations/CardUpdateKeyConstraint.ts +53 -53
  122. package/src/card/validations/IsPhoneNumberConstraint.ts +26 -26
  123. package/src/country/enums/Country.ts +6 -6
  124. package/src/country/enums/CountryId.ts +6 -6
  125. package/src/country/index.ts +5 -5
  126. package/src/currency/dtos/CurrencyResponse.ts +8 -8
  127. package/src/currency/index.ts +2 -2
  128. package/src/directory/dtos/DirectoryResponse.ts +18 -18
  129. package/src/directory/dtos/External.ts +6 -6
  130. package/src/directory/enums/Profile.ts +6 -6
  131. package/src/directory/enums/Scope.ts +7 -7
  132. package/src/directory/enums/Status.ts +8 -8
  133. package/src/directory/enums/TypeOfDirectoryId.ts +6 -6
  134. package/src/directory/index.ts +7 -7
  135. package/src/eventBridge/dto/EventBridgeMessageRequest.ts +4 -4
  136. package/src/eventBridge/index.ts +1 -1
  137. package/src/exchangeRate/dtos/ExchangeRateCreateRequest.ts +50 -50
  138. package/src/exchangeRate/dtos/ExchangeRateCreateResponse.ts +4 -4
  139. package/src/exchangeRate/dtos/ExchangeRateResponse.ts +19 -19
  140. package/src/exchangeRate/enums/ExchangeRateStatus.ts +5 -5
  141. package/src/exchangeRate/index.ts +8 -8
  142. package/src/genericMessage/dto/GenericMessageRequest.ts +17 -17
  143. package/src/genericMessage/enums/GenericMessageSourceEnum.ts +3 -3
  144. package/src/genericMessage/index.ts +1 -1
  145. package/src/group/dtos/GroupAddDirectoryRequest.ts +27 -27
  146. package/src/group/dtos/GroupCreateRequest.ts +54 -54
  147. package/src/group/dtos/GroupDirectoryRelationsResponse.ts +20 -20
  148. package/src/group/dtos/GroupDirectoryRelationsUpdateRequest.ts +10 -10
  149. package/src/group/dtos/GroupResponse.ts +17 -17
  150. package/src/group/dtos/GroupUpdateRequest.ts +31 -31
  151. package/src/group/enums/GroupAction.ts +8 -8
  152. package/src/group/enums/GroupStatus.ts +6 -6
  153. package/src/group/enums/RelationStatus.ts +8 -8
  154. package/src/group/enums/RelationType.ts +9 -9
  155. package/src/group/index.ts +18 -18
  156. package/src/header/TokenPayload.ts +17 -17
  157. package/src/header/index.ts +3 -3
  158. package/src/helpers/ValidationUtils.ts +32 -32
  159. package/src/helpers/constans/regex.ts +12 -12
  160. package/src/identity/dtos/IdentificationDocument.ts +24 -24
  161. package/src/identity/dtos/PeopleCreateRequest.ts +4 -4
  162. package/src/identity/dtos/PeopleResponse.ts +80 -80
  163. package/src/identity/dtos/PeopleUpdateRequest.ts +75 -75
  164. package/src/identity/dtos/TypeOfDocument.ts +11 -11
  165. package/src/identity/enums/IdentificationDocumentStatus.ts +7 -7
  166. package/src/identity/enums/SexDocument.ts +6 -6
  167. package/src/identity/enums/TypeOfDocument.ts +5 -5
  168. package/src/identity/index.ts +12 -12
  169. package/src/index.ts +22 -22
  170. package/src/notificationMessages/dtos/NotificationQueueMessageRequest.ts +7 -7
  171. package/src/notificationMessages/dtos/QueueMessageDestination.ts +6 -6
  172. package/src/notificationMessages/dtos/QueueMessageVariableValues.ts +3 -3
  173. package/src/notificationMessages/enums/NotificationId.ts +13 -13
  174. package/src/notificationMessages/index.ts +5 -5
  175. package/src/provider/enums/Provider.ts +4 -4
  176. package/src/provider/index.ts +1 -1
  177. package/src/queue/dtos/QueueMessageBase.ts +13 -13
  178. package/src/servicePayment/dtos/ServicePaymentRequest.ts +33 -33
  179. package/src/sessionActivity/dtos/SessionActivityQueueMessageRequest.ts +10 -10
  180. package/src/sessionActivity/enums/SessionActivityActionEnum.ts +7 -7
  181. package/src/sessionActivity/enums/SessionActivityActionOriginEnum.ts +4 -4
  182. package/src/sessionActivity/index.ts +2 -2
  183. package/.idea/sonarlint/issuestore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  184. package/.idea/sonarlint/issuestore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  185. package/.idea/sonarlint/issuestore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -2
  186. package/.idea/sonarlint/issuestore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  187. package/.idea/sonarlint/issuestore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  188. package/.idea/sonarlint/issuestore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  189. package/.idea/sonarlint/issuestore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  190. package/.idea/sonarlint/issuestore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  191. package/.idea/sonarlint/issuestore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  192. package/.idea/sonarlint/issuestore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  193. package/.idea/sonarlint/issuestore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  194. package/.idea/sonarlint/issuestore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  195. package/.idea/sonarlint/issuestore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  196. package/.idea/sonarlint/issuestore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  197. package/.idea/sonarlint/issuestore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  198. package/.idea/sonarlint/issuestore/5/9/59861d131fb0f6508d57801b470735455669e76f +0 -0
  199. package/.idea/sonarlint/issuestore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  200. package/.idea/sonarlint/issuestore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  201. package/.idea/sonarlint/issuestore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  202. package/.idea/sonarlint/issuestore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  203. package/.idea/sonarlint/issuestore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  204. package/.idea/sonarlint/issuestore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  205. package/.idea/sonarlint/issuestore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  206. package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  207. package/.idea/sonarlint/issuestore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  208. package/.idea/sonarlint/issuestore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  209. package/.idea/sonarlint/issuestore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  210. package/.idea/sonarlint/issuestore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  211. package/.idea/sonarlint/issuestore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  212. package/.idea/sonarlint/issuestore/8/3/837ec76e2e7ee5ac8e0326747630f9f66b7d5c1c +0 -0
  213. package/.idea/sonarlint/issuestore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  214. package/.idea/sonarlint/issuestore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  215. package/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  216. package/.idea/sonarlint/issuestore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  217. package/.idea/sonarlint/issuestore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -2
  218. package/.idea/sonarlint/issuestore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  219. package/.idea/sonarlint/issuestore/a/5/a545ebf840220599f323a01614431575a770e319 +0 -0
  220. package/.idea/sonarlint/issuestore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  221. package/.idea/sonarlint/issuestore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  222. package/.idea/sonarlint/issuestore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  223. package/.idea/sonarlint/issuestore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  224. package/.idea/sonarlint/issuestore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  225. package/.idea/sonarlint/issuestore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  226. package/.idea/sonarlint/issuestore/index.pb +0 -87
  227. package/.idea/sonarlint/securityhotspotstore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
  228. package/.idea/sonarlint/securityhotspotstore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
  229. package/.idea/sonarlint/securityhotspotstore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -0
  230. package/.idea/sonarlint/securityhotspotstore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
  231. package/.idea/sonarlint/securityhotspotstore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
  232. package/.idea/sonarlint/securityhotspotstore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
  233. package/.idea/sonarlint/securityhotspotstore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
  234. package/.idea/sonarlint/securityhotspotstore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
  235. package/.idea/sonarlint/securityhotspotstore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
  236. package/.idea/sonarlint/securityhotspotstore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
  237. package/.idea/sonarlint/securityhotspotstore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
  238. package/.idea/sonarlint/securityhotspotstore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
  239. package/.idea/sonarlint/securityhotspotstore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
  240. package/.idea/sonarlint/securityhotspotstore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
  241. package/.idea/sonarlint/securityhotspotstore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
  242. package/.idea/sonarlint/securityhotspotstore/5/9/59861d131fb0f6508d57801b470735455669e76f +0 -0
  243. package/.idea/sonarlint/securityhotspotstore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
  244. package/.idea/sonarlint/securityhotspotstore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
  245. package/.idea/sonarlint/securityhotspotstore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
  246. package/.idea/sonarlint/securityhotspotstore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
  247. package/.idea/sonarlint/securityhotspotstore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
  248. package/.idea/sonarlint/securityhotspotstore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
  249. package/.idea/sonarlint/securityhotspotstore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
  250. package/.idea/sonarlint/securityhotspotstore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  251. package/.idea/sonarlint/securityhotspotstore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
  252. package/.idea/sonarlint/securityhotspotstore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
  253. package/.idea/sonarlint/securityhotspotstore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
  254. package/.idea/sonarlint/securityhotspotstore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
  255. package/.idea/sonarlint/securityhotspotstore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
  256. package/.idea/sonarlint/securityhotspotstore/8/3/837ec76e2e7ee5ac8e0326747630f9f66b7d5c1c +0 -0
  257. package/.idea/sonarlint/securityhotspotstore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
  258. package/.idea/sonarlint/securityhotspotstore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
  259. package/.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
  260. package/.idea/sonarlint/securityhotspotstore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
  261. package/.idea/sonarlint/securityhotspotstore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
  262. package/.idea/sonarlint/securityhotspotstore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
  263. package/.idea/sonarlint/securityhotspotstore/a/5/a545ebf840220599f323a01614431575a770e319 +0 -0
  264. package/.idea/sonarlint/securityhotspotstore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
  265. package/.idea/sonarlint/securityhotspotstore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
  266. package/.idea/sonarlint/securityhotspotstore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
  267. package/.idea/sonarlint/securityhotspotstore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
  268. package/.idea/sonarlint/securityhotspotstore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
  269. package/.idea/sonarlint/securityhotspotstore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
  270. package/.idea/sonarlint/securityhotspotstore/index.pb +0 -87
@@ -1,25 +1,25 @@
1
- import { Country } from "../../country/enums/Country";
2
- import { IdentificationDocumentStatus } from "../enums/IdentificationDocumentStatus";
3
- import { SexDocument } from "../enums/SexDocument";
4
-
5
-
6
- export class IdentificationDocument {
7
-
8
- frontImageName: string | null;
9
- backImageName: string | null;
10
- countryId: Country | null;
11
- expirationDate: string | null;
12
- issueDate: string | null;
13
- lastNameFirst: string | null;
14
- lastNameSecond: string | null;
15
- names: string | null;
16
- fullName: string | null;
17
- countryOfBirth: string | null;
18
- dateOfBirth: string | null;
19
- documentNumber: string | null;
20
- typeOfDocument: string;
21
- sex: SexDocument | null;
22
- verificationId: string | null;
23
- curp: string | null;
24
- status: IdentificationDocumentStatus;
1
+ import { Country } from "../../country/enums/Country";
2
+ import { IdentificationDocumentStatus } from "../enums/IdentificationDocumentStatus";
3
+ import { SexDocument } from "../enums/SexDocument";
4
+
5
+
6
+ export class IdentificationDocument {
7
+
8
+ frontImageName: string | null;
9
+ backImageName: string | null;
10
+ countryId: Country | null;
11
+ expirationDate: string | null;
12
+ issueDate: string | null;
13
+ lastNameFirst: string | null;
14
+ lastNameSecond: string | null;
15
+ names: string | null;
16
+ fullName: string | null;
17
+ countryOfBirth: string | null;
18
+ dateOfBirth: string | null;
19
+ documentNumber: string | null;
20
+ typeOfDocument: string;
21
+ sex: SexDocument | null;
22
+ verificationId: string | null;
23
+ curp: string | null;
24
+ status: IdentificationDocumentStatus;
25
25
  }
@@ -1,5 +1,5 @@
1
-
2
-
3
- export class PeopleCreateRequest {
4
-
1
+
2
+
3
+ export class PeopleCreateRequest {
4
+
5
5
  }
@@ -1,80 +1,80 @@
1
-
2
- import { App } from '../../app/enums/App';
3
- import { SexDocument } from '../enums/SexDocument';
4
- import { IdentificationDocument } from './IdentificationDocument';
5
-
6
-
7
- export class PeopleResponse {
8
-
9
- id: string;
10
- createDate: string;
11
- lastUpdateDate: string;
12
- creationMethod: App;
13
- indexName: string;
14
- preferredName: string;
15
- usSuffix: string | null;
16
- usLastNames: string | null;
17
- usNames: string | null;
18
- latNames: string | null;
19
- latLastNamePaternal: string | null;
20
- latLastNameMaternal: string | null;
21
- aliasNames: string[] | null;
22
- preferredPronoun: string | null;
23
- SSN_ITIN: string | null;
24
- rfc: string | null;
25
- curp: string | null;
26
- passportNumber: string | null;
27
- countryOfPassport: string | null;
28
- documents: IdentificationDocument[] | null;
29
- countryOfBirth: string | null;
30
- dateOfBirth: string | null;
31
- stateOfBirth: string | null;
32
- nationalities: string[] | null;
33
- docSex: SexDocument | null;
34
- internalEmail: string | null;
35
- occupation: string | null;
36
- incomeSource: string | null;
37
- operationId: string | null;
38
- tenantId: string | null;
39
- photoOfpersonImageName: string | null;
40
- videoOfPersonImageName: string | null;
41
- USA_DebitAccount: boolean;
42
- MEX_DebitAccount: boolean;
43
- MEX_CreditClient: boolean;
44
- MEX_CreditAdditional: boolean;
45
- magicNumber: boolean;
46
- USA_UploadDocument: boolean;
47
- MEX_UploadDocument: boolean;
48
- videoSelfieVerified: boolean;
49
- MEX_ValidDocument: string;
50
- USA_ValidDocument: string;
51
- USA_FacematchVerified: boolean | null;
52
- MEX_FacematchVerified: boolean | null;
53
- fiadoListApproved: boolean | null;
54
- ofacListApproved: boolean | null;
55
- cnbvListApproved: boolean | null;
56
- blackListApproved: boolean | null;
57
- whiteList: boolean | null;
58
- hasOwner: boolean;
59
- older18: boolean | null;
60
- USA_Address: boolean;
61
- MEX_Address: boolean;
62
- COL_Address: boolean;
63
- GTM_Address: boolean;
64
- HND_Address: boolean;
65
- CRI_Address: boolean;
66
- PER_Address: boolean;
67
- MEX_ProofAddress: boolean;
68
- MEX_SendWish: boolean;
69
- COL_SendWish: boolean;
70
- GTM_SendWish: boolean;
71
- HND_SendWish: boolean;
72
- CRI_SendWish: boolean;
73
- PER_SendWish: boolean;
74
- USA_DebitAccountWish: boolean;
75
- MEX_DebitAccountWish: boolean;
76
- MEX_CreditAdditionalWish: boolean;
77
- MEX_CreditClientWish: boolean;
78
- SSN_ITINRequired: boolean | null;
79
-
80
- }
1
+
2
+ import { App } from '../../app/enums/App';
3
+ import { SexDocument } from '../enums/SexDocument';
4
+ import { IdentificationDocument } from './IdentificationDocument';
5
+
6
+
7
+ export class PeopleResponse {
8
+
9
+ id: string;
10
+ createDate: string;
11
+ lastUpdateDate: string;
12
+ creationMethod: App;
13
+ indexName: string;
14
+ preferredName: string;
15
+ usSuffix: string | null;
16
+ usLastNames: string | null;
17
+ usNames: string | null;
18
+ latNames: string | null;
19
+ latLastNamePaternal: string | null;
20
+ latLastNameMaternal: string | null;
21
+ aliasNames: string[] | null;
22
+ preferredPronoun: string | null;
23
+ SSN_ITIN: string | null;
24
+ rfc: string | null;
25
+ curp: string | null;
26
+ passportNumber: string | null;
27
+ countryOfPassport: string | null;
28
+ documents: IdentificationDocument[] | null;
29
+ countryOfBirth: string | null;
30
+ dateOfBirth: string | null;
31
+ stateOfBirth: string | null;
32
+ nationalities: string[] | null;
33
+ docSex: SexDocument | null;
34
+ internalEmail: string | null;
35
+ occupation: string | null;
36
+ incomeSource: string | null;
37
+ operationId: string | null;
38
+ tenantId: string | null;
39
+ photoOfpersonImageName: string | null;
40
+ videoOfPersonImageName: string | null;
41
+ USA_DebitAccount: boolean;
42
+ MEX_DebitAccount: boolean;
43
+ MEX_CreditClient: boolean;
44
+ MEX_CreditAdditional: boolean;
45
+ magicNumber: boolean;
46
+ USA_UploadDocument: boolean;
47
+ MEX_UploadDocument: boolean;
48
+ videoSelfieVerified: boolean;
49
+ MEX_ValidDocument: string;
50
+ USA_ValidDocument: string;
51
+ USA_FacematchVerified: boolean | null;
52
+ MEX_FacematchVerified: boolean | null;
53
+ fiadoListApproved: boolean | null;
54
+ ofacListApproved: boolean | null;
55
+ cnbvListApproved: boolean | null;
56
+ blackListApproved: boolean | null;
57
+ whiteList: boolean | null;
58
+ hasOwner: boolean;
59
+ older18: boolean | null;
60
+ USA_Address: boolean;
61
+ MEX_Address: boolean;
62
+ COL_Address: boolean;
63
+ GTM_Address: boolean;
64
+ HND_Address: boolean;
65
+ CRI_Address: boolean;
66
+ PER_Address: boolean;
67
+ MEX_ProofAddress: boolean;
68
+ MEX_SendWish: boolean;
69
+ COL_SendWish: boolean;
70
+ GTM_SendWish: boolean;
71
+ HND_SendWish: boolean;
72
+ CRI_SendWish: boolean;
73
+ PER_SendWish: boolean;
74
+ USA_DebitAccountWish: boolean;
75
+ MEX_DebitAccountWish: boolean;
76
+ MEX_CreditAdditionalWish: boolean;
77
+ MEX_CreditClientWish: boolean;
78
+ SSN_ITINRequired: boolean | null;
79
+
80
+ }
@@ -1,76 +1,76 @@
1
- import { SexDocument } from "../enums/SexDocument";
2
- import { IdentificationDocument } from "./IdentificationDocument";
3
-
4
-
5
- export class PeopleUpdateRequest {
6
-
7
- id?: string;
8
- creationMethod?: string;
9
- indexName?: string | null;
10
- preferredName?: string | null;
11
- usSuffix?: string | null;
12
- usLastNames?: string | null;
13
- usNames?: string | null;
14
- latNames?: string | null;
15
- latLastNamePaternal?: string | null;
16
- latLastNameMaternal?: string | null;
17
- aliasNames?: string[] | null;
18
- preferredPronoun?: string | null;
19
- SSN_ITIN?: string | null;
20
- rfc?: string | null;
21
- curp?: string | null;
22
- passportNumber?: string | null;
23
- countryOfPassport?: string | null;
24
- documents?: IdentificationDocument[] | null;
25
- countryOfBirth?: string | null;
26
- dateOfBirth?: string | null;
27
- stateOfBirth?: string | null;
28
- nationalities?: string[] | null;
29
- docSex?: SexDocument | null;
30
- internalEmail?: string | null;
31
- occupation?: string | null;
32
- incomeSource?: string | null;
33
- operationId?: string | null;
34
- tenantId?: string | null;
35
- photoOfpersonImageName?: string | null;
36
- videoOfPersonImageName?: string | null;
37
- USA_DebitAccount?: boolean;
38
- MEX_DebitAccount?: boolean;
39
- MEX_CreditClient?: boolean;
40
- MEX_CreditAdditional?: boolean;
41
- magicNumber?: boolean;
42
- USA_UploadDocument?: boolean;
43
- MEX_UploadDocument?: boolean;
44
- videoSelfieVerified?: boolean;
45
- MEX_ValidDocument?: string;
46
- USA_ValidDocument?: string;
47
- USA_FacematchVerified?: boolean | null;
48
- MEX_FacematchVerified?: boolean | null;
49
- fiadoListApproved?: boolean | null;
50
- ofacListApproved?: boolean | null;
51
- cnbvListApproved?: boolean | null;
52
- blackListApproved?: boolean | null;
53
- whiteList?: boolean | null;
54
- hasOwner?: boolean;
55
- older18?: boolean | null;
56
- USA_Address?: boolean;
57
- MEX_Address?: boolean;
58
- COL_Address?: boolean;
59
- GTM_Address?: boolean;
60
- HND_Address?: boolean;
61
- CRI_Address?: boolean;
62
- PER_Address?: boolean;
63
- MEX_ProofAddress?: boolean;
64
- MEX_SendWish?: boolean;
65
- COL_SendWish?: boolean;
66
- GTM_SendWish?: boolean;
67
- HND_SendWish?: boolean;
68
- CRI_SendWish?: boolean;
69
- PER_SendWish?: boolean;
70
- USA_DebitAccountWish?: boolean;
71
- MEX_DebitAccountWish?: boolean;
72
- MEX_CreditAdditionalWish?: boolean;
73
- MEX_CreditClientWish?: boolean;
74
- SSN_ITINRequired?: boolean | null;
75
- duplicateUserDetection?: boolean | null;
1
+ import { SexDocument } from "../enums/SexDocument";
2
+ import { IdentificationDocument } from "./IdentificationDocument";
3
+
4
+
5
+ export class PeopleUpdateRequest {
6
+
7
+ id?: string;
8
+ creationMethod?: string;
9
+ indexName?: string | null;
10
+ preferredName?: string | null;
11
+ usSuffix?: string | null;
12
+ usLastNames?: string | null;
13
+ usNames?: string | null;
14
+ latNames?: string | null;
15
+ latLastNamePaternal?: string | null;
16
+ latLastNameMaternal?: string | null;
17
+ aliasNames?: string[] | null;
18
+ preferredPronoun?: string | null;
19
+ SSN_ITIN?: string | null;
20
+ rfc?: string | null;
21
+ curp?: string | null;
22
+ passportNumber?: string | null;
23
+ countryOfPassport?: string | null;
24
+ documents?: IdentificationDocument[] | null;
25
+ countryOfBirth?: string | null;
26
+ dateOfBirth?: string | null;
27
+ stateOfBirth?: string | null;
28
+ nationalities?: string[] | null;
29
+ docSex?: SexDocument | null;
30
+ internalEmail?: string | null;
31
+ occupation?: string | null;
32
+ incomeSource?: string | null;
33
+ operationId?: string | null;
34
+ tenantId?: string | null;
35
+ photoOfpersonImageName?: string | null;
36
+ videoOfPersonImageName?: string | null;
37
+ USA_DebitAccount?: boolean;
38
+ MEX_DebitAccount?: boolean;
39
+ MEX_CreditClient?: boolean;
40
+ MEX_CreditAdditional?: boolean;
41
+ magicNumber?: boolean;
42
+ USA_UploadDocument?: boolean;
43
+ MEX_UploadDocument?: boolean;
44
+ videoSelfieVerified?: boolean;
45
+ MEX_ValidDocument?: string;
46
+ USA_ValidDocument?: string;
47
+ USA_FacematchVerified?: boolean | null;
48
+ MEX_FacematchVerified?: boolean | null;
49
+ fiadoListApproved?: boolean | null;
50
+ ofacListApproved?: boolean | null;
51
+ cnbvListApproved?: boolean | null;
52
+ blackListApproved?: boolean | null;
53
+ whiteList?: boolean | null;
54
+ hasOwner?: boolean;
55
+ older18?: boolean | null;
56
+ USA_Address?: boolean;
57
+ MEX_Address?: boolean;
58
+ COL_Address?: boolean;
59
+ GTM_Address?: boolean;
60
+ HND_Address?: boolean;
61
+ CRI_Address?: boolean;
62
+ PER_Address?: boolean;
63
+ MEX_ProofAddress?: boolean;
64
+ MEX_SendWish?: boolean;
65
+ COL_SendWish?: boolean;
66
+ GTM_SendWish?: boolean;
67
+ HND_SendWish?: boolean;
68
+ CRI_SendWish?: boolean;
69
+ PER_SendWish?: boolean;
70
+ USA_DebitAccountWish?: boolean;
71
+ MEX_DebitAccountWish?: boolean;
72
+ MEX_CreditAdditionalWish?: boolean;
73
+ MEX_CreditClientWish?: boolean;
74
+ SSN_ITINRequired?: boolean | null;
75
+ duplicateUserDetection?: boolean | null;
76
76
  }
@@ -1,12 +1,12 @@
1
-
2
-
3
- export class TypeOfDocument {
4
- id: string;
5
- countryId: string;
6
- isEnabled: boolean;
7
- name: string;
8
- side: number;
9
- order: number;
10
- subtype: string;
11
- type: string;
1
+
2
+
3
+ export class TypeOfDocument {
4
+ id: string;
5
+ countryId: string;
6
+ isEnabled: boolean;
7
+ name: string;
8
+ side: number;
9
+ order: number;
10
+ subtype: string;
11
+ type: string;
12
12
  }
@@ -1,7 +1,7 @@
1
-
2
-
3
- export enum IdentificationDocumentStatus {
4
- VERIFIED = "VERIFIED",
5
- REJECTED = "REJECTED",
6
- UNVERIFIED = "UNVERIFIED"
7
- }
1
+
2
+
3
+ export enum IdentificationDocumentStatus {
4
+ VERIFIED = "VERIFIED",
5
+ REJECTED = "REJECTED",
6
+ UNVERIFIED = "UNVERIFIED"
7
+ }
@@ -1,6 +1,6 @@
1
-
2
-
3
- export enum SexDocument {
4
- M = "M",
5
- F = "F"
6
- }
1
+
2
+
3
+ export enum SexDocument {
4
+ M = "M",
5
+ F = "F"
6
+ }
@@ -1,6 +1,6 @@
1
- export enum TypeOfDocument {
2
- MX_NATIONAL_ID = "MX_NATIONAL_ID",
3
- MX_PASSPORT = "MX_PASSPORT",
4
- US_DRIVER_LICENSE = "US_DRIVER_LICENSE",
5
- US_PASSPORT = "US_PASSPORT"
1
+ export enum TypeOfDocument {
2
+ MX_NATIONAL_ID = "MX_NATIONAL_ID",
3
+ MX_PASSPORT = "MX_PASSPORT",
4
+ US_DRIVER_LICENSE = "US_DRIVER_LICENSE",
5
+ US_PASSPORT = "US_PASSPORT"
6
6
  }
@@ -1,12 +1,12 @@
1
-
2
- //dtos
3
- export * from './dtos/IdentificationDocument'
4
- export * from './dtos/PeopleCreateRequest';
5
- export * from './dtos/PeopleResponse';
6
- export * from './dtos/TypeOfDocument';
7
- export * from './dtos/PeopleUpdateRequest';
8
-
9
- //enums
10
- export * from './enums/IdentificationDocumentStatus';
11
- export * from './enums/SexDocument';
12
-
1
+
2
+ //dtos
3
+ export * from './dtos/IdentificationDocument'
4
+ export * from './dtos/PeopleCreateRequest';
5
+ export * from './dtos/PeopleResponse';
6
+ export * from './dtos/TypeOfDocument';
7
+ export * from './dtos/PeopleUpdateRequest';
8
+
9
+ //enums
10
+ export * from './enums/IdentificationDocumentStatus';
11
+ export * from './enums/SexDocument';
12
+
package/src/index.ts CHANGED
@@ -1,22 +1,22 @@
1
- export * as Account from './account';
2
- export * as Address from './address';
3
- export * as App from './app';
4
- export * as Authentication from './authentication';
5
- export * as Card from './card';
6
- export * as Country from './country';
7
- export * as Currency from './currency';
8
- export * as Directory from './directory';
9
- export * as ExchangeRate from './exchangeRate';
10
- export * as File from './identity';
11
- export * as Group from './group';
12
- export * as Identity from './provider';
13
- export * as Header from './header';
14
- export * as ServicePayment from './servicePayment';
15
- export * as NotificationMessages from './notificationMessages';
16
- export * as SessionActivity from './sessionActivity';
17
- export * as EventBridgeMessage from './eventBridge'
18
- export * as GenericMessage from './genericMessage'
19
-
20
-
21
-
22
-
1
+ export * as Account from './account';
2
+ export * as Address from './address';
3
+ export * as App from './app';
4
+ export * as Authentication from './authentication';
5
+ export * as Card from './card';
6
+ export * as Country from './country';
7
+ export * as Currency from './currency';
8
+ export * as Directory from './directory';
9
+ export * as ExchangeRate from './exchangeRate';
10
+ export * as File from './identity';
11
+ export * as Group from './group';
12
+ export * as Identity from './provider';
13
+ export * as Header from './header';
14
+ export * as ServicePayment from './servicePayment';
15
+ export * as NotificationMessages from './notificationMessages';
16
+ export * as SessionActivity from './sessionActivity';
17
+ export * as EventBridgeMessage from './eventBridge'
18
+ export * as GenericMessage from './genericMessage'
19
+
20
+
21
+
22
+
@@ -1,8 +1,8 @@
1
- import {QueueMessageDestination} from "./QueueMessageDestination";
2
-
3
- export class NotificationQueueMessageRequest {
4
- templateId: string; // Nombre de la plantilla de mensaje a enviar
5
- broadcast?: boolean; // Si el mensaje es masivo o no (a todos los dispositivos registrados)
6
- destinations: QueueMessageDestination[]; // Grupo de destinos (directory y variables)
7
- data?: any; // Informacion adicional a enviar al destino
1
+ import {QueueMessageDestination} from "./QueueMessageDestination";
2
+
3
+ export class NotificationQueueMessageRequest {
4
+ templateId: string; // Nombre de la plantilla de mensaje a enviar
5
+ broadcast?: boolean; // Si el mensaje es masivo o no (a todos los dispositivos registrados)
6
+ destinations: QueueMessageDestination[]; // Grupo de destinos (directory y variables)
7
+ data?: any; // Informacion adicional a enviar al destino
8
8
  }
@@ -1,7 +1,7 @@
1
- import {QueueMessageVariableValues} from "./QueueMessageVariableValues";
2
-
3
- export class QueueMessageDestination {
4
- directoryId: string;
5
- templateVariables?: QueueMessageVariableValues[];
6
- data?: any;
1
+ import {QueueMessageVariableValues} from "./QueueMessageVariableValues";
2
+
3
+ export class QueueMessageDestination {
4
+ directoryId: string;
5
+ templateVariables?: QueueMessageVariableValues[];
6
+ data?: any;
7
7
  }
@@ -1,4 +1,4 @@
1
- export class QueueMessageVariableValues {
2
- key: string;
3
- value: string;
1
+ export class QueueMessageVariableValues {
2
+ key: string;
3
+ value: string;
4
4
  }
@@ -1,14 +1,14 @@
1
-
2
-
3
-
4
- export enum NotificationId {
5
-
6
- ISSUED_ACCOUNT_USA = "ISSUED_ACCOUNT_USA", //Mesnaje de apertura de cuentas y tarjeta USA
7
- ISSUED_ACCOUNT_MEX = "ISSUED_ACCOUNT_MEX", //Mesnaje de apertura de cuentas y tarjeta MEX
8
- ONB_ERROR_VALID_DOCUMENT = "ONB_ERROR_VALID_DOCUMENT", // Mensaje cuando el resultado del onboarding es error en la validación del documento
9
- ONB_ERROR_FACEMATCH = "ONB_ERROR_FACEMATCH", // Mensaje cuando el resultado del onboarding es error porque no hace match en video selfie con el documento
10
-
11
-
12
-
13
-
1
+
2
+
3
+
4
+ export enum NotificationId {
5
+
6
+ ISSUED_ACCOUNT_USA = "ISSUED_ACCOUNT_USA", //Mesnaje de apertura de cuentas y tarjeta USA
7
+ ISSUED_ACCOUNT_MEX = "ISSUED_ACCOUNT_MEX", //Mesnaje de apertura de cuentas y tarjeta MEX
8
+ ONB_ERROR_VALID_DOCUMENT = "ONB_ERROR_VALID_DOCUMENT", // Mensaje cuando el resultado del onboarding es error en la validación del documento
9
+ ONB_ERROR_FACEMATCH = "ONB_ERROR_FACEMATCH", // Mensaje cuando el resultado del onboarding es error porque no hace match en video selfie con el documento
10
+
11
+
12
+
13
+
14
14
  }
@@ -1,6 +1,6 @@
1
- export * from './dtos/NotificationQueueMessageRequest';
2
- export * from './dtos/QueueMessageDestination';
3
- export * from './dtos/QueueMessageVariableValues';
4
-
5
-
1
+ export * from './dtos/NotificationQueueMessageRequest';
2
+ export * from './dtos/QueueMessageDestination';
3
+ export * from './dtos/QueueMessageVariableValues';
4
+
5
+
6
6
  export * from "./enums/NotificationId";
@@ -1,5 +1,5 @@
1
- export enum Provider {
2
- TERN = 'TERN',
3
- POMELO = 'POMELO',
4
- STP= 'STP'
1
+ export enum Provider {
2
+ TERN = 'TERN',
3
+ POMELO = 'POMELO',
4
+ STP= 'STP'
5
5
  }
@@ -1,2 +1,2 @@
1
-
1
+
2
2
  export * from './enums/Provider';
@@ -1,14 +1,14 @@
1
- import { IsEnum, IsString } from "class-validator";
2
- import { Provider } from "../../provider";
3
-
4
-
5
- export class QueueMessageBase<T> {
6
-
7
- @IsEnum(Provider)
8
- provider: string;
9
-
10
- @IsString()
11
- eventType: string;
12
-
13
- message: T
1
+ import { IsEnum, IsString } from "class-validator";
2
+ import { Provider } from "../../provider";
3
+
4
+
5
+ export class QueueMessageBase<T> {
6
+
7
+ @IsEnum(Provider)
8
+ provider: string;
9
+
10
+ @IsString()
11
+ eventType: string;
12
+
13
+ message: T
14
14
  }