@fiado/type-kit 1.2.2 → 1.2.4
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.
- package/bin/account/dtos/AccountCreateRequest.d.ts +24 -0
- package/bin/account/dtos/AccountCreateRequest.js +104 -0
- package/bin/account/dtos/AccountCreateResponse.d.ts +8 -0
- package/bin/account/dtos/AccountCreateResponse.js +6 -0
- package/bin/account/dtos/AccountInfo.d.ts +12 -0
- package/bin/account/dtos/AccountInfo.js +59 -0
- package/bin/account/dtos/AccountUpdateBalanceRequest.d.ts +4 -0
- package/bin/account/dtos/AccountUpdateBalanceRequest.js +20 -0
- package/bin/account/dtos/BankAccountExternalAddress.d.ts +15 -0
- package/bin/account/dtos/BankAccountExternalAddress.js +6 -0
- package/bin/account/dtos/BankAccountP2pTransferRequest.d.ts +7 -0
- package/bin/account/dtos/BankAccountP2pTransferRequest.js +6 -0
- package/bin/account/dtos/CreateBankAccountRequest.d.ts +8 -0
- package/bin/account/dtos/CreateBankAccountRequest.js +6 -0
- package/bin/account/dtos/CreateBankAccountResponse.d.ts +5 -0
- package/bin/account/dtos/CreateBankAccountResponse.js +6 -0
- package/bin/account/dtos/CreateBankAccountUserRequest.d.ts +14 -0
- package/bin/account/dtos/CreateBankAccountUserRequest.js +6 -0
- package/bin/account/dtos/CreateBankAccountUserResponse.d.ts +8 -0
- package/bin/account/dtos/CreateBankAccountUserResponse.js +6 -0
- package/bin/account/dtos/ExchangeInfo.d.ts +4 -0
- package/bin/account/dtos/ExchangeInfo.js +23 -0
- package/bin/account/dtos/ExecuteP2pOperationRequest.d.ts +7 -0
- package/bin/account/dtos/ExecuteP2pOperationRequest.js +6 -0
- package/bin/account/dtos/ExecutePocketOperationRequest.d.ts +3 -0
- package/bin/account/dtos/ExecutePocketOperationRequest.js +20 -0
- package/bin/account/dtos/GetAccountBalanceResponse.d.ts +11 -0
- package/bin/account/dtos/GetAccountBalanceResponse.js +59 -0
- package/bin/account/dtos/GetAccountResponse.d.ts +20 -0
- package/bin/account/dtos/GetAccountResponse.js +89 -0
- package/bin/account/dtos/GetBankAccountRequest.d.ts +4 -0
- package/bin/account/dtos/GetBankAccountRequest.js +6 -0
- package/bin/account/dtos/GetBankAccountResponse.d.ts +22 -0
- package/bin/account/dtos/GetBankAccountResponse.js +6 -0
- package/bin/account/dtos/GetBankAccountSensitiveInformationRequest.d.ts +5 -0
- package/bin/account/dtos/GetBankAccountSensitiveInformationRequest.js +6 -0
- package/bin/account/dtos/GetBankAccountSensitiveInformationResponse.d.ts +8 -0
- package/bin/account/dtos/GetBankAccountSensitiveInformationResponse.js +6 -0
- package/bin/account/dtos/GetBankAccountUserRequest.d.ts +3 -0
- package/bin/account/dtos/GetBankAccountUserRequest.js +6 -0
- package/bin/account/dtos/GetBankAccountUserResponse.d.ts +25 -0
- package/bin/account/dtos/GetBankAccountUserResponse.js +6 -0
- package/bin/account/dtos/GetPocketBalanceResponse.d.ts +11 -0
- package/bin/account/dtos/GetPocketBalanceResponse.js +65 -0
- package/bin/account/dtos/GetPocketResponse.d.ts +8 -0
- package/bin/account/dtos/GetPocketResponse.js +5 -0
- package/bin/account/dtos/PocketBalanceItem.d.ts +7 -0
- package/bin/account/dtos/PocketBalanceItem.js +36 -0
- package/bin/account/dtos/PocketItem.d.ts +12 -0
- package/bin/account/dtos/PocketItem.js +61 -0
- package/bin/account/dtos/UpdateBalanceOperation.d.ts +8 -0
- package/bin/account/dtos/UpdateBalanceOperation.js +6 -0
- package/bin/account/dtos/UpdateBankAccountUserRequest.d.ts +26 -0
- package/bin/account/dtos/UpdateBankAccountUserRequest.js +6 -0
- package/bin/account/dtos/UpdateBankAccountUserResponse.d.ts +4 -0
- package/bin/account/dtos/UpdateBankAccountUserResponse.js +6 -0
- package/bin/account/entities/AccountEntityBase.d.ts +12 -0
- package/bin/account/entities/AccountEntityBase.js +6 -0
- package/bin/account/enums/AccountEntityStatusEnum.d.ts +5 -0
- package/bin/account/enums/AccountEntityStatusEnum.js +9 -0
- package/bin/account/enums/AccountLevelEnum.d.ts +6 -0
- package/bin/account/enums/AccountLevelEnum.js +10 -0
- package/bin/account/enums/BankAccountP2pTransferType.d.ts +6 -0
- package/bin/account/enums/BankAccountP2pTransferType.js +10 -0
- package/bin/account/enums/BankAccountTypeEnum.d.ts +3 -0
- package/bin/account/enums/BankAccountTypeEnum.js +7 -0
- package/bin/account/enums/BankAccountUserStatusEnum.d.ts +5 -0
- package/bin/account/enums/BankAccountUserStatusEnum.js +9 -0
- package/bin/account/enums/UserEntityStatusEnum.d.ts +5 -0
- package/bin/account/enums/UserEntityStatusEnum.js +9 -0
- package/bin/account/index.d.ts +35 -0
- package/bin/account/index.js +54 -0
- package/bin/address/dtos/AddressBase.d.ts +34 -0
- package/bin/address/dtos/AddressBase.js +163 -0
- package/bin/address/dtos/AddressCreateRequest.d.ts +3 -0
- package/bin/address/dtos/AddressCreateRequest.js +7 -0
- package/bin/address/dtos/AddressResponse.d.ts +7 -0
- package/bin/address/dtos/AddressResponse.js +47 -0
- package/bin/address/dtos/AddressShippingCardRequest.d.ts +9 -0
- package/bin/address/dtos/AddressShippingCardRequest.js +7 -0
- package/bin/address/dtos/AddressShippingCardResponse.d.ts +8 -0
- package/bin/address/dtos/AddressShippingCardResponse.js +2 -0
- package/bin/address/dtos/Geometry.d.ts +3 -0
- package/bin/address/dtos/Geometry.js +2 -0
- package/bin/address/dtos/OfficeDetails.d.ts +28 -0
- package/bin/address/dtos/OfficeDetails.js +2 -0
- package/bin/address/dtos/OperationSchedule.d.ts +7 -0
- package/bin/address/dtos/OperationSchedule.js +2 -0
- package/bin/address/dtos/Place.d.ts +21 -0
- package/bin/address/dtos/Place.js +112 -0
- package/bin/address/dtos/Shipping.d.ts +11 -0
- package/bin/address/dtos/Shipping.js +57 -0
- package/bin/address/dtos/Timezone.d.ts +4 -0
- package/bin/address/dtos/Timezone.js +2 -0
- package/bin/address/enums/AddressProvider.d.ts +9 -0
- package/bin/address/enums/AddressProvider.js +13 -0
- package/bin/address/enums/AddressStatus.d.ts +9 -0
- package/bin/address/enums/AddressStatus.js +13 -0
- package/bin/address/index.d.ts +12 -0
- package/bin/address/index.js +30 -0
- package/bin/app/enums/App.d.ts +9 -0
- package/bin/app/enums/App.js +13 -0
- package/bin/app/index.d.ts +1 -0
- package/bin/app/index.js +18 -0
- package/bin/authentication/dtos/SignUpAdditionalRequest.d.ts +7 -0
- package/bin/authentication/dtos/SignUpAdditionalRequest.js +46 -0
- package/bin/authentication/dtos/SignUpAdditionalResponse.d.ts +4 -0
- package/bin/authentication/dtos/SignUpAdditionalResponse.js +6 -0
- package/bin/authentication/index.d.ts +2 -0
- package/bin/authentication/index.js +19 -0
- package/bin/bankAccount/dtos/ExternalAccountCurrency.d.ts +4 -0
- package/bin/bankAccount/dtos/ExternalAccountCurrency.js +6 -0
- package/bin/bankAccount/dtos/ExternalAccountType.d.ts +4 -0
- package/bin/bankAccount/dtos/ExternalAccountType.js +6 -0
- package/bin/bankAccount/dtos/GetExternalBankAccountRequest.d.ts +12 -0
- package/bin/bankAccount/dtos/GetExternalBankAccountRequest.js +5 -0
- package/bin/bankAccount/dtos/GetExternalBankAccountResponse.d.ts +15 -0
- package/bin/bankAccount/dtos/GetExternalBankAccountResponse.js +5 -0
- package/bin/bankAccount/dtos/GetExternalBankResponse.d.ts +13 -0
- package/bin/bankAccount/dtos/GetExternalBankResponse.js +6 -0
- package/bin/bankAccount/index.d.ts +5 -0
- package/bin/bankAccount/index.js +21 -0
- package/bin/bbvaRst/dtos/CreateRSTTransactionRequest.d.ts +13 -0
- package/bin/bbvaRst/dtos/CreateRSTTransactionRequest.js +6 -0
- package/bin/bbvaRst/dtos/CreateRSTTransactionResponse.d.ts +9 -0
- package/bin/bbvaRst/dtos/CreateRSTTransactionResponse.js +6 -0
- package/bin/bbvaRst/enums/RSTStatusEnum.d.ts +5 -0
- package/bin/bbvaRst/enums/RSTStatusEnum.js +9 -0
- package/bin/bbvaRst/index.d.ts +3 -0
- package/bin/bbvaRst/index.js +19 -0
- package/bin/beneficiary/dtos/AccountBeneficiaryCreateRequest.d.ts +11 -0
- package/bin/beneficiary/dtos/AccountBeneficiaryCreateRequest.js +60 -0
- package/bin/beneficiary/dtos/AccountBeneficiaryResponse.d.ts +18 -0
- package/bin/beneficiary/dtos/AccountBeneficiaryResponse.js +6 -0
- package/bin/beneficiary/dtos/AccountBeneficiaryUpdateRequest.d.ts +10 -0
- package/bin/beneficiary/dtos/AccountBeneficiaryUpdateRequest.js +59 -0
- package/bin/beneficiary/enums/AccountType.d.ts +4 -0
- package/bin/beneficiary/enums/AccountType.js +8 -0
- package/bin/beneficiary/index.d.ts +4 -0
- package/bin/beneficiary/index.js +22 -0
- package/bin/card/dtos/CardActivateRequest.d.ts +5 -0
- package/bin/card/dtos/CardActivateRequest.js +26 -0
- package/bin/card/dtos/CardAdditionalRequest.d.ts +9 -0
- package/bin/card/dtos/CardAdditionalRequest.js +44 -0
- package/bin/card/dtos/CardAdditionalResponse.d.ts +11 -0
- package/bin/card/dtos/CardAdditionalResponse.js +6 -0
- package/bin/card/dtos/CardApplicationRequest.d.ts +9 -0
- package/bin/card/dtos/CardApplicationRequest.js +42 -0
- package/bin/card/dtos/CardBalanceResponse.d.ts +9 -0
- package/bin/card/dtos/CardBalanceResponse.js +6 -0
- package/bin/card/dtos/CardCreateAdditionalRequest.d.ts +16 -0
- package/bin/card/dtos/CardCreateAdditionalRequest.js +94 -0
- package/bin/card/dtos/CardResponse.d.ts +33 -0
- package/bin/card/dtos/CardResponse.js +6 -0
- package/bin/card/dtos/CardSensitiveInformationResponse.d.ts +17 -0
- package/bin/card/dtos/CardSensitiveInformationResponse.js +6 -0
- package/bin/card/dtos/CardShipmentQueueMessage.d.ts +5 -0
- package/bin/card/dtos/CardShipmentQueueMessage.js +7 -0
- package/bin/card/dtos/CardShipmentUpdateRequest.d.ts +6 -0
- package/bin/card/dtos/CardShipmentUpdateRequest.js +36 -0
- package/bin/card/dtos/CardSummaryResponse.d.ts +7 -0
- package/bin/card/dtos/CardSummaryResponse.js +6 -0
- package/bin/card/dtos/CardUpdateRequest.d.ts +5 -0
- package/bin/card/dtos/CardUpdateRequest.js +25 -0
- package/bin/card/dtos/Internal/ActivateBankAccountCardRequest.d.ts +8 -0
- package/bin/card/dtos/Internal/ActivateBankAccountCardRequest.js +6 -0
- package/bin/card/dtos/Internal/ActivateBankAccountCardResponse.d.ts +3 -0
- package/bin/card/dtos/Internal/ActivateBankAccountCardResponse.js +6 -0
- package/bin/card/dtos/Internal/AssignCardRequest.d.ts +4 -0
- package/bin/card/dtos/Internal/AssignCardRequest.js +2 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardRequest.d.ts +16 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardRequest.js +6 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardResponse.d.ts +7 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardResponse.js +6 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardShippingRequest.d.ts +14 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardShippingRequest.js +6 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardShippingResponse.d.ts +11 -0
- package/bin/card/dtos/Internal/CreateBankAccountCardShippingResponse.js +6 -0
- package/bin/card/dtos/Internal/GetBankAccountCardResponse.d.ts +31 -0
- package/bin/card/dtos/Internal/GetBankAccountCardResponse.js +2 -0
- package/bin/card/dtos/Internal/GetBankAccountShippingRequest.d.ts +3 -0
- package/bin/card/dtos/Internal/GetBankAccountShippingRequest.js +6 -0
- package/bin/card/dtos/Internal/GetBankAccountShippingResponse.d.ts +19 -0
- package/bin/card/dtos/Internal/GetBankAccountShippingResponse.js +6 -0
- package/bin/card/dtos/Internal/UpdateBankAccountCardRequest.d.ts +20 -0
- package/bin/card/dtos/Internal/UpdateBankAccountCardRequest.js +6 -0
- package/bin/card/dtos/Internal/UpdateBankAccountCardResponse.d.ts +4 -0
- package/bin/card/dtos/Internal/UpdateBankAccountCardResponse.js +6 -0
- package/bin/card/enums/Brand.d.ts +8 -0
- package/bin/card/enums/Brand.js +13 -0
- package/bin/card/enums/CardIssuanceStatus.d.ts +5 -0
- package/bin/card/enums/CardIssuanceStatus.js +9 -0
- package/bin/card/enums/CardIssuing.d.ts +5 -0
- package/bin/card/enums/CardIssuing.js +9 -0
- package/bin/card/enums/CardType.d.ts +5 -0
- package/bin/card/enums/CardType.js +9 -0
- package/bin/card/enums/CardUpdateKey.d.ts +4 -0
- package/bin/card/enums/CardUpdateKey.js +8 -0
- package/bin/card/enums/CreditOrDebit.d.ts +4 -0
- package/bin/card/enums/CreditOrDebit.js +8 -0
- package/bin/card/enums/DeliveryChannel.d.ts +6 -0
- package/bin/card/enums/DeliveryChannel.js +10 -0
- package/bin/card/enums/ExternalShippingStatus.d.ts +14 -0
- package/bin/card/enums/ExternalShippingStatus.js +18 -0
- package/bin/card/enums/ExternalShippingStatusDetails.d.ts +54 -0
- package/bin/card/enums/ExternalShippingStatusDetails.js +58 -0
- package/bin/card/enums/IssuanceType.d.ts +4 -0
- package/bin/card/enums/IssuanceType.js +8 -0
- package/bin/card/enums/NominatedOrInnominated.d.ts +4 -0
- package/bin/card/enums/NominatedOrInnominated.js +8 -0
- package/bin/card/enums/OwnershipType.d.ts +4 -0
- package/bin/card/enums/OwnershipType.js +8 -0
- package/bin/card/enums/ShippingStatus.d.ts +6 -0
- package/bin/card/enums/ShippingStatus.js +10 -0
- package/bin/card/enums/Status.d.ts +6 -0
- package/bin/card/enums/Status.js +10 -0
- package/bin/card/enums/UpdateKey.d.ts +4 -0
- package/bin/card/enums/UpdateKey.js +8 -0
- package/bin/card/enums/VirtualOrPhysical.d.ts +4 -0
- package/bin/card/enums/VirtualOrPhysical.js +8 -0
- package/bin/card/index.d.ts +40 -0
- package/bin/card/index.js +59 -0
- package/bin/card/validations/CardUpdateKeyConstraint.d.ts +7 -0
- package/bin/card/validations/CardUpdateKeyConstraint.js +57 -0
- package/bin/card/validations/IsPhoneNumberConstraint.d.ts +6 -0
- package/bin/card/validations/IsPhoneNumberConstraint.js +39 -0
- package/bin/contactInfo/dtos/ContactInfoCreateRequest.d.ts +15 -0
- package/bin/contactInfo/dtos/ContactInfoCreateRequest.js +76 -0
- package/bin/contactInfo/dtos/GetAllContactInfoResponse.d.ts +13 -0
- package/bin/contactInfo/dtos/GetAllContactInfoResponse.js +6 -0
- package/bin/contactInfo/enums/TypeOfContactIdEnum.d.ts +4 -0
- package/bin/contactInfo/enums/TypeOfContactIdEnum.js +8 -0
- package/bin/contactInfo/index.d.ts +3 -0
- package/bin/contactInfo/index.js +19 -0
- package/bin/contract/dtos/ContractCreateRequest.d.ts +8 -0
- package/bin/contract/dtos/ContractCreateRequest.js +46 -0
- package/bin/contract/dtos/ContractCreateResponse.d.ts +3 -0
- package/bin/contract/dtos/ContractCreateResponse.js +6 -0
- package/bin/contract/index.d.ts +2 -0
- package/bin/contract/index.js +19 -0
- package/bin/country/enums/Country.d.ts +4 -0
- package/bin/country/enums/Country.js +8 -0
- package/bin/country/enums/CountryId.d.ts +4 -0
- package/bin/country/enums/CountryId.js +9 -0
- package/bin/country/index.d.ts +2 -0
- package/bin/country/index.js +20 -0
- package/bin/creditContract/dtos/CreditContractCreateRequest.d.ts +15 -0
- package/bin/creditContract/dtos/CreditContractCreateRequest.js +72 -0
- package/bin/creditContract/enums/InstrumentEnum.d.ts +6 -0
- package/bin/creditContract/enums/InstrumentEnum.js +2 -0
- package/bin/creditContract/index.d.ts +2 -0
- package/bin/creditContract/index.js +20 -0
- package/bin/currency/dtos/CurrencyResponse.d.ts +6 -0
- package/bin/currency/dtos/CurrencyResponse.js +6 -0
- package/bin/currency/index.d.ts +1 -0
- package/bin/currency/index.js +17 -0
- package/bin/directory/dtos/DirectoryResponse.d.ts +18 -0
- package/bin/directory/dtos/DirectoryResponse.js +2 -0
- package/bin/directory/dtos/External.d.ts +5 -0
- package/bin/directory/dtos/External.js +2 -0
- package/bin/directory/enums/Profile.d.ts +5 -0
- package/bin/directory/enums/Profile.js +9 -0
- package/bin/directory/enums/Scope.d.ts +6 -0
- package/bin/directory/enums/Scope.js +10 -0
- package/bin/directory/enums/Status.d.ts +6 -0
- package/bin/directory/enums/Status.js +10 -0
- package/bin/directory/enums/TypeOfDirectoryId.d.ts +5 -0
- package/bin/directory/enums/TypeOfDirectoryId.js +9 -0
- package/bin/directory/index.d.ts +3 -0
- package/bin/directory/index.js +21 -0
- package/bin/eventBridge/dto/EventBridgeMessageRequest.d.ts +3 -0
- package/bin/eventBridge/dto/EventBridgeMessageRequest.js +7 -0
- package/bin/eventBridge/index.d.ts +1 -0
- package/bin/eventBridge/index.js +18 -0
- package/bin/exchangeRate/dtos/ExchangeRateCreateRequest.d.ts +17 -0
- package/bin/exchangeRate/dtos/ExchangeRateCreateRequest.js +74 -0
- package/bin/exchangeRate/dtos/ExchangeRateCreateResponse.d.ts +3 -0
- package/bin/exchangeRate/dtos/ExchangeRateCreateResponse.js +7 -0
- package/bin/exchangeRate/dtos/ExchangeRateResponse.d.ts +18 -0
- package/bin/exchangeRate/dtos/ExchangeRateResponse.js +6 -0
- package/bin/exchangeRate/dtos/GetExchangeRatesRequest.d.ts +4 -0
- package/bin/exchangeRate/dtos/GetExchangeRatesRequest.js +5 -0
- package/bin/exchangeRate/enums/ExchangeRateStatus.d.ts +4 -0
- package/bin/exchangeRate/enums/ExchangeRateStatus.js +8 -0
- package/bin/exchangeRate/index.d.ts +5 -0
- package/bin/exchangeRate/index.js +23 -0
- package/bin/genericMessage/dto/GenericMessageRequest.d.ts +7 -0
- package/bin/genericMessage/dto/GenericMessageRequest.js +30 -0
- package/bin/genericMessage/enums/GenericMessageSourceEnum.d.ts +3 -0
- package/bin/genericMessage/enums/GenericMessageSourceEnum.js +7 -0
- package/bin/genericMessage/index.d.ts +1 -0
- package/bin/genericMessage/index.js +18 -0
- package/bin/group/dtos/GroupAddDirectoryRequest.d.ts +10 -0
- package/bin/group/dtos/GroupAddDirectoryRequest.js +48 -0
- package/bin/group/dtos/GroupCreateRequest.d.ts +13 -0
- package/bin/group/dtos/GroupCreateRequest.js +77 -0
- package/bin/group/dtos/GroupDirectoryRelationsResponse.d.ts +16 -0
- package/bin/group/dtos/GroupDirectoryRelationsResponse.js +6 -0
- package/bin/group/dtos/GroupDirectoryRelationsUpdateRequest.d.ts +3 -0
- package/bin/group/dtos/GroupDirectoryRelationsUpdateRequest.js +22 -0
- package/bin/group/dtos/GroupResponse.d.ts +12 -0
- package/bin/group/dtos/GroupResponse.js +6 -0
- package/bin/group/dtos/GroupUpdateRequest.d.ts +9 -0
- package/bin/group/dtos/GroupUpdateRequest.js +49 -0
- package/bin/group/enums/GroupAction.d.ts +4 -0
- package/bin/group/enums/GroupAction.js +8 -0
- package/bin/group/enums/GroupStatus.d.ts +4 -0
- package/bin/group/enums/GroupStatus.js +8 -0
- package/bin/group/enums/RelationStatus.d.ts +5 -0
- package/bin/group/enums/RelationStatus.js +9 -0
- package/bin/group/enums/RelationType.d.ts +5 -0
- package/bin/group/enums/RelationType.js +9 -0
- package/bin/group/index.d.ts +10 -0
- package/bin/group/index.js +28 -0
- package/bin/header/TokenPayload.d.ts +17 -0
- package/bin/header/TokenPayload.js +2 -0
- package/bin/header/index.d.ts +1 -0
- package/bin/header/index.js +17 -0
- package/bin/helpers/ValidationUtils.d.ts +6 -0
- package/bin/helpers/ValidationUtils.js +34 -0
- package/bin/helpers/constans/regex.d.ts +3 -0
- package/bin/helpers/constans/regex.js +9 -0
- package/bin/identity/dtos/IdentificationDocument.d.ts +22 -0
- package/bin/identity/dtos/IdentificationDocument.js +6 -0
- package/bin/identity/dtos/PeopleCreateRequest.d.ts +2 -0
- package/bin/identity/dtos/PeopleCreateRequest.js +6 -0
- package/bin/identity/dtos/PeopleResponse.d.ts +66 -0
- package/bin/identity/dtos/PeopleResponse.js +6 -0
- package/bin/identity/dtos/PeopleUpdateRequest.d.ts +68 -0
- package/bin/identity/dtos/PeopleUpdateRequest.js +6 -0
- package/bin/identity/dtos/TypeOfDocument.d.ts +10 -0
- package/bin/identity/dtos/TypeOfDocument.js +6 -0
- package/bin/identity/enums/IdentificationDocumentStatus.d.ts +5 -0
- package/bin/identity/enums/IdentificationDocumentStatus.js +9 -0
- package/bin/identity/enums/SexDocument.d.ts +4 -0
- package/bin/identity/enums/SexDocument.js +8 -0
- package/bin/identity/enums/TypeOfDocument.d.ts +6 -0
- package/bin/identity/enums/TypeOfDocument.js +10 -0
- package/bin/identity/index.d.ts +7 -0
- package/bin/identity/index.js +25 -0
- package/bin/index.d.ts +29 -0
- package/bin/index.js +55 -0
- package/bin/notificationMessages/dtos/NotificationQueueMessageRequest.d.ts +7 -0
- package/bin/notificationMessages/dtos/NotificationQueueMessageRequest.js +6 -0
- package/bin/notificationMessages/dtos/QueueMessageDestination.d.ts +6 -0
- package/bin/notificationMessages/dtos/QueueMessageDestination.js +6 -0
- package/bin/notificationMessages/dtos/QueueMessageVariableValues.d.ts +4 -0
- package/bin/notificationMessages/dtos/QueueMessageVariableValues.js +6 -0
- package/bin/notificationMessages/enums/NotificationId.d.ts +6 -0
- package/bin/notificationMessages/enums/NotificationId.js +10 -0
- package/bin/notificationMessages/index.d.ts +4 -0
- package/bin/notificationMessages/index.js +20 -0
- package/bin/p2pContact/dtos/CreateP2pContactRequest.d.ts +8 -0
- package/bin/p2pContact/dtos/CreateP2pContactRequest.js +6 -0
- package/bin/p2pContact/index.d.ts +1 -0
- package/bin/p2pContact/index.js +17 -0
- package/bin/productCatalog/dtos/CreateProductCatalogRequest.d.ts +14 -0
- package/bin/productCatalog/dtos/CreateProductCatalogRequest.js +6 -0
- package/bin/productCatalog/dtos/GetProductCatalogResponse.d.ts +16 -0
- package/bin/productCatalog/dtos/GetProductCatalogResponse.js +62 -0
- package/bin/productCatalog/enums/ProductTaxFeeTypeEnum.d.ts +4 -0
- package/bin/productCatalog/enums/ProductTaxFeeTypeEnum.js +8 -0
- package/bin/productCatalog/enums/ProductTypeEnum.d.ts +12 -0
- package/bin/productCatalog/enums/ProductTypeEnum.js +16 -0
- package/bin/productCatalog/index.d.ts +4 -0
- package/bin/productCatalog/index.js +20 -0
- package/bin/provider/enums/Provider.d.ts +5 -0
- package/bin/provider/enums/Provider.js +9 -0
- package/bin/provider/index.d.ts +1 -0
- package/bin/provider/index.js +17 -0
- package/bin/queue/dtos/QueueMessageBase.d.ts +5 -0
- package/bin/queue/dtos/QueueMessageBase.js +25 -0
- package/bin/servicePayment/dtos/GetCatalogParams.d.ts +6 -0
- package/bin/servicePayment/dtos/GetCatalogParams.js +6 -0
- package/bin/servicePayment/dtos/ServicePaymentRequest.d.ts +8 -0
- package/bin/servicePayment/dtos/ServicePaymentRequest.js +46 -0
- package/bin/servicePayment/index.d.ts +2 -0
- package/bin/servicePayment/index.js +18 -0
- package/bin/sessionActivity/dtos/SessionActivityQueueMessageRequest.d.ts +10 -0
- package/bin/sessionActivity/dtos/SessionActivityQueueMessageRequest.js +6 -0
- package/bin/sessionActivity/enums/SessionActivityActionEnum.d.ts +8 -0
- package/bin/sessionActivity/enums/SessionActivityActionEnum.js +12 -0
- package/bin/sessionActivity/enums/SessionActivityActionOriginEnum.d.ts +5 -0
- package/bin/sessionActivity/enums/SessionActivityActionOriginEnum.js +9 -0
- package/bin/sessionActivity/index.d.ts +3 -0
- package/bin/sessionActivity/index.js +19 -0
- package/bin/stpSpei/dtos/PutStpOrderRequest.d.ts +11 -0
- package/bin/stpSpei/dtos/PutStpOrderRequest.js +6 -0
- package/bin/stpSpei/dtos/SpeiWebhookMessage.d.ts +9 -0
- package/bin/stpSpei/dtos/SpeiWebhookMessage.js +6 -0
- package/bin/stpSpei/enums/WebhookMessageStatusEnum.d.ts +5 -0
- package/bin/stpSpei/enums/WebhookMessageStatusEnum.js +9 -0
- package/bin/stpSpei/index.d.ts +3 -0
- package/bin/stpSpei/index.js +19 -0
- package/bin/transaction/dtos/Credit.d.ts +7 -0
- package/bin/transaction/dtos/Credit.js +41 -0
- package/bin/transaction/dtos/Debit.d.ts +6 -0
- package/bin/transaction/dtos/Debit.js +36 -0
- package/bin/transaction/dtos/Notional.d.ts +6 -0
- package/bin/transaction/dtos/Notional.js +36 -0
- package/bin/transaction/dtos/Product.d.ts +8 -0
- package/bin/transaction/dtos/Product.js +39 -0
- package/bin/transaction/dtos/Total.d.ts +6 -0
- package/bin/transaction/dtos/Total.js +36 -0
- package/bin/transaction/dtos/TransactionCreateRequest.d.ts +28 -0
- package/bin/transaction/dtos/TransactionCreateRequest.js +123 -0
- package/bin/transaction/dtos/TransactionCreateResponse.d.ts +2 -0
- package/bin/transaction/dtos/TransactionCreateResponse.js +6 -0
- package/bin/transaction/dtos/TransactionGetResponse.d.ts +17 -0
- package/bin/transaction/dtos/TransactionGetResponse.js +6 -0
- package/bin/transaction/enums/OperationEnum.d.ts +4 -0
- package/bin/transaction/enums/OperationEnum.js +8 -0
- package/bin/transaction/enums/TransactionSourceEnum.d.ts +5 -0
- package/bin/transaction/enums/TransactionSourceEnum.js +9 -0
- package/bin/transaction/index.d.ts +5 -0
- package/bin/transaction/index.js +23 -0
- package/bin/transactionProcessor/dtos/AmountInfo.d.ts +6 -0
- package/bin/transactionProcessor/dtos/AmountInfo.js +6 -0
- package/bin/transactionProcessor/dtos/AmountInfoItem.d.ts +4 -0
- package/bin/transactionProcessor/dtos/AmountInfoItem.js +6 -0
- package/bin/transactionProcessor/dtos/AuthorizeCreditCardAdjustmentRequest.d.ts +17 -0
- package/bin/transactionProcessor/dtos/AuthorizeCreditCardAdjustmentRequest.js +6 -0
- package/bin/transactionProcessor/dtos/AuthorizeCreditCardPurchaseRequest.d.ts +16 -0
- package/bin/transactionProcessor/dtos/AuthorizeCreditCardPurchaseRequest.js +6 -0
- package/bin/transactionProcessor/dtos/AuthorizeP2pTransactionRequest.d.ts +9 -0
- package/bin/transactionProcessor/dtos/AuthorizeP2pTransactionRequest.js +6 -0
- package/bin/transactionProcessor/dtos/AuthorizePocketTransactionRequest.d.ts +8 -0
- package/bin/transactionProcessor/dtos/AuthorizePocketTransactionRequest.js +6 -0
- package/bin/transactionProcessor/dtos/AuthorizeServicePaymentRequest.d.ts +8 -0
- package/bin/transactionProcessor/dtos/AuthorizeServicePaymentRequest.js +6 -0
- package/bin/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.d.ts +7 -0
- package/bin/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.js +5 -0
- package/bin/transactionProcessor/dtos/CardInfo.d.ts +6 -0
- package/bin/transactionProcessor/dtos/CardInfo.js +6 -0
- package/bin/transactionProcessor/dtos/InstallmentsInfo.d.ts +7 -0
- package/bin/transactionProcessor/dtos/InstallmentsInfo.js +6 -0
- package/bin/transactionProcessor/dtos/MerchantInfo.d.ts +7 -0
- package/bin/transactionProcessor/dtos/MerchantInfo.js +6 -0
- package/bin/transactionProcessor/dtos/SpeiBankTransferStatusUpdate.d.ts +6 -0
- package/bin/transactionProcessor/dtos/SpeiBankTransferStatusUpdate.js +6 -0
- package/bin/transactionProcessor/dtos/TransactionInfo.d.ts +8 -0
- package/bin/transactionProcessor/dtos/TransactionInfo.js +6 -0
- package/bin/transactionProcessor/dtos/TransactionProcessorQueueMessage.d.ts +4 -0
- package/bin/transactionProcessor/dtos/TransactionProcessorQueueMessage.js +6 -0
- package/bin/transactionProcessor/enums/AsyncTxStatusEnum.d.ts +6 -0
- package/bin/transactionProcessor/enums/AsyncTxStatusEnum.js +10 -0
- package/bin/transactionProcessor/enums/TransactionProcessorCodesEnum.d.ts +14 -0
- package/bin/transactionProcessor/enums/TransactionProcessorCodesEnum.js +18 -0
- package/bin/transactionProcessor/index.d.ts +16 -0
- package/bin/transactionProcessor/index.js +32 -0
- package/package.json +1 -1
- package/src/contactInfo/index.ts +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BankAccountTypeEnum } from "../enums/BankAccountTypeEnum";
|
|
2
|
+
import { BankAccountExternalAddress } from "./BankAccountExternalAddress";
|
|
3
|
+
import { AccountEntityStatusEnum } from "../enums/AccountEntityStatusEnum";
|
|
4
|
+
export declare class GetBankAccountResponse {
|
|
5
|
+
id: string;
|
|
6
|
+
businessId: string;
|
|
7
|
+
userId: string;
|
|
8
|
+
name: string;
|
|
9
|
+
accountNumber: string;
|
|
10
|
+
routingNumber: string;
|
|
11
|
+
accountType: BankAccountTypeEnum;
|
|
12
|
+
active: boolean;
|
|
13
|
+
isPrimary: boolean;
|
|
14
|
+
createdDate: string;
|
|
15
|
+
updatedDate: string;
|
|
16
|
+
deletedDate: string;
|
|
17
|
+
updatedBy: string;
|
|
18
|
+
balance: number;
|
|
19
|
+
address?: BankAccountExternalAddress;
|
|
20
|
+
kybStatus?: string;
|
|
21
|
+
statusName?: AccountEntityStatusEnum;
|
|
22
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetBankAccountSensitiveInformationRequest = void 0;
|
|
4
|
+
class GetBankAccountSensitiveInformationRequest {
|
|
5
|
+
}
|
|
6
|
+
exports.GetBankAccountSensitiveInformationRequest = GetBankAccountSensitiveInformationRequest;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetBankAccountSensitiveInformationResponse = void 0;
|
|
4
|
+
class GetBankAccountSensitiveInformationResponse {
|
|
5
|
+
}
|
|
6
|
+
exports.GetBankAccountSensitiveInformationResponse = GetBankAccountSensitiveInformationResponse;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { BankAccountExternalAddress } from "./BankAccountExternalAddress";
|
|
2
|
+
import { UserEntityStatusEnum } from "../enums/UserEntityStatusEnum";
|
|
3
|
+
import { SexDocument, TypeOfDocument } from "../../identity";
|
|
4
|
+
import { Country } from "../../country";
|
|
5
|
+
export declare class GetBankAccountUserResponse {
|
|
6
|
+
id: string;
|
|
7
|
+
typeOfUserId: string;
|
|
8
|
+
dob: string;
|
|
9
|
+
name: string;
|
|
10
|
+
lastName: string;
|
|
11
|
+
phoneNumber: string;
|
|
12
|
+
email: string;
|
|
13
|
+
address?: BankAccountExternalAddress;
|
|
14
|
+
status: UserEntityStatusEnum;
|
|
15
|
+
sex?: SexDocument;
|
|
16
|
+
documentNumber: string;
|
|
17
|
+
typeOfDocumentId?: TypeOfDocument;
|
|
18
|
+
countryId: Country;
|
|
19
|
+
userAccountIds?: string[];
|
|
20
|
+
createdDate?: string;
|
|
21
|
+
updatedDate?: string;
|
|
22
|
+
deletedDate?: string;
|
|
23
|
+
updatedBy?: string;
|
|
24
|
+
accountIds?: number[];
|
|
25
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class GetPocketBalanceResponse {
|
|
2
|
+
id: string;
|
|
3
|
+
accountId: string;
|
|
4
|
+
ownerDirectoryId: string;
|
|
5
|
+
beneficiaryDirectoryId: string;
|
|
6
|
+
currencyId: string;
|
|
7
|
+
currentBalance: number;
|
|
8
|
+
availableBalance: number;
|
|
9
|
+
usableBalance: number;
|
|
10
|
+
lockedBalance: number;
|
|
11
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.GetPocketBalanceResponse = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const regex_1 = require("../../helpers/constans/regex");
|
|
15
|
+
class GetPocketBalanceResponse {
|
|
16
|
+
}
|
|
17
|
+
exports.GetPocketBalanceResponse = GetPocketBalanceResponse;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
21
|
+
message: 'directoryId must be a valid UUID v4',
|
|
22
|
+
}),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], GetPocketBalanceResponse.prototype, "id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
28
|
+
message: 'directoryId must be a valid UUID v4',
|
|
29
|
+
}),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], GetPocketBalanceResponse.prototype, "accountId", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsString)(),
|
|
34
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
35
|
+
message: 'directoryId must be a valid UUID v4',
|
|
36
|
+
}),
|
|
37
|
+
__metadata("design:type", String)
|
|
38
|
+
], GetPocketBalanceResponse.prototype, "ownerDirectoryId", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_validator_1.IsString)(),
|
|
41
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
42
|
+
message: 'directoryId must be a valid UUID v4',
|
|
43
|
+
}),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], GetPocketBalanceResponse.prototype, "beneficiaryDirectoryId", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, class_validator_1.IsString)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], GetPocketBalanceResponse.prototype, "currencyId", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsNumber)(),
|
|
52
|
+
__metadata("design:type", Number)
|
|
53
|
+
], GetPocketBalanceResponse.prototype, "currentBalance", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, class_validator_1.IsNumber)(),
|
|
56
|
+
__metadata("design:type", Number)
|
|
57
|
+
], GetPocketBalanceResponse.prototype, "availableBalance", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_validator_1.IsNumber)(),
|
|
60
|
+
__metadata("design:type", Number)
|
|
61
|
+
], GetPocketBalanceResponse.prototype, "usableBalance", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, class_validator_1.IsNumber)(),
|
|
64
|
+
__metadata("design:type", Number)
|
|
65
|
+
], GetPocketBalanceResponse.prototype, "lockedBalance", void 0);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.PocketBalanceItem = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class PocketBalanceItem {
|
|
15
|
+
}
|
|
16
|
+
exports.PocketBalanceItem = PocketBalanceItem;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], PocketBalanceItem.prototype, "currencyId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], PocketBalanceItem.prototype, "availableBalance", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsNumber)(),
|
|
27
|
+
__metadata("design:type", Number)
|
|
28
|
+
], PocketBalanceItem.prototype, "lockedBalance", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsNumber)(),
|
|
31
|
+
__metadata("design:type", Number)
|
|
32
|
+
], PocketBalanceItem.prototype, "usableBalance", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsNumber)(),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], PocketBalanceItem.prototype, "unsettledBalance", void 0);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PocketBalanceItem } from "./PocketBalanceItem";
|
|
2
|
+
export default class PocketItem {
|
|
3
|
+
id: string;
|
|
4
|
+
ownerDirectoryId: string;
|
|
5
|
+
beneficiaryDirectoryId: string;
|
|
6
|
+
isOwnerPocket: boolean;
|
|
7
|
+
phoneNumber: string;
|
|
8
|
+
name: string;
|
|
9
|
+
lastName: string;
|
|
10
|
+
profilePicture: string;
|
|
11
|
+
pocketBalance: PocketBalanceItem[];
|
|
12
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
const class_validator_1 = require("class-validator");
|
|
13
|
+
const regex_1 = require("../../helpers/constans/regex");
|
|
14
|
+
class PocketItem {
|
|
15
|
+
}
|
|
16
|
+
exports.default = PocketItem;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
20
|
+
message: 'directoryId must be a valid UUID v4',
|
|
21
|
+
}),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], PocketItem.prototype, "id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsString)(),
|
|
26
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
27
|
+
message: 'directoryId must be a valid UUID v4',
|
|
28
|
+
}),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], PocketItem.prototype, "ownerDirectoryId", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_validator_1.Matches)(regex_1.regexUuidV4, {
|
|
34
|
+
message: 'directoryId must be a valid UUID v4',
|
|
35
|
+
}),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], PocketItem.prototype, "beneficiaryDirectoryId", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsBoolean)(),
|
|
40
|
+
__metadata("design:type", Boolean)
|
|
41
|
+
], PocketItem.prototype, "isOwnerPocket", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, class_validator_1.IsString)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], PocketItem.prototype, "phoneNumber", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, class_validator_1.IsString)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], PocketItem.prototype, "name", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsString)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], PocketItem.prototype, "lastName", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, class_validator_1.IsString)(),
|
|
56
|
+
__metadata("design:type", String)
|
|
57
|
+
], PocketItem.prototype, "profilePicture", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_validator_1.ValidateNested)(),
|
|
60
|
+
__metadata("design:type", Array)
|
|
61
|
+
], PocketItem.prototype, "pocketBalance", void 0);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AddressBase } from "../../address/dtos/AddressBase";
|
|
2
|
+
import { CountryId } from "../../country";
|
|
3
|
+
import { SexDocument } from "../../identity";
|
|
4
|
+
import { TypeOfDocument } from "../../identity/enums/TypeOfDocument";
|
|
5
|
+
import { BankAccountUserStatus } from "../enums/BankAccountUserStatusEnum";
|
|
6
|
+
export declare class UpdateBankAccountUserRequest {
|
|
7
|
+
id: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
lastName?: string;
|
|
10
|
+
typeOfDocumentId?: TypeOfDocument;
|
|
11
|
+
documentNumber?: string;
|
|
12
|
+
sex?: SexDocument;
|
|
13
|
+
email?: string;
|
|
14
|
+
phoneNumber?: string;
|
|
15
|
+
status?: BankAccountUserStatus;
|
|
16
|
+
taxNumber?: string;
|
|
17
|
+
taxType?: "RFC";
|
|
18
|
+
address?: AddressBase;
|
|
19
|
+
dob?: string;
|
|
20
|
+
nationality?: CountryId;
|
|
21
|
+
createdDate?: string;
|
|
22
|
+
updatedDate?: string;
|
|
23
|
+
deletedDate?: string;
|
|
24
|
+
updatedBy?: string;
|
|
25
|
+
governmentId?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AccountEntityStatusEnum } from "../enums/AccountEntityStatusEnum";
|
|
2
|
+
import { AccountLevelEnum } from "../enums/AccountLevelEnum";
|
|
3
|
+
export declare class AccountEntityBase {
|
|
4
|
+
id: string;
|
|
5
|
+
directoryId: string;
|
|
6
|
+
typeOfDirectoryId: string;
|
|
7
|
+
peopleId: string;
|
|
8
|
+
currencyId: string;
|
|
9
|
+
status: AccountEntityStatusEnum;
|
|
10
|
+
tenantId: string;
|
|
11
|
+
accountLevel: AccountLevelEnum;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AccountEntityStatusEnum = void 0;
|
|
4
|
+
var AccountEntityStatusEnum;
|
|
5
|
+
(function (AccountEntityStatusEnum) {
|
|
6
|
+
AccountEntityStatusEnum["ACTIVE"] = "ACTIVE";
|
|
7
|
+
AccountEntityStatusEnum["INACTIVE"] = "INACTIVE";
|
|
8
|
+
AccountEntityStatusEnum["PAUSED"] = "PAUSED";
|
|
9
|
+
})(AccountEntityStatusEnum || (exports.AccountEntityStatusEnum = AccountEntityStatusEnum = {}));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AccountLevelEnum = void 0;
|
|
4
|
+
var AccountLevelEnum;
|
|
5
|
+
(function (AccountLevelEnum) {
|
|
6
|
+
AccountLevelEnum["LEVEL_1"] = "1";
|
|
7
|
+
AccountLevelEnum["LEVEL_2"] = "2";
|
|
8
|
+
AccountLevelEnum["LEVEL_3"] = "3";
|
|
9
|
+
AccountLevelEnum["LEVEL_4"] = "4";
|
|
10
|
+
})(AccountLevelEnum || (exports.AccountLevelEnum = AccountLevelEnum = {}));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankAccountP2pTransferType = void 0;
|
|
4
|
+
var BankAccountP2pTransferType;
|
|
5
|
+
(function (BankAccountP2pTransferType) {
|
|
6
|
+
BankAccountP2pTransferType["USER_TO_USER"] = "user_to_user";
|
|
7
|
+
BankAccountP2pTransferType["USER_TO_BUSINESS"] = "user_to_business";
|
|
8
|
+
BankAccountP2pTransferType["BUSINESS_TO_USER"] = "business_to_user";
|
|
9
|
+
BankAccountP2pTransferType["BUSINESS_TO_BUSINESS"] = "business_to_business";
|
|
10
|
+
})(BankAccountP2pTransferType || (exports.BankAccountP2pTransferType = BankAccountP2pTransferType = {}));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankAccountTypeEnum = void 0;
|
|
4
|
+
var BankAccountTypeEnum;
|
|
5
|
+
(function (BankAccountTypeEnum) {
|
|
6
|
+
BankAccountTypeEnum["CARD_ISSUING"] = "Card Issuing";
|
|
7
|
+
})(BankAccountTypeEnum || (exports.BankAccountTypeEnum = BankAccountTypeEnum = {}));
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankAccountUserStatus = void 0;
|
|
4
|
+
var BankAccountUserStatus;
|
|
5
|
+
(function (BankAccountUserStatus) {
|
|
6
|
+
BankAccountUserStatus["ACTIVE"] = "ACTIVE";
|
|
7
|
+
BankAccountUserStatus["BLOCKED"] = "BLOCKED";
|
|
8
|
+
BankAccountUserStatus["INACTIVE"] = "INACTIVE";
|
|
9
|
+
})(BankAccountUserStatus || (exports.BankAccountUserStatus = BankAccountUserStatus = {}));
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserEntityStatusEnum = void 0;
|
|
4
|
+
var UserEntityStatusEnum;
|
|
5
|
+
(function (UserEntityStatusEnum) {
|
|
6
|
+
UserEntityStatusEnum["ACTIVE"] = "ACTIVE";
|
|
7
|
+
UserEntityStatusEnum["BLOCKED"] = "BLOCKED";
|
|
8
|
+
UserEntityStatusEnum["INACTIVE"] = "INACTIVE";
|
|
9
|
+
})(UserEntityStatusEnum || (exports.UserEntityStatusEnum = UserEntityStatusEnum = {}));
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export * from './dtos/AccountCreateRequest';
|
|
2
|
+
export * from './dtos/AccountCreateResponse';
|
|
3
|
+
export * from './dtos/BankAccountExternalAddress';
|
|
4
|
+
export * from './dtos/CreateBankAccountRequest';
|
|
5
|
+
export * from './dtos/CreateBankAccountResponse';
|
|
6
|
+
export * from './dtos/CreateBankAccountUserRequest';
|
|
7
|
+
export * from './dtos/CreateBankAccountUserResponse';
|
|
8
|
+
export * from './dtos/GetBankAccountRequest';
|
|
9
|
+
export * from './dtos/GetBankAccountResponse';
|
|
10
|
+
export * from './dtos/GetBankAccountUserRequest';
|
|
11
|
+
export * from './dtos/GetBankAccountUserResponse';
|
|
12
|
+
export * from './dtos/UpdateBankAccountUserRequest';
|
|
13
|
+
export * from './dtos/UpdateBankAccountUserResponse';
|
|
14
|
+
export * from './dtos/GetBankAccountSensitiveInformationRequest';
|
|
15
|
+
export * from './dtos/GetBankAccountSensitiveInformationResponse';
|
|
16
|
+
export * from './dtos/AccountInfo';
|
|
17
|
+
export * from './dtos/ExchangeInfo';
|
|
18
|
+
export * from './dtos/GetAccountBalanceResponse';
|
|
19
|
+
export * from './dtos/GetPocketBalanceResponse';
|
|
20
|
+
export * from './dtos/GetPocketResponse';
|
|
21
|
+
export * from './dtos/PocketItem';
|
|
22
|
+
export * from './dtos/PocketBalanceItem';
|
|
23
|
+
export * from './dtos/GetAccountResponse';
|
|
24
|
+
export * from './dtos/AccountUpdateBalanceRequest';
|
|
25
|
+
export * from './dtos/UpdateBalanceOperation';
|
|
26
|
+
export * from './dtos/BankAccountP2pTransferRequest';
|
|
27
|
+
export * from './dtos/ExecutePocketOperationRequest';
|
|
28
|
+
export * from './dtos/ExecuteP2pOperationRequest';
|
|
29
|
+
export * from './entities/AccountEntityBase';
|
|
30
|
+
export * from './enums/AccountEntityStatusEnum';
|
|
31
|
+
export * from './enums/BankAccountTypeEnum';
|
|
32
|
+
export * from './enums/BankAccountUserStatusEnum';
|
|
33
|
+
export * from './enums/UserEntityStatusEnum';
|
|
34
|
+
export * from './enums/AccountLevelEnum';
|
|
35
|
+
export * from './enums/BankAccountP2pTransferType';
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
//dtos
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
+
};
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
__exportStar(require("./dtos/AccountCreateRequest"), exports);
|
|
19
|
+
__exportStar(require("./dtos/AccountCreateResponse"), exports);
|
|
20
|
+
__exportStar(require("./dtos/BankAccountExternalAddress"), exports);
|
|
21
|
+
__exportStar(require("./dtos/CreateBankAccountRequest"), exports);
|
|
22
|
+
__exportStar(require("./dtos/CreateBankAccountResponse"), exports);
|
|
23
|
+
__exportStar(require("./dtos/CreateBankAccountUserRequest"), exports);
|
|
24
|
+
__exportStar(require("./dtos/CreateBankAccountUserResponse"), exports);
|
|
25
|
+
__exportStar(require("./dtos/GetBankAccountRequest"), exports);
|
|
26
|
+
__exportStar(require("./dtos/GetBankAccountResponse"), exports);
|
|
27
|
+
__exportStar(require("./dtos/GetBankAccountUserRequest"), exports);
|
|
28
|
+
__exportStar(require("./dtos/GetBankAccountUserResponse"), exports);
|
|
29
|
+
__exportStar(require("./dtos/UpdateBankAccountUserRequest"), exports);
|
|
30
|
+
__exportStar(require("./dtos/UpdateBankAccountUserResponse"), exports);
|
|
31
|
+
__exportStar(require("./dtos/GetBankAccountSensitiveInformationRequest"), exports);
|
|
32
|
+
__exportStar(require("./dtos/GetBankAccountSensitiveInformationResponse"), exports);
|
|
33
|
+
__exportStar(require("./dtos/AccountInfo"), exports);
|
|
34
|
+
__exportStar(require("./dtos/ExchangeInfo"), exports);
|
|
35
|
+
__exportStar(require("./dtos/GetAccountBalanceResponse"), exports);
|
|
36
|
+
__exportStar(require("./dtos/GetPocketBalanceResponse"), exports);
|
|
37
|
+
__exportStar(require("./dtos/GetPocketResponse"), exports);
|
|
38
|
+
__exportStar(require("./dtos/PocketItem"), exports);
|
|
39
|
+
__exportStar(require("./dtos/PocketBalanceItem"), exports);
|
|
40
|
+
__exportStar(require("./dtos/GetAccountResponse"), exports);
|
|
41
|
+
__exportStar(require("./dtos/AccountUpdateBalanceRequest"), exports);
|
|
42
|
+
__exportStar(require("./dtos/UpdateBalanceOperation"), exports);
|
|
43
|
+
__exportStar(require("./dtos/BankAccountP2pTransferRequest"), exports);
|
|
44
|
+
__exportStar(require("./dtos/ExecutePocketOperationRequest"), exports);
|
|
45
|
+
__exportStar(require("./dtos/ExecuteP2pOperationRequest"), exports);
|
|
46
|
+
//Entities
|
|
47
|
+
__exportStar(require("./entities/AccountEntityBase"), exports);
|
|
48
|
+
//Enums
|
|
49
|
+
__exportStar(require("./enums/AccountEntityStatusEnum"), exports);
|
|
50
|
+
__exportStar(require("./enums/BankAccountTypeEnum"), exports);
|
|
51
|
+
__exportStar(require("./enums/BankAccountUserStatusEnum"), exports);
|
|
52
|
+
__exportStar(require("./enums/UserEntityStatusEnum"), exports);
|
|
53
|
+
__exportStar(require("./enums/AccountLevelEnum"), exports);
|
|
54
|
+
__exportStar(require("./enums/BankAccountP2pTransferType"), exports);
|