@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.
- package/.idea/aws.xml +10 -10
- package/.idea/fiado-type-kit.iml +11 -11
- package/.idea/modules.xml +7 -7
- package/.idea/vcs.xml +5 -5
- package/README.md +70 -70
- package/bin/account/enums/BankAccountTypeEnum.d.ts +3 -1
- package/bin/account/enums/BankAccountTypeEnum.js +3 -0
- package/bin/contactInfo/dtos/GetAllContactInfoResponse.d.ts +13 -0
- package/bin/contactInfo/dtos/GetAllContactInfoResponse.js +6 -0
- package/bin/index.js +7 -17
- package/package.json +23 -23
- package/src/account/dtos/AccountCreateRequest.ts +100 -100
- package/src/account/dtos/AccountCreateResponse.ts +7 -7
- package/src/account/dtos/AccountInfo.ts +43 -43
- package/src/account/dtos/AccountUpdateBalanceRequest.ts +6 -6
- package/src/account/dtos/AccountUpdateRequest.ts +40 -40
- package/src/account/dtos/BankAccountExternalAddress.ts +17 -17
- package/src/account/dtos/BankAccountP2pTransferRequest.ts +7 -7
- package/src/account/dtos/CreateBankAccountRequest.ts +11 -11
- package/src/account/dtos/CreateBankAccountResponse.ts +8 -8
- package/src/account/dtos/CreateBankAccountUserRequest.ts +20 -20
- package/src/account/dtos/CreateBankAccountUserResponse.ts +14 -14
- package/src/account/dtos/ExchangeInfo.ts +8 -8
- package/src/account/dtos/ExecuteP2pOperationRequest.ts +11 -11
- package/src/account/dtos/ExecutePocketOperationRequest.ts +5 -5
- package/src/account/dtos/GetAccountBalanceResponse.ts +46 -46
- package/src/account/dtos/GetAccountResponse.ts +62 -62
- package/src/account/dtos/GetAccountResponseList.ts +5 -5
- package/src/account/dtos/GetBankAccountRequest.ts +3 -3
- package/src/account/dtos/GetBankAccountResponse.ts +22 -22
- package/src/account/dtos/GetBankAccountSensitiveInformationRequest.ts +5 -5
- package/src/account/dtos/GetBankAccountSensitiveInformationResponse.ts +8 -8
- package/src/account/dtos/GetBankAccountUserRequest.ts +2 -2
- package/src/account/dtos/GetBankAccountUserResponse.ts +25 -25
- package/src/account/dtos/GetPocketBalanceResponse.ts +46 -46
- package/src/account/dtos/GetPocketResponse.ts +8 -8
- package/src/account/dtos/PocketBalanceItem.ts +17 -17
- package/src/account/dtos/PocketItem.ts +43 -43
- package/src/account/dtos/SPEITransferCreateRequest.ts +42 -42
- package/src/account/dtos/SPEITransferResponse.ts +22 -22
- package/src/account/dtos/SPEITransferUpdateRequest.ts +43 -43
- package/src/account/dtos/UpdateBalanceOperation.ts +10 -10
- package/src/account/dtos/UpdateBankAccountUserRequest.ts +26 -26
- package/src/account/dtos/UpdateBankAccountUserResponse.ts +3 -3
- package/src/account/entities/AccountEntityBase.ts +12 -12
- package/src/account/enums/AccountEntityStatusEnum.ts +6 -6
- package/src/account/enums/AccountLevelEnum.ts +5 -5
- package/src/account/enums/BankAccountP2pTransferType.ts +5 -5
- package/src/account/enums/BankAccountTypeEnum.ts +5 -2
- package/src/account/enums/BankAccountUserStatusEnum.ts +4 -4
- package/src/account/enums/CreateBankAccountUserStatusEnum.ts +5 -5
- package/src/account/enums/SpeiTransferStatusEnum.ts +10 -10
- package/src/account/enums/UserEntityStatusEnum.ts +4 -4
- package/src/account/index.ts +49 -49
- package/src/accountIssuanceBusiness/enums/Status.ts +12 -12
- package/src/accountIssuanceBusiness/index.ts +2 -2
- package/src/activity/dtos/ActivityMessageRequest.ts +30 -30
- package/src/activity/dtos/ActivityMessageResponse.ts +24 -24
- package/src/activity/dtos/ActivityQueueMessage.ts +9 -9
- package/src/activity/index.ts +8 -8
- package/src/address/dtos/AddressBase.ts +130 -130
- package/src/address/dtos/AddressCreateRequest.ts +6 -6
- package/src/address/dtos/AddressResponse.ts +41 -41
- package/src/address/dtos/AddressShippingCardRequest.ts +12 -12
- package/src/address/dtos/AddressShippingCardResponse.ts +11 -11
- package/src/address/dtos/Geometry.ts +4 -4
- package/src/address/dtos/OfficeDetails.ts +30 -30
- package/src/address/dtos/OperationSchedule.ts +8 -8
- package/src/address/dtos/Place.ts +83 -83
- package/src/address/dtos/Shipping.ts +36 -36
- package/src/address/dtos/Timezone.ts +5 -5
- package/src/address/enums/AddressProvider.ts +10 -10
- package/src/address/enums/AddressStatus.ts +9 -9
- package/src/address/index.ts +16 -16
- package/src/apiResponse/dtos/FiadoApiResponse.ts +7 -7
- package/src/app/enums/App.ts +10 -10
- package/src/app/index.ts +3 -3
- package/src/appSelectionData/dtos/AppSelectionDataCreateRequest.ts +27 -27
- package/src/appSelectionData/index.ts +4 -4
- package/src/auth/dtos/ChallengeBackofficeRequest.ts +22 -22
- package/src/auth/dtos/ResetPasswordBackofficeRequest.ts +9 -9
- package/src/auth/dtos/SignInBackofficeRequest.ts +13 -13
- package/src/auth/dtos/SignInBackofficeResponse.ts +6 -6
- package/src/auth/dtos/SignUpBackofficeRequest.ts +18 -18
- package/src/auth/index.ts +7 -7
- package/src/authentication/dtos/ChangePasswordRequest.ts +16 -16
- package/src/authentication/dtos/RefreshTokenRequest.ts +12 -12
- package/src/authentication/dtos/RespondToAuthChallengeRequest.ts +24 -24
- package/src/authentication/dtos/SignInRequest.ts +30 -30
- package/src/authentication/dtos/SignUpAdditionalRequest.ts +32 -32
- package/src/authentication/dtos/SignUpAdditionalResponse.ts +5 -5
- package/src/authentication/dtos/SignUpRequest.ts +21 -21
- package/src/authentication/dtos/UserConfirmRequest.ts +13 -13
- package/src/authentication/index.ts +14 -14
- package/src/bankAccount/dtos/ExternalAccountCurrency.ts +3 -3
- package/src/bankAccount/dtos/ExternalAccountType.ts +3 -3
- package/src/bankAccount/dtos/GetExternalBankAccountRequest.ts +11 -11
- package/src/bankAccount/dtos/GetExternalBankAccountResponse.ts +15 -15
- package/src/bankAccount/dtos/GetExternalBankResponse.ts +13 -13
- package/src/bankAccount/index.ts +4 -4
- package/src/bbvaRst/dtos/CreateRSTTransactionRequest.ts +14 -14
- package/src/bbvaRst/dtos/CreateRSTTransactionResponse.ts +9 -9
- package/src/bbvaRst/enums/RSTStatusEnum.ts +4 -4
- package/src/bbvaRst/index.ts +2 -2
- package/src/beneficiary/dtos/AccountBeneficiaryCreateRequest.ts +56 -56
- package/src/beneficiary/dtos/AccountBeneficiaryResponse.ts +26 -26
- package/src/beneficiary/dtos/AccountBeneficiaryUpdateRequest.ts +42 -42
- package/src/beneficiary/enums/AccountType.ts +6 -6
- package/src/beneficiary/index.ts +7 -7
- package/src/blacklist/dtos/CreateBlockedPersonRequest.ts +32 -32
- package/src/blacklist/dtos/GetBlockedPersonsResponse.ts +84 -84
- package/src/blacklist/dtos/UpdateBlockedPersonRequest.ts +42 -42
- package/src/blacklist/enums/IdentificationParameter.ts +5 -5
- package/src/blacklist/index.ts +7 -7
- package/src/card/dtos/AccountCancelGetResponse.ts +25 -25
- package/src/card/dtos/AccountIssuanceStepConfig.ts +13 -13
- package/src/card/dtos/CardActivateRequest.ts +12 -12
- package/src/card/dtos/CardAdditionalRequest.ts +25 -25
- package/src/card/dtos/CardAdditionalResponse.ts +14 -14
- package/src/card/dtos/CardApplicationRequest.ts +35 -35
- package/src/card/dtos/CardBalanceResponse.ts +10 -10
- package/src/card/dtos/CardCreateAdditionalRequest.ts +82 -82
- package/src/card/dtos/CardResponse.ts +34 -34
- package/src/card/dtos/CardSensitiveInformationResponse.ts +18 -18
- package/src/card/dtos/CardShipmentQueueMessage.ts +7 -7
- package/src/card/dtos/CardShipmentUpdateRequest.ts +19 -19
- package/src/card/dtos/CardSummaryResponse.ts +10 -10
- package/src/card/dtos/CardUpdateIssuanceRequest.ts +20 -20
- package/src/card/dtos/CardUpdateRequest.ts +11 -11
- package/src/card/dtos/Internal/ActivateBankAccountCardRequest.ts +11 -11
- package/src/card/dtos/Internal/ActivateBankAccountCardResponse.ts +4 -4
- package/src/card/dtos/Internal/AssignCardRequest.ts +8 -8
- package/src/card/dtos/Internal/BatchBeneficiary.ts +6 -6
- package/src/card/dtos/Internal/BatchCardAttributes.ts +9 -9
- package/src/card/dtos/Internal/BatchCardInitialLoad.ts +3 -3
- package/src/card/dtos/Internal/BatchPointOfContact.ts +4 -4
- package/src/card/dtos/Internal/BatchShippingAddress.ts +7 -7
- package/src/card/dtos/Internal/CardBatchRequest.ts +13 -13
- package/src/card/dtos/Internal/CardBatchResponse.ts +19 -19
- package/src/card/dtos/Internal/CardStatementListResponse.ts +6 -6
- package/src/card/dtos/Internal/CreateBankAccountCardRequest.ts +16 -16
- package/src/card/dtos/Internal/CreateBankAccountCardResponse.ts +8 -8
- package/src/card/dtos/Internal/CreateBankAccountCardShippingRequest.ts +14 -14
- package/src/card/dtos/Internal/CreateBankAccountCardShippingResponse.ts +12 -12
- package/src/card/dtos/Internal/GetBankAccountCardBalanceResponse.ts +12 -12
- package/src/card/dtos/Internal/GetBankAccountCardResponse.ts +34 -34
- package/src/card/dtos/Internal/GetBankAccountShippingRequest.ts +5 -5
- package/src/card/dtos/Internal/GetBankAccountShippingResponse.ts +19 -19
- package/src/card/dtos/Internal/StatementDocumentResponse.ts +2 -2
- package/src/card/dtos/Internal/UpdateBankAccountCardRequest.ts +22 -22
- package/src/card/dtos/Internal/UpdateBankAccountCardResponse.ts +7 -7
- package/src/card/enums/AccountCancellationStatus.ts +7 -7
- package/src/card/enums/Brand.ts +7 -7
- package/src/card/enums/CardIssuanceStatus.ts +5 -5
- package/src/card/enums/CardIssuing.ts +6 -6
- package/src/card/enums/CardType.ts +4 -4
- package/src/card/enums/CardUpdateKey.ts +4 -4
- package/src/card/enums/CreditOrDebit.ts +5 -5
- package/src/card/enums/DeliveryChannel.ts +7 -7
- package/src/card/enums/ExternalShippingStatus.ts +14 -14
- package/src/card/enums/ExternalShippingStatusDetails.ts +53 -53
- package/src/card/enums/IssuanceType.ts +5 -5
- package/src/card/enums/NominatedOrInnominated.ts +8 -8
- package/src/card/enums/OwnershipType.ts +3 -3
- package/src/card/enums/Program.ts +6 -6
- package/src/card/enums/ShippingStatus.ts +8 -8
- package/src/card/enums/Status.ts +6 -6
- package/src/card/enums/UpdateKey.ts +5 -5
- package/src/card/enums/VirtualOrPhysical.ts +6 -6
- package/src/card/enums/issuance/IssuanceFlow.ts +8 -8
- package/src/card/enums/issuance/KycStatus.ts +13 -13
- package/src/card/enums/issuance/UserStatus.ts +7 -7
- package/src/card/index.ts +68 -68
- package/src/card/validations/CardUpdateKeyConstraint.ts +53 -53
- package/src/card/validations/IsPhoneNumberConstraint.ts +29 -29
- package/src/centralPayments/dtos/CentralPaymentsDocumentImages.ts +6 -6
- package/src/centralPayments/dtos/CentralPaymentsDocumentUploadRequest.ts +6 -6
- package/src/centralPayments/dtos/HealthcheckResponse.ts +8 -8
- package/src/centralPayments/dtos/OOWAnswer.ts +3 -3
- package/src/centralPayments/dtos/OOWQuestionsResponse.ts +6 -6
- package/src/centralPayments/dtos/SubmitOOWQuestionAnswersRequest.ts +3 -3
- package/src/centralPayments/enums/ServiceStatusEnum.ts +4 -4
- package/src/centralPayments/index.ts +7 -7
- package/src/cognitoConnector/dtos/ChangePasswordRequest.ts +20 -20
- package/src/cognitoConnector/dtos/GetUserRequest.ts +12 -12
- package/src/cognitoConnector/dtos/GetUserResponse.ts +9 -9
- package/src/cognitoConnector/dtos/RefreshTokenRequest.ts +14 -14
- package/src/cognitoConnector/dtos/RefreshTokenResponse.ts +6 -6
- package/src/cognitoConnector/dtos/RespondToAuthChallengeRequest.ts +25 -25
- package/src/cognitoConnector/dtos/SetPasswordRequest.ts +19 -19
- package/src/cognitoConnector/dtos/SignInRequest.ts +20 -20
- package/src/cognitoConnector/dtos/SignInResponse.ts +11 -11
- package/src/cognitoConnector/dtos/SignUpConfirmRequest.ts +17 -17
- package/src/cognitoConnector/dtos/SignUpRequest.ts +22 -22
- package/src/cognitoConnector/dtos/SignUpResponse.ts +8 -8
- package/src/cognitoConnector/enums/SyncStatus.ts +6 -6
- package/src/cognitoConnector/index.ts +24 -24
- package/src/company/enums/Company.ts +7 -7
- package/src/company/index.ts +6 -6
- package/src/contactInfo/dtos/ContactInfoBackOfficeResponse.ts +9 -9
- package/src/contactInfo/dtos/ContactInfoCreateBackOfficeRequest.ts +10 -10
- package/src/contactInfo/dtos/ContactInfoCreateRequest.ts +2 -2
- package/src/contactInfo/dtos/ContactInfoRequest.ts +29 -29
- package/src/contactInfo/dtos/ContactInfoResponse.ts +30 -30
- package/src/contactInfo/dtos/ContactInfoUpdateBackOfficeRequest.ts +15 -15
- package/src/contactInfo/dtos/ContactInfoUpdateRequest.ts +4 -4
- package/src/contactInfo/enums/TypeOfContactIdEnum.ts +3 -3
- package/src/contactInfo/index.ts +7 -7
- package/src/contract/dtos/ContractCreateRequest.ts +29 -29
- package/src/contract/dtos/ContractCreateResponse.ts +2 -2
- package/src/contract/index.ts +4 -4
- package/src/country/dtos/CreateCountryRequest.ts +65 -65
- package/src/country/dtos/UpdateCountryRequest.ts +65 -65
- package/src/country/enums/CountriesISO3.ts +220 -220
- package/src/country/enums/Country.ts +6 -6
- package/src/country/enums/CountryISO2ToISO3.ts +69 -69
- package/src/country/enums/CountryISO3ToISO2.ts +61 -61
- package/src/country/enums/CountryId.ts +6 -6
- package/src/country/index.ts +13 -13
- package/src/country/utilities/CountryCodeConverter.ts +13 -13
- package/src/creditContract/dtos/CreditContractCreateRequest.ts +53 -53
- package/src/creditContract/enums/InstrumentEnum.ts +5 -5
- package/src/creditContract/index.ts +5 -5
- package/src/currency/dtos/CurrencyResponse.ts +8 -8
- package/src/currency/index.ts +2 -2
- package/src/device/dtos/RegisterDeviceRequest.ts +20 -20
- package/src/device/dtos/ReplaceDeviceRequest.ts +23 -23
- package/src/device/enums/DeviceStatusEnum.ts +4 -4
- package/src/device/enums/DeviceTypeEnum.ts +4 -4
- package/src/device/index.ts +7 -7
- package/src/directory/dtos/DirectoryBackoffice.ts +16 -16
- package/src/directory/dtos/DirectoryBackofficeCreateRequest.ts +22 -22
- package/src/directory/dtos/DirectoryBackofficeResponse.ts +17 -17
- package/src/directory/dtos/DirectoryBackofficeUpdateRequest.ts +34 -34
- package/src/directory/dtos/DirectoryResponse.ts +19 -19
- package/src/directory/dtos/External.ts +6 -6
- package/src/directory/enums/DirectoryBackofficeStatusEnum.ts +4 -4
- package/src/directory/enums/Profile.ts +6 -6
- package/src/directory/enums/Scope.ts +7 -7
- package/src/directory/enums/Status.ts +9 -9
- package/src/directory/enums/TypeOfDirectoryId.ts +6 -6
- package/src/directory/index.ts +13 -13
- package/src/eventBridge/dto/EventBridgeMessageRequest.ts +4 -4
- package/src/eventBridge/index.ts +1 -1
- package/src/exchangeRate/dtos/ExchangeRateCreateRequest.ts +50 -50
- package/src/exchangeRate/dtos/ExchangeRateCreateResponse.ts +4 -4
- package/src/exchangeRate/dtos/ExchangeRateResponse.ts +19 -19
- package/src/exchangeRate/dtos/GetExchangeRatesRequest.ts +3 -3
- package/src/exchangeRate/enums/ExchangeRateStatus.ts +5 -5
- package/src/exchangeRate/index.ts +9 -9
- package/src/fraudPreventionEngine/dtos/CreateAccountLevelRequest.ts +9 -9
- package/src/fraudPreventionEngine/dtos/GetAccountLevelParams.ts +5 -5
- package/src/fraudPreventionEngine/dtos/GetAccountLevelResponse.ts +7 -7
- package/src/fraudPreventionEngine/enums/AccountLevelTenantEnum.ts +5 -5
- package/src/fraudPreventionEngine/index.ts +5 -5
- package/src/genericMessage/dto/GenericMessageRequest.ts +17 -17
- package/src/genericMessage/enums/GenericMessageSourceEnum.ts +3 -3
- package/src/genericMessage/index.ts +1 -1
- package/src/group/dtos/GroupAddDirectoryRequest.ts +27 -27
- package/src/group/dtos/GroupCreateRequest.ts +54 -54
- package/src/group/dtos/GroupDirectoryRelationsResponse.ts +20 -20
- package/src/group/dtos/GroupDirectoryRelationsUpdateRequest.ts +10 -10
- package/src/group/dtos/GroupResponse.ts +17 -17
- package/src/group/dtos/GroupUpdateRequest.ts +31 -31
- package/src/group/enums/GroupAction.ts +8 -8
- package/src/group/enums/GroupStatus.ts +6 -6
- package/src/group/enums/RelationStatus.ts +8 -8
- package/src/group/enums/RelationType.ts +9 -9
- package/src/group/index.ts +18 -18
- package/src/header/TokenPayload.ts +18 -18
- package/src/header/index.ts +3 -3
- package/src/helpdesk/dtos/HelpdeskCreateTicketRequest.ts +30 -30
- package/src/helpdesk/dtos/HelpdeskCreateUserRequest.ts +39 -39
- package/src/helpdesk/index.ts +1 -1
- package/src/helpers/ValidationUtils.ts +32 -32
- package/src/helpers/constans/regex.ts +12 -12
- package/src/identity/dtos/IdentificationDocument.ts +22 -22
- package/src/identity/dtos/PeopleCreateRequest.ts +28 -28
- package/src/identity/dtos/PeopleResponse.ts +105 -105
- package/src/identity/dtos/PeopleUpdateRequest.ts +96 -96
- package/src/identity/dtos/TypeOfDocument.ts +11 -11
- package/src/identity/dtos/UploadDocumentFile.ts +6 -6
- package/src/identity/dtos/UploadDocumentRequest.ts +9 -9
- package/src/identity/enums/AccountRequirementStatusEnum.ts +4 -4
- package/src/identity/enums/AuthorizationNeededMXNStatus.ts +11 -11
- package/src/identity/enums/CPStatusEnum.ts +6 -6
- package/src/identity/enums/DocumentSideEnum.ts +3 -3
- package/src/identity/enums/IdentificationDocumentStatus.ts +7 -7
- package/src/identity/enums/InfoSelfVerifiedStatus.ts +9 -9
- package/src/identity/enums/SexDocument.ts +6 -6
- package/src/identity/enums/TypeOfDocument.ts +5 -5
- package/src/identity/index.ts +19 -19
- package/src/index.ts +50 -50
- package/src/issuanceBusiness/dtos/BaseIssuanceRequirement.ts +195 -195
- package/src/issuanceBusiness/dtos/IssuanceRequirementCreateRequest.ts +13 -13
- package/src/issuanceBusiness/dtos/IssuanceRequirementResponse.ts +13 -13
- package/src/issuanceBusiness/dtos/IssuanceRequirementUpdateRequest.ts +5 -5
- package/src/issuanceBusiness/enums/IssuanceStatus.ts +7 -7
- package/src/issuanceBusiness/index.ts +8 -8
- package/src/legal-documents-business/dtos/DirectoryAcceptanceRequest.ts +6 -6
- package/src/legal-documents-business/dtos/LegalDocumentCreateRequest.ts +25 -25
- package/src/legal-documents-business/dtos/LegalDocumentResponse.ts +11 -11
- package/src/legal-documents-business/dtos/UpdateLegalDocumentRequest.ts +34 -34
- package/src/legal-documents-business/index.ts +6 -6
- package/src/notificationMessages/dtos/NotificationQueueMessageRequest.ts +7 -7
- package/src/notificationMessages/dtos/QueueMessageDestination.ts +6 -6
- package/src/notificationMessages/dtos/QueueMessageVariableValues.ts +3 -3
- package/src/notificationMessages/enums/NotificationId.ts +13 -13
- package/src/notificationMessages/index.ts +5 -5
- package/src/observations/dtos/ObservationCreateRequest.ts +19 -19
- package/src/observations/index.ts +2 -2
- package/src/p2pContact/dtos/CreateP2pContactRequest.ts +8 -8
- package/src/productCatalog/dtos/CreateProductCatalogRequest.ts +14 -14
- package/src/productCatalog/dtos/GetProductCatalogResponse.ts +38 -38
- package/src/productCatalog/enums/ProductSubtypeEnum.ts +55 -55
- package/src/productCatalog/enums/ProductTaxFeeTypeEnum.ts +3 -3
- package/src/productCatalog/enums/ProductTypeEnum.ts +8 -8
- package/src/productCatalog/index.ts +5 -5
- package/src/provider/enums/Provider.ts +7 -7
- package/src/provider/enums/ProviderCode.ts +5 -5
- package/src/provider/index.ts +2 -2
- package/src/queue/dtos/QueueMessageBase.ts +13 -13
- package/src/riskProfile/dtos/AlarmCategory.ts +2 -2
- package/src/riskProfile/dtos/AnswerQuestionnaireQuestionRequest.ts +5 -5
- package/src/riskProfile/dtos/CreateBackofficeAlarm.ts +14 -14
- package/src/riskProfile/dtos/CreatePrivateAlarm.ts +38 -38
- package/src/riskProfile/dtos/CreateRiskProfileRequest.ts +45 -45
- package/src/riskProfile/dtos/GetUserQuestionnaireResponse.ts +12 -12
- package/src/riskProfile/dtos/TransactionAlarmQueueMessage.ts +48 -48
- package/src/riskProfile/dtos/TransactionAlertResponse.ts +50 -50
- package/src/riskProfile/dtos/UpdateAlarmProfileRequest.ts +9 -9
- package/src/riskProfile/dtos/UpdateFactorInfo.ts +5 -5
- package/src/riskProfile/dtos/UpdateRiskProfileRequest.ts +5 -5
- package/src/riskProfile/dtos/UpdateTransactionAlertRequest.ts +42 -42
- package/src/riskProfile/dtos/UserQuestionnaireQuestion.ts +8 -8
- package/src/riskProfile/enums/AlarmCategory.ts +11 -11
- package/src/riskProfile/enums/AlarmName.ts +21 -21
- package/src/riskProfile/enums/AlarmOperationType.ts +10 -10
- package/src/riskProfile/enums/AlarmPriority.ts +7 -7
- package/src/riskProfile/enums/AlarmType.ts +7 -7
- package/src/riskProfile/enums/PepLevelEnum.ts +6 -6
- package/src/riskProfile/enums/RiskFactorCategoryEnum.ts +14 -14
- package/src/riskProfile/enums/UserQuestionnaireQuestionAnswerEnum.ts +3 -3
- package/src/riskProfile/enums/UserQuestionnaireQuestionStatusEnum.ts +3 -3
- package/src/riskProfile/enums/UserQuestionnaireStatusEnum.ts +3 -3
- package/src/riskProfile/index.ts +24 -24
- package/src/role/dtos/PermissionCreateRequest.ts +32 -32
- package/src/role/dtos/PermissionResponse.ts +13 -13
- package/src/role/dtos/PermissionUpdateRequest.ts +40 -40
- package/src/role/dtos/RoleAssignRequest.ts +14 -14
- package/src/role/dtos/RoleCreateRequest.ts +18 -18
- package/src/role/dtos/RoleResponse.ts +9 -9
- package/src/role/dtos/RoleUpdateRequest.ts +22 -22
- package/src/role/dtos/UserRoleResponse.ts +9 -9
- package/src/role/index.ts +9 -9
- package/src/servicePayment/dtos/GetCatalogParams.ts +5 -5
- package/src/servicePayment/dtos/ServicePaymentRequest.ts +33 -33
- package/src/servicePayment/index.ts +1 -1
- package/src/services/dtos/CreateServiceRequest.ts +50 -50
- package/src/services/dtos/GetServiceListAppResponse.ts +5 -5
- package/src/services/dtos/GetServiceListResponse.ts +4 -4
- package/src/services/dtos/GetServiceMembershipListAppResponse.ts +4 -4
- package/src/services/dtos/GetServiceMembershipListResponse.ts +3 -3
- package/src/services/dtos/RegisterServiceMembershipRequest.ts +19 -19
- package/src/services/dtos/UpdateServiceMembershipRequest.ts +25 -25
- package/src/services/dtos/UpdateServiceRequest.ts +49 -49
- package/src/services/enums/ServiceCompanyEnum.ts +4 -4
- package/src/services/enums/ServiceFlowEnum.ts +3 -3
- package/src/services/enums/ServiceMembershipStatusEnum.ts +6 -6
- package/src/services/enums/ServiceRecurrenceEnum.ts +6 -6
- package/src/services/enums/ServiceStatusEnum.ts +4 -4
- package/src/services/enums/ServiceTypeEnum.ts +3 -3
- package/src/services/index.ts +22 -22
- package/src/sessionActivity/dtos/SessionActivityQueueMessageRequest.ts +14 -14
- package/src/sessionActivity/enums/SessionActivityActionEnum.ts +7 -7
- package/src/sessionActivity/enums/SessionActivityActionOriginEnum.ts +4 -4
- package/src/sessionActivity/index.ts +2 -2
- package/src/stpAccount/dtos/CreateAccountWebhookDetail.ts +5 -5
- package/src/stpSpei/dtos/GetBusinessAccountBalanceResponse.ts +4 -4
- package/src/stpSpei/dtos/PutStpOrderRequest.ts +16 -16
- package/src/stpSpei/dtos/SpeiWebhookMessage.ts +10 -10
- package/src/stpSpei/enums/ActividadesProductivasEnum.ts +47 -47
- package/src/stpSpei/enums/BusinessNameEnum.ts +3 -3
- package/src/stpSpei/enums/EntidadesFederativasEnum.ts +33 -33
- package/src/stpSpei/enums/PaisesEnum.ts +275 -275
- package/src/stpSpei/enums/WebhookMessageStatusEnum.ts +7 -7
- package/src/stpSpei/index.ts +9 -9
- package/src/transaction/dtos/ActivityProblemGetResponse.ts +22 -22
- package/src/transaction/dtos/Credit.ts +24 -24
- package/src/transaction/dtos/Debit.ts +20 -20
- package/src/transaction/dtos/Notional.ts +20 -20
- package/src/transaction/dtos/Product.ts +23 -23
- package/src/transaction/dtos/ProductDetail.ts +43 -43
- package/src/transaction/dtos/Total.ts +20 -20
- package/src/transaction/dtos/TransactionCreateRequest.ts +136 -136
- package/src/transaction/dtos/TransactionCreateResponse.ts +4 -4
- package/src/transaction/dtos/TransactionGetDetailResponse.ts +27 -27
- package/src/transaction/dtos/TransactionGetResponse.ts +20 -20
- package/src/transaction/dtos/internal/BaseProviderTransaction.ts +18 -18
- package/src/transaction/dtos/internal/BaseProviderTransactionQueryParams.ts +6 -6
- package/src/transaction/dtos/internal/CentralPaymentsQueryParams.ts +6 -6
- package/src/transaction/dtos/internal/CentralPaymentsTransactionItem.ts +36 -36
- package/src/transaction/dtos/internal/ProviderTransactionMerchant.ts +10 -10
- package/src/transaction/dtos/internal/ProviderTransactionPagination.ts +5 -5
- package/src/transaction/dtos/internal/TernQueryParams.ts +13 -13
- package/src/transaction/dtos/internal/TernTransactionItem.ts +23 -23
- package/src/transaction/dtos/internal/TransactionListResponse.ts +5 -5
- package/src/transaction/enums/ActivityProblemStatusEnum.ts +4 -4
- package/src/transaction/enums/DisputeOrFraudEnum.ts +3 -3
- package/src/transaction/enums/DisputeOrFraudStatusEnum.ts +4 -4
- package/src/transaction/enums/OperationEnum.ts +3 -3
- package/src/transaction/enums/TransactionSourceEnum.ts +7 -7
- package/src/transaction/enums/TransactionStatusEnum.ts +6 -6
- package/src/transaction/index.ts +31 -31
- package/src/transactionProcessor/dtos/AmountInfo.ts +6 -6
- package/src/transactionProcessor/dtos/AmountInfoItem.ts +3 -3
- package/src/transactionProcessor/dtos/AuthorizeAdjustmentTransactionRequest.ts +14 -14
- package/src/transactionProcessor/dtos/AuthorizeCollectorTransactionRequest.ts +6 -6
- package/src/transactionProcessor/dtos/AuthorizeCreditCardAdjustmentRequest.ts +19 -19
- package/src/transactionProcessor/dtos/AuthorizeCreditCardPurchaseRequest.ts +16 -16
- package/src/transactionProcessor/dtos/AuthorizeDisputeTransactionRequest.ts +13 -13
- package/src/transactionProcessor/dtos/AuthorizeP2pTransactionRequest.ts +11 -11
- package/src/transactionProcessor/dtos/AuthorizePocketTransactionRequest.ts +8 -8
- package/src/transactionProcessor/dtos/AuthorizeRstTransactionRequest.ts +4 -4
- package/src/transactionProcessor/dtos/AuthorizeServicePaymentRequest.ts +7 -7
- package/src/transactionProcessor/dtos/AuthorizeSpeiBankTransferNcRequest.ts +14 -14
- package/src/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.ts +7 -7
- package/src/transactionProcessor/dtos/AuthorizeSpeiMexBankTransferInRequest.ts +37 -37
- package/src/transactionProcessor/dtos/CardInfo.ts +5 -5
- package/src/transactionProcessor/dtos/InstallmentsInfo.ts +6 -6
- package/src/transactionProcessor/dtos/MerchantInfo.ts +6 -6
- package/src/transactionProcessor/dtos/ProcessUpdateLevelRequest.ts +3 -3
- package/src/transactionProcessor/dtos/RSTTransactionStatusUpdate.ts +6 -6
- package/src/transactionProcessor/dtos/SpeiBankTransferStatusUpdate.ts +6 -6
- package/src/transactionProcessor/dtos/TransactionInfo.ts +7 -7
- package/src/transactionProcessor/dtos/TransactionProcessorQueueMessage.ts +3 -3
- package/src/transactionProcessor/dtos/TransactionProcessorResponse.ts +13 -13
- package/src/transactionProcessor/enums/AppEnum.ts +3 -3
- package/src/transactionProcessor/enums/AsyncTxStatusEnum.ts +5 -5
- package/src/transactionProcessor/enums/TransactionProcessorCodesEnum.ts +19 -19
- package/src/transactionProcessor/index.ts +27 -27
- package/.idea/sonarlint/issuestore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
- package/.idea/sonarlint/issuestore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
- package/.idea/sonarlint/issuestore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
- package/.idea/sonarlint/issuestore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
- package/.idea/sonarlint/issuestore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
- package/.idea/sonarlint/issuestore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -2
- package/.idea/sonarlint/issuestore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
- package/.idea/sonarlint/issuestore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
- package/.idea/sonarlint/issuestore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
- package/.idea/sonarlint/issuestore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
- package/.idea/sonarlint/issuestore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
- package/.idea/sonarlint/issuestore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
- package/.idea/sonarlint/issuestore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
- package/.idea/sonarlint/issuestore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
- package/.idea/sonarlint/issuestore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
- package/.idea/sonarlint/issuestore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
- package/.idea/sonarlint/issuestore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
- package/.idea/sonarlint/issuestore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
- package/.idea/sonarlint/issuestore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
- package/.idea/sonarlint/issuestore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
- package/.idea/sonarlint/issuestore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
- package/.idea/sonarlint/issuestore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
- package/.idea/sonarlint/issuestore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
- package/.idea/sonarlint/issuestore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
- package/.idea/sonarlint/issuestore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
- package/.idea/sonarlint/issuestore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
- package/.idea/sonarlint/issuestore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
- package/.idea/sonarlint/issuestore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
- package/.idea/sonarlint/issuestore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
- package/.idea/sonarlint/issuestore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
- package/.idea/sonarlint/issuestore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
- package/.idea/sonarlint/issuestore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
- package/.idea/sonarlint/issuestore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
- package/.idea/sonarlint/issuestore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
- package/.idea/sonarlint/issuestore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
- package/.idea/sonarlint/issuestore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
- package/.idea/sonarlint/issuestore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
- package/.idea/sonarlint/issuestore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
- package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
- package/.idea/sonarlint/issuestore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
- package/.idea/sonarlint/issuestore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
- package/.idea/sonarlint/issuestore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
- package/.idea/sonarlint/issuestore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
- package/.idea/sonarlint/issuestore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
- package/.idea/sonarlint/issuestore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
- package/.idea/sonarlint/issuestore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
- package/.idea/sonarlint/issuestore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
- package/.idea/sonarlint/issuestore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
- package/.idea/sonarlint/issuestore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
- package/.idea/sonarlint/issuestore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
- package/.idea/sonarlint/issuestore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
- package/.idea/sonarlint/issuestore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
- package/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
- package/.idea/sonarlint/issuestore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
- package/.idea/sonarlint/issuestore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
- package/.idea/sonarlint/issuestore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
- package/.idea/sonarlint/issuestore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
- package/.idea/sonarlint/issuestore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
- package/.idea/sonarlint/issuestore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
- package/.idea/sonarlint/issuestore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
- package/.idea/sonarlint/issuestore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
- package/.idea/sonarlint/issuestore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
- package/.idea/sonarlint/issuestore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
- package/.idea/sonarlint/issuestore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
- package/.idea/sonarlint/issuestore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
- package/.idea/sonarlint/issuestore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
- package/.idea/sonarlint/issuestore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
- package/.idea/sonarlint/issuestore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
- package/.idea/sonarlint/issuestore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
- package/.idea/sonarlint/issuestore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
- package/.idea/sonarlint/issuestore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
- package/.idea/sonarlint/issuestore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
- package/.idea/sonarlint/issuestore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
- package/.idea/sonarlint/issuestore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
- package/.idea/sonarlint/issuestore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
- package/.idea/sonarlint/issuestore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
- package/.idea/sonarlint/issuestore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
- package/.idea/sonarlint/issuestore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
- package/.idea/sonarlint/issuestore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
- package/.idea/sonarlint/issuestore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
- package/.idea/sonarlint/issuestore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
- package/.idea/sonarlint/issuestore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
- package/.idea/sonarlint/issuestore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
- package/.idea/sonarlint/issuestore/index.pb +0 -168
- package/.idea/sonarlint/securityhotspotstore/0/2/02175ba1c7b82f17c1f95edd897711cf21fc8b55 +0 -0
- package/.idea/sonarlint/securityhotspotstore/0/3/0382ec9d8bd1d671b35f3cce2e83a60a6f0d4e92 +0 -0
- package/.idea/sonarlint/securityhotspotstore/0/9/09ee7ee398f8b5bc6eda536c9104a8ae5419c82e +0 -0
- package/.idea/sonarlint/securityhotspotstore/0/f/0f534ce38f745b6707998aa6c868a729b909bf4d +0 -0
- package/.idea/sonarlint/securityhotspotstore/1/0/10612661d76edd5c482b60e71edd3a7f74505d5e +0 -0
- package/.idea/sonarlint/securityhotspotstore/1/2/12453d06e6e35287172e482940b954ba12dc25a2 +0 -0
- package/.idea/sonarlint/securityhotspotstore/1/8/18c290c3d5b13d503bb211e6319a9e64ccd83350 +0 -0
- package/.idea/sonarlint/securityhotspotstore/1/9/197cec5934a8756e52d31de4e13741cc3a816164 +0 -0
- package/.idea/sonarlint/securityhotspotstore/1/f/1fcc1ef4b4c5c551f5f5833f39af79dd4d6440bd +0 -0
- package/.idea/sonarlint/securityhotspotstore/2/4/244f232939a7014966ac2eff9cd795d12c5ddc21 +0 -0
- package/.idea/sonarlint/securityhotspotstore/2/5/25497cc140764f84080ed16d4d408b09b411525a +0 -0
- package/.idea/sonarlint/securityhotspotstore/2/9/2983524a17882775f03310e18fd052a958d44d3b +0 -0
- package/.idea/sonarlint/securityhotspotstore/2/c/2cf73169675e38d4411f50e8ac8e5c5186a3616e +0 -0
- package/.idea/sonarlint/securityhotspotstore/2/d/2de53b2c61661c8acd989aad739d9b6cc0deabde +0 -0
- package/.idea/sonarlint/securityhotspotstore/3/5/355a0b1b7628657539752d4cfbd8f33fcc664d5d +0 -0
- package/.idea/sonarlint/securityhotspotstore/3/8/38c41cacebf63514689973e01014e89db38448d7 +0 -0
- package/.idea/sonarlint/securityhotspotstore/3/9/3942490f54c10c0111afa09b30a079f3ef9aeec7 +0 -0
- package/.idea/sonarlint/securityhotspotstore/3/a/3a96f9d5c15844580b34596455a77e22ce0b1da1 +0 -0
- package/.idea/sonarlint/securityhotspotstore/4/1/4110de41994be7f0e890b6711ba86bb4fb50f602 +0 -0
- package/.idea/sonarlint/securityhotspotstore/4/d/4d722d4f799d0dcaf4f273105d16ce2d9761ceb2 +0 -0
- package/.idea/sonarlint/securityhotspotstore/4/f/4f9e0d80d4df64baa27bf681528cb43a3ba4fde6 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/2/52124373285180cc9fc913380c1cf02a160f9e62 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/5/55792c374cceb362b99620756061abf16563279b +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/6/566db33aef0142b767c76568b2fca29caaa1b423 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/7/57d8ecb1bda7803e970cddbcb9d96ec682fbce50 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/8/5815363aa7c189fe1d8a995d750c3a3f27900621 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/9/5993b7cd868ca0f67fff0860484d2de906467a5c +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/a/5a74acb4b064cbe70d9a71991eb486fb4d78f531 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/b/5b4cf966e749bb0515dfad5d0c51e5fa59e969e5 +0 -0
- package/.idea/sonarlint/securityhotspotstore/5/b/5bc0ebc2a399a9f7595b8013c990ef8681de0fb8 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/1/619fe0b2aa30704d95a60035674b31d432fc5a75 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/4/646b88aafc1ca8453d1a111ea33d258c52e07851 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/5/65e727e2ee3468d20e4bf7cb3800385cb2c7a983 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/6/6627ec0b7b336db9c2a70382b2ee1e69ba3163ac +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/9/69abfdb53d85b80c255b3ab2a88666175ceeac54 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/b/6bcb55d35bf54b940fe29f44e2bb679bc6f621e1 +0 -0
- package/.idea/sonarlint/securityhotspotstore/6/f/6f43ceef55b03d8c26768ceb4ee9e3e1cea7ddd4 +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/0/70c663239858c68590cdba7e904366fe59855b0b +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/3/73d3690344e0bf29ccdba246e5f3450707458c0a +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/3/73eee44012dacbb17c6d2e2d988e6def209267b8 +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/7/77a3404a468e41376864800c0ab63d69287e6eab +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/8/782e1a44f35a71927df243d92a4eede126f437ac +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/a/7aa3d5a067415a7071571cb5018a37d03cff5bbd +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/e/7ecdb333781356fc0fe1cc9fa84ac8f76b996401 +0 -0
- package/.idea/sonarlint/securityhotspotstore/7/f/7f9d84f1e541f40d1bc582e467f11283b3acfe99 +0 -0
- package/.idea/sonarlint/securityhotspotstore/8/1/81c76302465b6fb29ef101681712a023c52c8f00 +0 -0
- package/.idea/sonarlint/securityhotspotstore/8/2/823bafbef2d005b52054bb6ba237d26a93a69289 +0 -0
- package/.idea/sonarlint/securityhotspotstore/8/b/8b0588db2495f22a93ce5d97cc089971f40aa4ec +0 -0
- package/.idea/sonarlint/securityhotspotstore/8/c/8ce69d617cb074433c15518eed688652cbc8c164 +0 -0
- package/.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d +0 -0
- package/.idea/sonarlint/securityhotspotstore/9/2/9252baf9a1ff6cf967c8f83c4a62c40264b122d7 +0 -0
- package/.idea/sonarlint/securityhotspotstore/9/4/948b0afb07fbe2035d9d0a168a017e51c2b221a2 +0 -0
- package/.idea/sonarlint/securityhotspotstore/9/4/94f646fcac8f4172c6e6958abd9f455b3c79995f +0 -0
- package/.idea/sonarlint/securityhotspotstore/9/5/95966b4a91847f490e094dfa87f80c2c5c59fbb9 +0 -0
- package/.idea/sonarlint/securityhotspotstore/9/8/98a520adeec585ead0013d974a18f679393b6997 +0 -0
- package/.idea/sonarlint/securityhotspotstore/9/f/9fc96c9beeba61e907bd3ba313f11eac8cf0d430 +0 -0
- package/.idea/sonarlint/securityhotspotstore/a/0/a06a99270cf7808dda3a6025cf813ae52720b475 +0 -0
- package/.idea/sonarlint/securityhotspotstore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302 +0 -0
- package/.idea/sonarlint/securityhotspotstore/a/9/a903e3bfc804794d9b9535cbb530c68383652b5d +0 -0
- package/.idea/sonarlint/securityhotspotstore/a/b/abfb24bd8d0e3cdfbf3ff4c7e80603bf1cdf7871 +0 -0
- package/.idea/sonarlint/securityhotspotstore/b/c/bc5b896ed63da1497d081036364d9f2384f2ea37 +0 -0
- package/.idea/sonarlint/securityhotspotstore/c/5/c5fb850250c7443c48a6c12b5cf6916773da31f1 +0 -0
- package/.idea/sonarlint/securityhotspotstore/c/9/c9c508bb5b9ad2f0f6b3ad35422b961d678e1d0f +0 -0
- package/.idea/sonarlint/securityhotspotstore/c/b/cbc130a9515015718fb34e36adfe27e4e31f43e5 +0 -0
- package/.idea/sonarlint/securityhotspotstore/c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985 +0 -0
- package/.idea/sonarlint/securityhotspotstore/d/2/d24fe332e92475452d840d36f81c9af7b70887e7 +0 -0
- package/.idea/sonarlint/securityhotspotstore/d/2/d2b43e6a30699faba4dff61341b06c7e17e7f400 +0 -0
- package/.idea/sonarlint/securityhotspotstore/d/d/dd375f957eb150c2f7fb1d4edba07501286db515 +0 -0
- package/.idea/sonarlint/securityhotspotstore/d/f/df083cf457b627bc4ada3c11eee92cc83e6c4c80 +0 -0
- package/.idea/sonarlint/securityhotspotstore/e/0/e05f58bae396006667e2ac1103d301e443e1f856 +0 -0
- package/.idea/sonarlint/securityhotspotstore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
- package/.idea/sonarlint/securityhotspotstore/e/d/ed43355775e0bbf3987e4526d4d8dd779773eb91 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/2/f2d1f4712d58f68a238d7df4f455d3cc45882594 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/2/f2f4d557bf4d2e72606a808a2446af7098387e58 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/9/f9cb0ab2ca2e8ce4e64e10034c949066c38000f5 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/9/f9d6327040914014594d301e0dc6361a476a5ff4 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/a/fa9452abeeb6e134b984ce22f0ff271a774c9093 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/a/fa9dce145b13c5aaff8e84813e79f94dcd4c0860 +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/b/fb74f3edc49c374fcb38034841d290680603b9cb +0 -0
- package/.idea/sonarlint/securityhotspotstore/f/d/fdd4872693720f9140008b46069639fb2801114d +0 -0
- package/.idea/sonarlint/securityhotspotstore/index.pb +0 -168
- package/bin/membership/dtos/CreateMembershipDirectoryUserRequest.d.ts +0 -12
- package/bin/membership/dtos/CreateMembershipDirectoryUserRequest.js +0 -54
- package/bin/membership/dtos/CreateMembershipRequest.d.ts +0 -14
- package/bin/membership/dtos/CreateMembershipRequest.js +0 -56
- package/bin/membership/dtos/GetMembershipDirectoryUserListAppResponse.d.ts +0 -14
- package/bin/membership/dtos/GetMembershipDirectoryUserListAppResponse.js +0 -6
- package/bin/membership/dtos/GetMembershipDirectoryUserListResponse.d.ts +0 -21
- package/bin/membership/dtos/GetMembershipDirectoryUserListResponse.js +0 -6
- package/bin/membership/dtos/GetMembershipListAppResponse.d.ts +0 -10
- package/bin/membership/dtos/GetMembershipListAppResponse.js +0 -6
- package/bin/membership/dtos/GetMembershipListResponse.d.ts +0 -20
- package/bin/membership/dtos/GetMembershipListResponse.js +0 -6
- package/bin/membership/dtos/RegisterMembershipDirectoryUserRequest.d.ts +0 -4
- package/bin/membership/dtos/RegisterMembershipDirectoryUserRequest.js +0 -26
- package/bin/membership/dtos/UpdateMembershipDirectoryUserRequest.d.ts +0 -12
- package/bin/membership/dtos/UpdateMembershipDirectoryUserRequest.js +0 -54
- package/bin/membership/dtos/UpdateMembershipRequest.d.ts +0 -14
- package/bin/membership/dtos/UpdateMembershipRequest.js +0 -56
- package/bin/membership/enums/MembershipDirectoryStatusEnum.d.ts +0 -6
- package/bin/membership/enums/MembershipDirectoryStatusEnum.js +0 -10
- package/bin/membership/enums/MembershipFlowEnum.d.ts +0 -3
- package/bin/membership/enums/MembershipFlowEnum.js +0 -7
- package/bin/membership/enums/MembershipProviderEnum.d.ts +0 -5
- package/bin/membership/enums/MembershipProviderEnum.js +0 -9
- package/bin/membership/enums/MembershipStatusEnum.d.ts +0 -4
- package/bin/membership/enums/MembershipStatusEnum.js +0 -8
- package/bin/membership/enums/MembershipTypeEnum.d.ts +0 -3
- package/bin/membership/enums/MembershipTypeEnum.js +0 -7
- package/bin/membership/index.d.ts +0 -14
- package/bin/membership/index.js +0 -32
- package/bin/services/enums/ServiceProviderEnum.d.ts +0 -5
- package/bin/services/enums/ServiceProviderEnum.js +0 -9
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { RelationStatus } from "../enums/RelationStatus"
|
|
2
|
-
import { RelationType } from "../enums/RelationType"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export class GroupDirectoryRelationsResponse {
|
|
7
|
-
|
|
8
|
-
PK: string
|
|
9
|
-
SK: string
|
|
10
|
-
directoryId: string
|
|
11
|
-
groupId: string
|
|
12
|
-
relationType: RelationType
|
|
13
|
-
status: RelationStatus
|
|
14
|
-
agent: string
|
|
15
|
-
createdAt: string
|
|
16
|
-
updatedAt: string
|
|
17
|
-
phoneNumber: string
|
|
18
|
-
operationId: string
|
|
19
|
-
indexName: string
|
|
20
|
-
|
|
1
|
+
import { RelationStatus } from "../enums/RelationStatus"
|
|
2
|
+
import { RelationType } from "../enums/RelationType"
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class GroupDirectoryRelationsResponse {
|
|
7
|
+
|
|
8
|
+
PK: string
|
|
9
|
+
SK: string
|
|
10
|
+
directoryId: string
|
|
11
|
+
groupId: string
|
|
12
|
+
relationType: RelationType
|
|
13
|
+
status: RelationStatus
|
|
14
|
+
agent: string
|
|
15
|
+
createdAt: string
|
|
16
|
+
updatedAt: string
|
|
17
|
+
phoneNumber: string
|
|
18
|
+
operationId: string
|
|
19
|
+
indexName: string
|
|
20
|
+
|
|
21
21
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { IsOptional, IsString, Length } from "class-validator";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export class GroupDirectoryRelationsUpdateRequest {
|
|
5
|
-
|
|
6
|
-
@IsOptional()
|
|
7
|
-
@IsString()
|
|
8
|
-
@Length(1, 20)
|
|
9
|
-
agent: string
|
|
10
|
-
|
|
1
|
+
import { IsOptional, IsString, Length } from "class-validator";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export class GroupDirectoryRelationsUpdateRequest {
|
|
5
|
+
|
|
6
|
+
@IsOptional()
|
|
7
|
+
@IsString()
|
|
8
|
+
@Length(1, 20)
|
|
9
|
+
agent: string
|
|
10
|
+
|
|
11
11
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { GroupStatus } from "../enums/GroupStatus"
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export class GroupResponse {
|
|
5
|
-
|
|
6
|
-
id: string
|
|
7
|
-
name: string
|
|
8
|
-
description: string
|
|
9
|
-
status: GroupStatus
|
|
10
|
-
leaderNames: string | null
|
|
11
|
-
phoneNumber: string | null
|
|
12
|
-
leaderEmail: string | null
|
|
13
|
-
leaderDirectoryId: string | null
|
|
14
|
-
codesToRefer: string
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { GroupStatus } from "../enums/GroupStatus"
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export class GroupResponse {
|
|
5
|
+
|
|
6
|
+
id: string
|
|
7
|
+
name: string
|
|
8
|
+
description: string
|
|
9
|
+
status: GroupStatus
|
|
10
|
+
leaderNames: string | null
|
|
11
|
+
phoneNumber: string | null
|
|
12
|
+
leaderEmail: string | null
|
|
13
|
+
leaderDirectoryId: string | null
|
|
14
|
+
codesToRefer: string
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { IsEmail, IsEnum, IsOptional, IsString, Length } from "class-validator";
|
|
2
|
-
import { GroupStatus } from "../enums/GroupStatus";
|
|
3
|
-
|
|
4
|
-
export class GroupUpdateRequest {
|
|
5
|
-
|
|
6
|
-
@IsOptional()
|
|
7
|
-
@IsString()
|
|
8
|
-
@Length(1, 50)
|
|
9
|
-
name: string;
|
|
10
|
-
|
|
11
|
-
@IsOptional()
|
|
12
|
-
@IsString()
|
|
13
|
-
@Length(1, 200)
|
|
14
|
-
description: string;
|
|
15
|
-
|
|
16
|
-
@IsOptional()
|
|
17
|
-
@IsEmail()
|
|
18
|
-
leader: string
|
|
19
|
-
|
|
20
|
-
@IsOptional()
|
|
21
|
-
@IsEnum(GroupStatus)
|
|
22
|
-
status: GroupStatus
|
|
23
|
-
|
|
24
|
-
@IsOptional()
|
|
25
|
-
@Length(3, 20)
|
|
26
|
-
codeToRefer: string;
|
|
27
|
-
|
|
28
|
-
@IsOptional()
|
|
29
|
-
@Length(3, 20)
|
|
30
|
-
category: string;
|
|
31
|
-
}
|
|
1
|
+
import { IsEmail, IsEnum, IsOptional, IsString, Length } from "class-validator";
|
|
2
|
+
import { GroupStatus } from "../enums/GroupStatus";
|
|
3
|
+
|
|
4
|
+
export class GroupUpdateRequest {
|
|
5
|
+
|
|
6
|
+
@IsOptional()
|
|
7
|
+
@IsString()
|
|
8
|
+
@Length(1, 50)
|
|
9
|
+
name: string;
|
|
10
|
+
|
|
11
|
+
@IsOptional()
|
|
12
|
+
@IsString()
|
|
13
|
+
@Length(1, 200)
|
|
14
|
+
description: string;
|
|
15
|
+
|
|
16
|
+
@IsOptional()
|
|
17
|
+
@IsEmail()
|
|
18
|
+
leader: string
|
|
19
|
+
|
|
20
|
+
@IsOptional()
|
|
21
|
+
@IsEnum(GroupStatus)
|
|
22
|
+
status: GroupStatus
|
|
23
|
+
|
|
24
|
+
@IsOptional()
|
|
25
|
+
@Length(3, 20)
|
|
26
|
+
codeToRefer: string;
|
|
27
|
+
|
|
28
|
+
@IsOptional()
|
|
29
|
+
@Length(3, 20)
|
|
30
|
+
category: string;
|
|
31
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export enum GroupAction {
|
|
5
|
-
|
|
6
|
-
ADD='ADD',
|
|
7
|
-
REMOVE='REMOVE'
|
|
8
|
-
}
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export enum GroupAction {
|
|
5
|
+
|
|
6
|
+
ADD='ADD',
|
|
7
|
+
REMOVE='REMOVE'
|
|
8
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export enum GroupStatus {
|
|
5
|
-
ACTIVE = 'ACTIVE',
|
|
6
|
-
INACTIVE = 'INACTIVE',
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export enum GroupStatus {
|
|
5
|
+
ACTIVE = 'ACTIVE',
|
|
6
|
+
INACTIVE = 'INACTIVE',
|
|
7
7
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export enum RelationStatus {
|
|
5
|
-
|
|
6
|
-
ACTIVE = 'ACTIVE',
|
|
7
|
-
INACTIVE = 'INACTIVE',
|
|
8
|
-
PENDING = 'PENDING',
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export enum RelationStatus {
|
|
5
|
+
|
|
6
|
+
ACTIVE = 'ACTIVE',
|
|
7
|
+
INACTIVE = 'INACTIVE',
|
|
8
|
+
PENDING = 'PENDING',
|
|
9
9
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export enum RelationType {
|
|
5
|
-
|
|
6
|
-
MEMBER = 'MEMBER',
|
|
7
|
-
OWNER = 'OWNER',
|
|
8
|
-
AFFILIATE = 'AFFILIATE',
|
|
9
|
-
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export enum RelationType {
|
|
5
|
+
|
|
6
|
+
MEMBER = 'MEMBER',
|
|
7
|
+
OWNER = 'OWNER',
|
|
8
|
+
AFFILIATE = 'AFFILIATE',
|
|
9
|
+
|
|
10
10
|
}
|
package/src/group/index.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//dtos
|
|
4
|
-
export * from './dtos/GroupResponse';
|
|
5
|
-
export * from './dtos/GroupCreateRequest';
|
|
6
|
-
export * from './dtos/GroupDirectoryRelationsResponse';
|
|
7
|
-
export * from './dtos/GroupUpdateRequest';
|
|
8
|
-
export * from './dtos/GroupAddDirectoryRequest';
|
|
9
|
-
export * from './dtos/GroupDirectoryRelationsUpdateRequest';
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
//enums
|
|
13
|
-
export * from './enums/GroupStatus';
|
|
14
|
-
export * from './enums/RelationType';
|
|
15
|
-
export * from './enums/RelationStatus';
|
|
16
|
-
export * from './enums/GroupAction';
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
//dtos
|
|
4
|
+
export * from './dtos/GroupResponse';
|
|
5
|
+
export * from './dtos/GroupCreateRequest';
|
|
6
|
+
export * from './dtos/GroupDirectoryRelationsResponse';
|
|
7
|
+
export * from './dtos/GroupUpdateRequest';
|
|
8
|
+
export * from './dtos/GroupAddDirectoryRequest';
|
|
9
|
+
export * from './dtos/GroupDirectoryRelationsUpdateRequest';
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
//enums
|
|
13
|
+
export * from './enums/GroupStatus';
|
|
14
|
+
export * from './enums/RelationType';
|
|
15
|
+
export * from './enums/RelationStatus';
|
|
16
|
+
export * from './enums/GroupAction';
|
|
17
|
+
|
|
18
|
+
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { TypeOfDirectoryId } from "../directory";
|
|
2
|
-
import { Status } from "../directory/enums/Status";
|
|
3
|
-
|
|
4
|
-
export interface TokenPayload {
|
|
5
|
-
directoryId: string;
|
|
6
|
-
typeOfDirectoryId: TypeOfDirectoryId;
|
|
7
|
-
peopleId: string | null;
|
|
8
|
-
sub: string;
|
|
9
|
-
app: string;
|
|
10
|
-
issuer: string;
|
|
11
|
-
scope: string;
|
|
12
|
-
phoneNumber?: string | null;
|
|
13
|
-
status: Status | null;
|
|
14
|
-
id: string;
|
|
15
|
-
profileId?: string | null;
|
|
16
|
-
email?: string | null;
|
|
17
|
-
event_id?: string
|
|
18
|
-
}
|
|
1
|
+
import { TypeOfDirectoryId } from "../directory";
|
|
2
|
+
import { Status } from "../directory/enums/Status";
|
|
3
|
+
|
|
4
|
+
export interface TokenPayload {
|
|
5
|
+
directoryId: string;
|
|
6
|
+
typeOfDirectoryId: TypeOfDirectoryId;
|
|
7
|
+
peopleId: string | null;
|
|
8
|
+
sub: string;
|
|
9
|
+
app: string;
|
|
10
|
+
issuer: string;
|
|
11
|
+
scope: string;
|
|
12
|
+
phoneNumber?: string | null;
|
|
13
|
+
status: Status | null;
|
|
14
|
+
id: string;
|
|
15
|
+
profileId?: string | null;
|
|
16
|
+
email?: string | null;
|
|
17
|
+
event_id?: string
|
|
18
|
+
}
|
package/src/header/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export * from './TokenPayload'
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
export * from './TokenPayload'
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { IsNotEmpty, IsString } from "class-validator";
|
|
2
|
-
|
|
3
|
-
export class HelpdeskCreateTicketRequest {
|
|
4
|
-
|
|
5
|
-
@IsNotEmpty()
|
|
6
|
-
@IsString()
|
|
7
|
-
subject: string;
|
|
8
|
-
|
|
9
|
-
@IsNotEmpty()
|
|
10
|
-
@IsString()
|
|
11
|
-
note: string;
|
|
12
|
-
|
|
13
|
-
@IsString()
|
|
14
|
-
createDate: string;
|
|
15
|
-
|
|
16
|
-
@IsNotEmpty()
|
|
17
|
-
@IsString()
|
|
18
|
-
folio: string;
|
|
19
|
-
|
|
20
|
-
@IsNotEmpty()
|
|
21
|
-
@IsString()
|
|
22
|
-
type: string;
|
|
23
|
-
|
|
24
|
-
@IsString()
|
|
25
|
-
directoryId: string;
|
|
26
|
-
|
|
27
|
-
@IsString()
|
|
28
|
-
peopleId: string;
|
|
29
|
-
|
|
30
|
-
}
|
|
1
|
+
import { IsNotEmpty, IsString } from "class-validator";
|
|
2
|
+
|
|
3
|
+
export class HelpdeskCreateTicketRequest {
|
|
4
|
+
|
|
5
|
+
@IsNotEmpty()
|
|
6
|
+
@IsString()
|
|
7
|
+
subject: string;
|
|
8
|
+
|
|
9
|
+
@IsNotEmpty()
|
|
10
|
+
@IsString()
|
|
11
|
+
note: string;
|
|
12
|
+
|
|
13
|
+
@IsString()
|
|
14
|
+
createDate: string;
|
|
15
|
+
|
|
16
|
+
@IsNotEmpty()
|
|
17
|
+
@IsString()
|
|
18
|
+
folio: string;
|
|
19
|
+
|
|
20
|
+
@IsNotEmpty()
|
|
21
|
+
@IsString()
|
|
22
|
+
type: string;
|
|
23
|
+
|
|
24
|
+
@IsString()
|
|
25
|
+
directoryId: string;
|
|
26
|
+
|
|
27
|
+
@IsString()
|
|
28
|
+
peopleId: string;
|
|
29
|
+
|
|
30
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { IsBoolean, IsNotEmpty, IsOptional, IsString } from "class-validator";
|
|
2
|
-
import { TypeOfContactIdEnum } from "../../contactInfo";
|
|
3
|
-
|
|
4
|
-
export class HelpdeskCreateUserRequest {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
@IsString()
|
|
8
|
-
@IsNotEmpty()
|
|
9
|
-
directoryId: string;
|
|
10
|
-
|
|
11
|
-
@IsString()
|
|
12
|
-
indexName?: string;
|
|
13
|
-
|
|
14
|
-
@IsBoolean()
|
|
15
|
-
usaDebitAccount?: boolean;
|
|
16
|
-
|
|
17
|
-
@IsBoolean()
|
|
18
|
-
mxnDebitAccount?: boolean;
|
|
19
|
-
|
|
20
|
-
otherContacts?: {contact:string, typeOfContactId:TypeOfContactIdEnum}[];
|
|
21
|
-
|
|
22
|
-
@IsString()
|
|
23
|
-
directoryStatus?: string;
|
|
24
|
-
|
|
25
|
-
@IsString()
|
|
26
|
-
bankSponsor?: string;
|
|
27
|
-
|
|
28
|
-
@IsString()
|
|
29
|
-
@IsNotEmpty()
|
|
30
|
-
peopleId: string;
|
|
31
|
-
|
|
32
|
-
@IsString()
|
|
33
|
-
@IsOptional()
|
|
34
|
-
name?: string;
|
|
35
|
-
|
|
36
|
-
@IsString()
|
|
37
|
-
@IsOptional()
|
|
38
|
-
phone?: string;
|
|
39
|
-
}
|
|
1
|
+
import { IsBoolean, IsNotEmpty, IsOptional, IsString } from "class-validator";
|
|
2
|
+
import { TypeOfContactIdEnum } from "../../contactInfo";
|
|
3
|
+
|
|
4
|
+
export class HelpdeskCreateUserRequest {
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@IsString()
|
|
8
|
+
@IsNotEmpty()
|
|
9
|
+
directoryId: string;
|
|
10
|
+
|
|
11
|
+
@IsString()
|
|
12
|
+
indexName?: string;
|
|
13
|
+
|
|
14
|
+
@IsBoolean()
|
|
15
|
+
usaDebitAccount?: boolean;
|
|
16
|
+
|
|
17
|
+
@IsBoolean()
|
|
18
|
+
mxnDebitAccount?: boolean;
|
|
19
|
+
|
|
20
|
+
otherContacts?: {contact:string, typeOfContactId:TypeOfContactIdEnum}[];
|
|
21
|
+
|
|
22
|
+
@IsString()
|
|
23
|
+
directoryStatus?: string;
|
|
24
|
+
|
|
25
|
+
@IsString()
|
|
26
|
+
bankSponsor?: string;
|
|
27
|
+
|
|
28
|
+
@IsString()
|
|
29
|
+
@IsNotEmpty()
|
|
30
|
+
peopleId: string;
|
|
31
|
+
|
|
32
|
+
@IsString()
|
|
33
|
+
@IsOptional()
|
|
34
|
+
name?: string;
|
|
35
|
+
|
|
36
|
+
@IsString()
|
|
37
|
+
@IsOptional()
|
|
38
|
+
phone?: string;
|
|
39
|
+
}
|
package/src/helpdesk/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './dtos/HelpdeskCreateUserRequest';
|
|
1
|
+
export * from './dtos/HelpdeskCreateUserRequest';
|
|
2
2
|
export * from './dtos/HelpdeskCreateTicketRequest';
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { regexIso8601, regexUuidV4 } from "./constans/regex";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export class ValidationUtils {
|
|
5
|
-
|
|
6
|
-
// Método estático para validar UUID v4
|
|
7
|
-
public static validateUuidV4(value: any) {
|
|
8
|
-
if (value === null) return true;
|
|
9
|
-
return regexUuidV4.test(value);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
// Método estático para validar la longitud de una cadena
|
|
13
|
-
public static validateStringLength(minLength: number, maxLength: number) {
|
|
14
|
-
return (value: string) => {
|
|
15
|
-
if (value === null) return true;
|
|
16
|
-
return value.length >= minLength && value.length <= maxLength;
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// Método estático para validar el formato de fecha ISO 8601
|
|
21
|
-
public static validateIso8601(value: string) {
|
|
22
|
-
if (value === null) return true;
|
|
23
|
-
return regexIso8601.test(value);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
public static validateNumberRange(minValue: number, maxValue: number) {
|
|
27
|
-
return (value: number | null): boolean => {
|
|
28
|
-
if (value === null) return true;
|
|
29
|
-
return value >= minValue && value <= maxValue;
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
}
|
|
1
|
+
import { regexIso8601, regexUuidV4 } from "./constans/regex";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export class ValidationUtils {
|
|
5
|
+
|
|
6
|
+
// Método estático para validar UUID v4
|
|
7
|
+
public static validateUuidV4(value: any) {
|
|
8
|
+
if (value === null) return true;
|
|
9
|
+
return regexUuidV4.test(value);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// Método estático para validar la longitud de una cadena
|
|
13
|
+
public static validateStringLength(minLength: number, maxLength: number) {
|
|
14
|
+
return (value: string) => {
|
|
15
|
+
if (value === null) return true;
|
|
16
|
+
return value.length >= minLength && value.length <= maxLength;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Método estático para validar el formato de fecha ISO 8601
|
|
21
|
+
public static validateIso8601(value: string) {
|
|
22
|
+
if (value === null) return true;
|
|
23
|
+
return regexIso8601.test(value);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
public static validateNumberRange(minValue: number, maxValue: number) {
|
|
27
|
+
return (value: number | null): boolean => {
|
|
28
|
+
if (value === null) return true;
|
|
29
|
+
return value >= minValue && value <= maxValue;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
// Expresión regular para validar UUID v4
|
|
4
|
-
export const regexUuidV4 = /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
5
|
-
// Expresión regular para validar fecha ISO 8601
|
|
6
|
-
export const regexIso8601 = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|[+-]\d{2}:\d{2})$/;
|
|
7
|
-
// Expresión regular para validar un número de teléfono
|
|
8
|
-
export const regexPhoneNumber = /^\+1\d{10}$|^\+52\d{10}$/;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
// Expresión regular para validar UUID v4
|
|
4
|
+
export const regexUuidV4 = /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
5
|
+
// Expresión regular para validar fecha ISO 8601
|
|
6
|
+
export const regexIso8601 = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|[+-]\d{2}:\d{2})$/;
|
|
7
|
+
// Expresión regular para validar un número de teléfono
|
|
8
|
+
export const regexPhoneNumber = /^\+1\d{10}$|^\+52\d{10}$/;
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {IdentificationDocumentStatus} from "../enums/IdentificationDocumentStatus";
|
|
2
|
-
import {SexDocument} from "../enums/SexDocument";
|
|
3
|
-
|
|
4
|
-
export class IdentificationDocument {
|
|
5
|
-
|
|
6
|
-
frontImageName: string | null;
|
|
7
|
-
backImageName: string | null;
|
|
8
|
-
countryId: string | null;
|
|
9
|
-
expirationDate: string | null;
|
|
10
|
-
issueDate: string | null;
|
|
11
|
-
lastNameFirst: string | null;
|
|
12
|
-
lastNameSecond: string | null;
|
|
13
|
-
names: string | null;
|
|
14
|
-
fullName: string | null;
|
|
15
|
-
countryOfBirth: string | null;
|
|
16
|
-
dateOfBirth: string | null;
|
|
17
|
-
documentNumber: string | null;
|
|
18
|
-
typeOfDocument: string;
|
|
19
|
-
sex: SexDocument | null;
|
|
20
|
-
verificationId: string | null;
|
|
21
|
-
curp: string | null;
|
|
22
|
-
status: IdentificationDocumentStatus;
|
|
1
|
+
import {IdentificationDocumentStatus} from "../enums/IdentificationDocumentStatus";
|
|
2
|
+
import {SexDocument} from "../enums/SexDocument";
|
|
3
|
+
|
|
4
|
+
export class IdentificationDocument {
|
|
5
|
+
|
|
6
|
+
frontImageName: string | null;
|
|
7
|
+
backImageName: string | null;
|
|
8
|
+
countryId: string | null;
|
|
9
|
+
expirationDate: string | null;
|
|
10
|
+
issueDate: string | null;
|
|
11
|
+
lastNameFirst: string | null;
|
|
12
|
+
lastNameSecond: string | null;
|
|
13
|
+
names: string | null;
|
|
14
|
+
fullName: string | null;
|
|
15
|
+
countryOfBirth: string | null;
|
|
16
|
+
dateOfBirth: string | null;
|
|
17
|
+
documentNumber: string | null;
|
|
18
|
+
typeOfDocument: string;
|
|
19
|
+
sex: SexDocument | null;
|
|
20
|
+
verificationId: string | null;
|
|
21
|
+
curp: string | null;
|
|
22
|
+
status: IdentificationDocumentStatus;
|
|
23
23
|
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { AppEnum } from "../../transactionProcessor"
|
|
2
|
-
import { SexDocument } from "../enums/SexDocument"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export class PeopleCreateRequest {
|
|
6
|
-
id: string
|
|
7
|
-
creationMethod?: AppEnum | null
|
|
8
|
-
preferredName?: string | null
|
|
9
|
-
preferredPronoun?: string | null
|
|
10
|
-
countryOfBirth?: string | null
|
|
11
|
-
dateOfBirth?: string | null
|
|
12
|
-
stateOfBirth?: string | null
|
|
13
|
-
nationalities?: string[] | null
|
|
14
|
-
docSex?: SexDocument | null
|
|
15
|
-
occupation?: string | null
|
|
16
|
-
MXN_FundsPurpose?:number | null;
|
|
17
|
-
MXN_UsageMonthly?:number | null;
|
|
18
|
-
MXN_MaximumTX?:number | null;
|
|
19
|
-
USA_DebitAccountWish: boolean
|
|
20
|
-
MEX_DebitAccountWish?: boolean | null
|
|
21
|
-
countryOfDomicile?: string | null
|
|
22
|
-
email: string | null
|
|
23
|
-
secondaryPhoneNumber: string | null
|
|
24
|
-
phoneNumber: string | null
|
|
25
|
-
directoryId: string | null
|
|
26
|
-
SIN?: string | null;
|
|
27
|
-
documentNumber?: string;
|
|
28
|
-
stateOfDocument?: string;
|
|
1
|
+
import { AppEnum } from "../../transactionProcessor"
|
|
2
|
+
import { SexDocument } from "../enums/SexDocument"
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class PeopleCreateRequest {
|
|
6
|
+
id: string
|
|
7
|
+
creationMethod?: AppEnum | null
|
|
8
|
+
preferredName?: string | null
|
|
9
|
+
preferredPronoun?: string | null
|
|
10
|
+
countryOfBirth?: string | null
|
|
11
|
+
dateOfBirth?: string | null
|
|
12
|
+
stateOfBirth?: string | null
|
|
13
|
+
nationalities?: string[] | null
|
|
14
|
+
docSex?: SexDocument | null
|
|
15
|
+
occupation?: string | null
|
|
16
|
+
MXN_FundsPurpose?:number | null;
|
|
17
|
+
MXN_UsageMonthly?:number | null;
|
|
18
|
+
MXN_MaximumTX?:number | null;
|
|
19
|
+
USA_DebitAccountWish: boolean
|
|
20
|
+
MEX_DebitAccountWish?: boolean | null
|
|
21
|
+
countryOfDomicile?: string | null
|
|
22
|
+
email: string | null
|
|
23
|
+
secondaryPhoneNumber: string | null
|
|
24
|
+
phoneNumber: string | null
|
|
25
|
+
directoryId: string | null
|
|
26
|
+
SIN?: string | null;
|
|
27
|
+
documentNumber?: string;
|
|
28
|
+
stateOfDocument?: string;
|
|
29
29
|
}
|