@fiado/api-invoker 4.5.0 → 4.7.0
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/.claude/settings.json +33 -33
- package/README.md +600 -600
- package/bin/container.config.js +9 -0
- package/bin/index.d.ts +2 -0
- package/bin/index.js +2 -0
- package/bin/messages-business/api/MessagesBusinessApi.d.ts +17 -0
- package/bin/messages-business/api/MessagesBusinessApi.js +53 -0
- package/bin/messages-business/api/interfaces/IMessagesBusinessApi.d.ts +12 -0
- package/bin/messages-business/api/interfaces/IMessagesBusinessApi.js +2 -0
- package/bin/messages-business/index.d.ts +4 -0
- package/bin/messages-business/index.js +25 -0
- package/bin/messages-business/queue/MessagesBusinessPublisher.d.ts +7 -0
- package/bin/messages-business/queue/MessagesBusinessPublisher.js +41 -0
- package/bin/messages-business/queue/interfaces/IMessagesBusinessPublisher.d.ts +4 -0
- package/bin/messages-business/queue/interfaces/IMessagesBusinessPublisher.js +2 -0
- package/bin/platformRbac/api/PlatformRbacBusinessApi.d.ts +26 -0
- package/bin/platformRbac/api/PlatformRbacBusinessApi.js +54 -0
- package/bin/platformRbac/api/interfaces/IPlatformRbacBusinessApi.d.ts +40 -0
- package/bin/platformRbac/api/interfaces/IPlatformRbacBusinessApi.js +2 -0
- package/bin/platformRbac/index.d.ts +2 -0
- package/bin/platformRbac/index.js +23 -0
- package/docs/TECH_DEBT.md +16 -0
- package/package.json +37 -36
- package/src/account-beneficiary/AccountBeneficiaryApi.ts +18 -18
- package/src/account-beneficiary/index.ts +2 -2
- package/src/account-beneficiary/interfaces/IAccountBeneficiaryApi.ts +7 -7
- package/src/account-fiadoinc/AccountFiadoIncApi.ts +126 -126
- package/src/account-fiadoinc/index.ts +4 -4
- package/src/account-fiadoinc/interfaces/IAccountFiadoIncApi.ts +50 -50
- package/src/account-fiadoinc/queue/Publisher.ts +23 -23
- package/src/account-fiadoinc/queue/interfaces/IPublisher.ts +4 -4
- package/src/account-fiadosa/AccountFiadoSAApi.ts +38 -38
- package/src/account-fiadosa/index.ts +1 -1
- package/src/account-fiadosa/interfaces/IAccountFiadoSAApi.ts +16 -16
- package/src/account-pagoconfiado/AccountPagoConfiadoApi.ts +78 -78
- package/src/account-pagoconfiado/index.ts +2 -2
- package/src/account-pagoconfiado/interfaces/IAccountPagoConfiadoApi.ts +37 -37
- package/src/activity-business/ActivityApi.ts +36 -36
- package/src/activity-business/index.ts +5 -5
- package/src/activity-business/interfaces/IActivityApi.ts +13 -13
- package/src/activity-business/queue/ActivityPublisher.ts +30 -30
- package/src/activity-business/queue/IActivityPublisher.ts +4 -4
- package/src/address/AddressApi.ts +46 -46
- package/src/address/index.ts +3 -3
- package/src/address/interfaces/IAddressApi.ts +30 -30
- package/src/ai-engine-connector/AiEngineApi.ts +28 -28
- package/src/ai-engine-connector/index.ts +2 -2
- package/src/ai-engine-connector/interfaces/IAiEngineApi.ts +6 -6
- package/src/appselectondata/AppSelectionDataApi.ts +32 -32
- package/src/appselectondata/index.ts +2 -2
- package/src/appselectondata/interfaces/IAppSelectionDataApi.ts +17 -17
- package/src/authentication/AuthenticationApi.ts +29 -29
- package/src/authentication/index.ts +4 -4
- package/src/authentication/interfaces/IAuthenticationApi.ts +8 -8
- package/src/bankAccount/BankAccountApi.ts +34 -34
- package/src/bankAccount/index.ts +1 -1
- package/src/bankAccount/interfaces/IBankAccountApi.ts +6 -6
- package/src/bbvaRst/api/BBVARstApi.ts +16 -16
- package/src/bbvaRst/api/interfaces/IBBVARstApi.ts +4 -4
- package/src/bbvaRst/index.ts +1 -1
- package/src/benefits-marketplace/api/BenefitsMarketplaceApi.ts +35 -35
- package/src/benefits-marketplace/api/dtos/BenefitLeafDisplayResponse.ts +21 -21
- package/src/benefits-marketplace/api/interfaces/IBenefitsMarketplaceApi.ts +62 -62
- package/src/benefits-marketplace/index.ts +3 -3
- package/src/blacklist/BlackListApi.ts +19 -19
- package/src/blacklist/index.ts +2 -2
- package/src/blacklist/interfaces/IBlackListApi.ts +20 -20
- package/src/card/CardApi.ts +103 -103
- package/src/card/index.ts +3 -3
- package/src/card/interfaces/ICardApi.ts +32 -32
- package/src/card-business/index.ts +2 -2
- package/src/card-business/queue/CardBusinessPublisher.ts +23 -23
- package/src/card-business/queue/ICardBusinessPublisher.ts +10 -10
- package/src/centralPayments/CentralPaymentsConnectorApi.ts +317 -317
- package/src/centralPayments/index.ts +1 -1
- package/src/centralPayments/interfaces/ICentralPaymentsConnectorApi.ts +153 -153
- package/src/circuloCredito/api/CirculoCreditoApi.ts +21 -21
- package/src/circuloCredito/api/interfaces/ICirculoCreditoApi.ts +7 -7
- package/src/circuloCredito/index.ts +2 -2
- package/src/cnbv-business/CnbvApi.ts +31 -31
- package/src/cnbv-business/index.ts +4 -4
- package/src/cnbv-business/interfaces/ICnbvApi.ts +19 -19
- package/src/cnbv-connector/CnbvConnectorApi.ts +18 -18
- package/src/cnbv-connector/index.ts +1 -1
- package/src/cnbv-connector/interfaces/ICnbvConnectorApi.ts +6 -6
- package/src/cognitoBackofficeConnector/api/CognitoBackofficeConnectorApi.ts +254 -254
- package/src/cognitoBackofficeConnector/api/interfaces/ICognitoBackofficeConnectorApi.ts +181 -181
- package/src/cognitoBackofficeConnector/index.ts +2 -2
- package/src/cognitoConnector/CognitoConnectorApi.ts +110 -110
- package/src/cognitoConnector/CognitoConnectorV2.ts +87 -87
- package/src/cognitoConnector/index.ts +11 -11
- package/src/cognitoConnector/interfaces/ICognitoConnectorApi.ts +16 -16
- package/src/cognitoConnector/interfaces/ICognitoV2Api.ts +63 -63
- package/src/collector/CollectorApi.ts +97 -97
- package/src/collector/index.ts +2 -2
- package/src/collector/interfaces/ICollectorApi.ts +47 -47
- package/src/commission-business/CommissionBusinessApi.ts +19 -19
- package/src/commission-business/index.ts +3 -3
- package/src/commission-business/interfaces/ICommissionBusinessApi.ts +15 -15
- package/src/contactInformation/ContactInformationApi.ts +20 -20
- package/src/contactInformation/index.ts +2 -2
- package/src/contactInformation/interface/IContactInformationApi.ts +8 -8
- package/src/container.config.ts +289 -276
- package/src/contract-business/api/ContractBusinessApi.ts +37 -37
- package/src/contract-business/api/interfaces/IContractBusinessApi.ts +32 -32
- package/src/contract-business/index.ts +2 -2
- package/src/contract-generator/ContractGeneratorApi.ts +18 -18
- package/src/contract-generator/index.ts +2 -2
- package/src/contract-generator/interfaces/IContractGeneratorApi.ts +16 -16
- package/src/countries-business/CountriesBusinessApi.ts +26 -26
- package/src/countries-business/index.ts +2 -2
- package/src/countries-business/interfaces/ICountriesBusinessApi.ts +22 -22
- package/src/credit-engine/CreditEngineApi.ts +54 -54
- package/src/credit-engine/index.ts +17 -17
- package/src/credit-engine/interfaces/ICreditEngineApi.ts +46 -46
- package/src/credit-engine/queue/CreditCollectionPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditDelinquencyPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditIncomeDetectionPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditLienCollectionPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditNotificationPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditOfferGenerationPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditReconciliationPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditScoringPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditStatementPublisher.ts +24 -24
- package/src/credit-engine/queue/CreditTransferPublisher.ts +24 -24
- package/src/credit-engine/queue/interfaces/ICreditCollectionPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditDelinquencyPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditIncomeDetectionPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditLienCollectionPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditNotificationPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditOfferGenerationPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditReconciliationPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditScoringPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditStatementPublisher.ts +5 -5
- package/src/credit-engine/queue/interfaces/ICreditTransferPublisher.ts +5 -5
- package/src/credit-payment/CreditPaymentApi.ts +73 -73
- package/src/credit-payment/index.ts +2 -2
- package/src/credit-payment/interfaces/ICreditPaymentApi.ts +52 -52
- package/src/credit-statements/api/CreditStatementsApi.ts +25 -25
- package/src/credit-statements/api/interfaces/ICreditStatementsApi.ts +30 -30
- package/src/credit-statements/index.ts +2 -2
- package/src/device/DeviceApi.ts +32 -32
- package/src/device/index.ts +2 -2
- package/src/device/interfaces/IDeviceApi.ts +41 -41
- package/src/directories/DirectoriesApi.ts +63 -63
- package/src/directories/index.ts +3 -3
- package/src/directories/interfaces/IDirectoriesApi.ts +17 -17
- package/src/directory/DirectoryApi.ts +196 -196
- package/src/directory/index.ts +3 -3
- package/src/directory/interfaces/IDirectoryApi.ts +73 -73
- package/src/directorySetting/DirectorySettingApi.ts +42 -42
- package/src/directorySetting/index.ts +3 -3
- package/src/directorySetting/interfaces/IDirectorySettingApi.ts +56 -56
- package/src/disputes/DisputesApi.ts +50 -50
- package/src/disputes/index.ts +2 -2
- package/src/disputes/interfaces/IDisputesApi.ts +54 -54
- package/src/document-generator/DocumentGeneratorApi.ts +51 -51
- package/src/document-generator/index.ts +2 -2
- package/src/document-generator/interfaces/IDocumentGeneratorApi.ts +34 -34
- package/src/document-image-processor/DocumentImageProcessorApi.ts +22 -22
- package/src/document-image-processor/index.ts +1 -1
- package/src/document-image-processor/interfaces/IDocumentImageProcessorApi.ts +7 -7
- package/src/estafeta/api/EstafetaApi.ts +67 -67
- package/src/estafeta/api/interfaces/IEstafetaApi.ts +28 -28
- package/src/estafeta/index.ts +1 -1
- package/src/event-history-business/EventHistoryApi.ts +108 -108
- package/src/event-history-business/index.ts +3 -3
- package/src/event-history-business/interfaces/IEventHistoryApi.ts +47 -47
- package/src/exchangeRates/ExchangeRatesApi.ts +27 -27
- package/src/exchangeRates/index.ts +1 -1
- package/src/exchangeRates/interfaces/IExchangeRatesApi.ts +8 -8
- package/src/fiadoMessages/api/FiadoMessagesApi.ts +20 -20
- package/src/fiadoMessages/api/interfaces/IFiadoMessagesApi.ts +2 -2
- package/src/fiadoMessages/index.ts +1 -1
- package/src/firebase-connector/FirebaseConnectorApi.ts +53 -53
- package/src/firebase-connector/index.ts +3 -3
- package/src/firebase-connector/interfaces/IFirebaseConnectorApi.ts +6 -6
- package/src/fraudPreventionEngine/api/FraudPreventionEngineApi.ts +22 -22
- package/src/fraudPreventionEngine/api/interfaces/IFraudPreventionEngineApi.ts +7 -7
- package/src/fraudPreventionEngine/index.ts +1 -1
- package/src/group/GroupApi.ts +69 -69
- package/src/group/index.ts +1 -1
- package/src/group/interfaces/IGroupApi.ts +40 -40
- package/src/identity/IdentityApi.ts +95 -95
- package/src/identity/index.ts +3 -3
- package/src/identity/interfaces/IIdentityApi.ts +46 -46
- package/src/index.ts +78 -76
- package/src/legalDocument/api/LegalDocumentApi.ts +38 -38
- package/src/legalDocument/api/interfaces/ILegalDocumentApi.ts +7 -7
- package/src/legalDocument/index.ts +3 -3
- package/src/messages-business/api/MessagesBusinessApi.ts +50 -0
- package/src/messages-business/api/interfaces/IMessagesBusinessApi.ts +20 -0
- package/src/messages-business/index.ts +4 -0
- package/src/messages-business/queue/MessagesBusinessPublisher.ts +33 -0
- package/src/messages-business/queue/interfaces/IMessagesBusinessPublisher.ts +5 -0
- package/src/milestone-business/api/MilestoneBusinessApi.ts +26 -26
- package/src/milestone-business/api/interfaces/IMilestoneBusinessApi.ts +9 -9
- package/src/milestone-business/index.ts +2 -2
- package/src/multicommServicePayment/api/MulticommServicePaymentApi.ts +94 -94
- package/src/multicommServicePayment/api/interfaces/IMulticommServicePaymentApi.ts +44 -44
- package/src/multicommServicePayment/index.ts +1 -1
- package/src/notificationMessages/index.ts +1 -1
- package/src/notificationMessages/queue/NotificationMessagePublisher.ts +42 -42
- package/src/notificationMessages/queue/interfaces/INotificationMessagesPublisher.ts +7 -7
- package/src/notificationWebsockets/index.ts +1 -1
- package/src/notificationWebsockets/queue/NotificationWSMessagePublisher.ts +29 -29
- package/src/notificationWebsockets/queue/interfaces/INotificationWSMessagesPublisher.ts +4 -4
- package/src/observations/ObservationsApi.ts +23 -23
- package/src/observations/index.ts +3 -3
- package/src/observations/interfaces/IObservationsApi.ts +9 -9
- package/src/onboarding/api/OnboardingApi.ts +23 -23
- package/src/onboarding/api/interfaces/IOnboardingApi.ts +3 -3
- package/src/onboarding/index.ts +1 -1
- package/src/onboarding-business/api/OnboardingBusinessApi.ts +210 -210
- package/src/onboarding-business/api/interfaces/IOnboardingBusinessApi.ts +9 -9
- package/src/onboarding-business/index.ts +1 -1
- package/src/order-collector-business/OrderCollectorApi.ts +20 -20
- package/src/order-collector-business/index.ts +3 -3
- package/src/order-collector-business/interfaces/IOrderCollectorApi.ts +9 -9
- package/src/p2pContact/api/P2pContactApi.ts +19 -19
- package/src/p2pContact/api/interfaces/IP2pContactApi.ts +4 -4
- package/src/p2pContact/index.ts +1 -1
- package/src/payroll-business/PayrollApi.ts +19 -19
- package/src/payroll-business/index.ts +1 -1
- package/src/payroll-business/interfaces/IPayrollApi.ts +18 -18
- package/src/people-business/api/PeopleBusinessApi.ts +32 -32
- package/src/people-business/api/interfaces/IPeopleBusinessApi.ts +7 -7
- package/src/people-business/index.ts +1 -1
- package/src/platform-error-events/index.ts +2 -2
- package/src/platform-error-events/queue/PlatformErrorEventsPublisher.ts +24 -24
- package/src/platform-error-events/queue/interfaces/IPlatformErrorEventsPublisher.ts +5 -5
- package/src/platformRbac/api/PlatformRbacBusinessApi.ts +55 -0
- package/src/platformRbac/api/interfaces/IPlatformRbacBusinessApi.ts +56 -0
- package/src/platformRbac/index.ts +2 -0
- package/src/pomelo/api/PomeloApi.ts +109 -109
- package/src/pomelo/api/interfaces/IPomeloApi.ts +29 -29
- package/src/pomelo/index.ts +1 -1
- package/src/pomeloProcessor/api/PomeloProcessorApi.ts +17 -17
- package/src/pomeloProcessor/api/interfaces/IPomeloProcessorApi.ts +2 -2
- package/src/pomeloProcessor/index.ts +2 -2
- package/src/pricelist-business/PriceListApi.ts +45 -45
- package/src/pricelist-business/index.ts +1 -1
- package/src/pricelist-business/interfaces/IPriceListApi.ts +16 -16
- package/src/product-catalog/ProductCatalogApi.ts +17 -17
- package/src/product-catalog/index.ts +1 -1
- package/src/product-catalog/interfaces/IProductCatalogApi.ts +6 -6
- package/src/product-payment/api/ProductPaymentApi.ts +25 -25
- package/src/product-payment/api/interfaces/IProductPaymentApi.ts +8 -8
- package/src/product-payment/index.ts +1 -1
- package/src/referral-business/ReferralBusinessApi.ts +37 -37
- package/src/referral-business/index.ts +1 -1
- package/src/referral-business/interfaces/IReferralBusinessApi.ts +38 -38
- package/src/report-processor-business/api/IReportProcessorBusinessApi.ts +4 -4
- package/src/report-processor-business/api/ReportProcessorBusinessApi.ts +17 -17
- package/src/report-processor-business/index.ts +5 -5
- package/src/riskProfile/api/RiskProfileApi.ts +63 -63
- package/src/riskProfile/api/TransactionAlertApi.ts +49 -49
- package/src/riskProfile/api/interfaces/IRiskProfileApi.ts +51 -51
- package/src/riskProfile/api/interfaces/ITransactionAlertApi.ts +70 -70
- package/src/riskProfile/index.ts +7 -7
- package/src/riskProfile/queue/TransactionAlarmPublisher.ts +25 -25
- package/src/riskProfile/queue/interfaces/ITransactionAlarmPublisher.ts +4 -4
- package/src/service-business/ServiceApi.ts +78 -78
- package/src/service-business/index.ts +2 -2
- package/src/service-business/interfaces/IServiceApi.ts +73 -73
- package/src/sessionActivity/index.ts +2 -2
- package/src/sessionActivity/queue/SessionActivityPublisher.ts +23 -23
- package/src/sessionActivity/queue/interfaces/ISessionActivityPublisher.ts +4 -4
- package/src/stp-business/api/STPBusinessApi.ts +32 -32
- package/src/stp-business/api/interfaces/ISTPBusinessApi.ts +15 -15
- package/src/stp-business/index.ts +1 -1
- package/src/stpAccount/api/STPAccountApi.ts +111 -111
- package/src/stpAccount/api/interfaces/ISTPAccountApi.ts +7 -7
- package/src/stpAccount/index.ts +1 -1
- package/src/stpServicePayment/api/StpServicePaymentApi.ts +94 -94
- package/src/stpServicePayment/api/interfaces/IStpServicePaymentApi.ts +44 -44
- package/src/stpServicePayment/index.ts +1 -1
- package/src/stpSpei/api/StpSpeiApi.ts +32 -32
- package/src/stpSpei/api/interfaces/IStpSpeiApi.ts +6 -6
- package/src/stpSpei/index.ts +1 -1
- package/src/teams-connector/index.ts +2 -2
- package/src/teams-connector/queue/TeamsNotificationPublisher.ts +24 -24
- package/src/teams-connector/queue/interfaces/ITeamsNotificationPublisher.ts +5 -5
- package/src/tern/api/TernApi.ts +147 -147
- package/src/tern/api/interfaces/ITernApi.ts +54 -54
- package/src/tern/index.ts +1 -1
- package/src/transaction/api/TransactionApi.ts +157 -157
- package/src/transaction/api/interfaces/ITransactionApi.ts +82 -82
- package/src/transaction/index.ts +5 -5
- package/src/transaction/queue/TransactionPublisher.ts +25 -25
- package/src/transaction/queue/interfaces/ITransactionPublisher.ts +4 -4
- package/src/transactionProcessor/api/TransactionProcessorApi.ts +57 -57
- package/src/transactionProcessor/api/interfaces/ITransactionProcessorApi.ts +28 -28
- package/src/transactionProcessor/index.ts +1 -1
- package/src/uniteller-connector/api/UnitellerConnectorApi.ts +113 -113
- package/src/uniteller-connector/api/interfaces/IUnitellerConnectorApi.ts +85 -85
- package/src/uniteller-connector/index.ts +2 -2
- package/src/utils/InvokerUtils.ts +18 -18
- package/src/zendesk/ZendeskApi.ts +24 -24
- package/src/zendesk/index.ts +3 -3
- package/src/zendesk/interfaces/IZendeskApi.ts +10 -10
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
import {IMulticommServicePaymentApi} from "./interfaces/IMulticommServicePaymentApi";
|
|
2
|
-
import {inject, injectable} from "inversify";
|
|
3
|
-
import {IHttpRequest} from "@fiado/http-client";
|
|
4
|
-
import {GetCatalogParams, GetFavoritesParams, GetFavoritesResponse, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
|
|
5
|
-
import {BenefitPaymentRequest, BenefitPaymentResponse, ConnectorCatalogResponse} from "@fiado/type-kit/bin/benefitCenter";
|
|
6
|
-
import {ApiGatewayResponse} from "@fiado/gateway-adapter";
|
|
7
|
-
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
8
|
-
|
|
9
|
-
@injectable()
|
|
10
|
-
export default class MulticommServicePaymentApi implements IMulticommServicePaymentApi {
|
|
11
|
-
private readonly baseUrl = process.env.MULTICOMM_SERVICE_PAY_LAMBDA_URL || "";
|
|
12
|
-
|
|
13
|
-
constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
|
|
14
|
-
}
|
|
15
|
-
async getSTPTransactionDownload(params: { date: string; index?: string; pageSize?: number; sort?: string; }): Promise<ApiGatewayResponse<any>> {
|
|
16
|
-
const url= `${this.baseUrl}transaction-download?${(Object.keys(params) as (keyof typeof params)[]).map(key => `${key}=${encodeURIComponent(String(params[key]))}`).join('&')}`;
|
|
17
|
-
return await this.httpRequest.get(url);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
async pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>> {
|
|
21
|
-
const url = `${this.baseUrl}/pay`;
|
|
22
|
-
return await this.httpRequest.post(url, request);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
async getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
|
|
26
|
-
const url = `${this.baseUrl}/transaction/${transactionNumber}`;
|
|
27
|
-
return await this.httpRequest.get(url);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
async getById(id: string): Promise<ApiGatewayResponse<any>> {
|
|
31
|
-
const url = `${this.baseUrl}/transaction/${id}`;
|
|
32
|
-
return await this.httpRequest.get(url);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
async getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
|
|
36
|
-
const url = `${this.baseUrl}/pay/validation/${transactionNumber}`;
|
|
37
|
-
return await this.httpRequest.get(url);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
async getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>> {
|
|
41
|
-
let url = `${this.baseUrl}/catalog`;
|
|
42
|
-
if (params) {
|
|
43
|
-
url += `?${(Object.keys(params) as (keyof typeof params)[]).map(key => `${key}=${encodeURIComponent(String(params[key]))}`).join('&')}`;
|
|
44
|
-
}
|
|
45
|
-
return await this.httpRequest.get(url);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
async consultTransaction(params: { transactionNumber: string; date: string; serviceId: string; }): Promise<ApiGatewayResponse<any>> {
|
|
49
|
-
const url = `${this.baseUrl}consult-transaction?${(Object.keys(params) as (keyof typeof params)[]).map(key => `${key}=${encodeURIComponent(String(params[key]))}`).join('&')}`;
|
|
50
|
-
return await this.httpRequest.get(url);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
async getTransactions(params: GetFavoritesParams): Promise<FiadoApiResponse<GetFavoritesResponse>> {
|
|
54
|
-
const { directoryId, ...queryParams } = params;
|
|
55
|
-
let url = `${this.baseUrl}transactions/${directoryId}`;
|
|
56
|
-
const query = (Object.keys(queryParams) as (keyof typeof queryParams)[])
|
|
57
|
-
.filter(key => queryParams[key] !== undefined)
|
|
58
|
-
.map(key => `${key}=${encodeURIComponent(String(queryParams[key]))}`)
|
|
59
|
-
.join('&');
|
|
60
|
-
if (query) url += `?${query}`;
|
|
61
|
-
return await this.httpRequest.get(url);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
async getStandardCatalog(params?: { benefitId?: string; includeDisabled?: boolean }): Promise<ApiGatewayResponse<ConnectorCatalogResponse>> {
|
|
65
|
-
let url = `${this.baseUrl}/catalog/standard`;
|
|
66
|
-
if (params) {
|
|
67
|
-
const query = Object.keys(params)
|
|
68
|
-
.filter(key => params[key as keyof typeof params] !== undefined)
|
|
69
|
-
.map(key => `${key}=${encodeURIComponent(String(params[key as keyof typeof params]))}`)
|
|
70
|
-
.join('&');
|
|
71
|
-
if (query) url += `?${query}`;
|
|
72
|
-
}
|
|
73
|
-
return await this.httpRequest.get(url);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
async payStandard(request: BenefitPaymentRequest): Promise<ApiGatewayResponse<BenefitPaymentResponse>> {
|
|
77
|
-
const url = `${this.baseUrl}/pay/standard`;
|
|
78
|
-
return await this.httpRequest.post(url, request);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
async consultStandard(transactionNumber: string): Promise<ApiGatewayResponse<BenefitPaymentResponse>> {
|
|
82
|
-
const url = `${this.baseUrl}/pay/standard/transactions/${encodeURIComponent(transactionNumber)}`;
|
|
83
|
-
return await this.httpRequest.get(url);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
async updateService(idServicio: number, patch: Record<string, unknown>): Promise<ApiGatewayResponse<any>> {
|
|
87
|
-
const url = `${this.baseUrl}/internal/services/${idServicio}`;
|
|
88
|
-
return await this.httpRequest.put(url, patch);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
async createService(payload: Record<string, unknown>): Promise<ApiGatewayResponse<any>> {
|
|
92
|
-
const url = `${this.baseUrl}/internal/services`;
|
|
93
|
-
return await this.httpRequest.post(url, payload);
|
|
94
|
-
}
|
|
1
|
+
import {IMulticommServicePaymentApi} from "./interfaces/IMulticommServicePaymentApi";
|
|
2
|
+
import {inject, injectable} from "inversify";
|
|
3
|
+
import {IHttpRequest} from "@fiado/http-client";
|
|
4
|
+
import {GetCatalogParams, GetFavoritesParams, GetFavoritesResponse, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
|
|
5
|
+
import {BenefitPaymentRequest, BenefitPaymentResponse, ConnectorCatalogResponse} from "@fiado/type-kit/bin/benefitCenter";
|
|
6
|
+
import {ApiGatewayResponse} from "@fiado/gateway-adapter";
|
|
7
|
+
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
8
|
+
|
|
9
|
+
@injectable()
|
|
10
|
+
export default class MulticommServicePaymentApi implements IMulticommServicePaymentApi {
|
|
11
|
+
private readonly baseUrl = process.env.MULTICOMM_SERVICE_PAY_LAMBDA_URL || "";
|
|
12
|
+
|
|
13
|
+
constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
|
|
14
|
+
}
|
|
15
|
+
async getSTPTransactionDownload(params: { date: string; index?: string; pageSize?: number; sort?: string; }): Promise<ApiGatewayResponse<any>> {
|
|
16
|
+
const url= `${this.baseUrl}transaction-download?${(Object.keys(params) as (keyof typeof params)[]).map(key => `${key}=${encodeURIComponent(String(params[key]))}`).join('&')}`;
|
|
17
|
+
return await this.httpRequest.get(url);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
async pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>> {
|
|
21
|
+
const url = `${this.baseUrl}/pay`;
|
|
22
|
+
return await this.httpRequest.post(url, request);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
async getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
|
|
26
|
+
const url = `${this.baseUrl}/transaction/${transactionNumber}`;
|
|
27
|
+
return await this.httpRequest.get(url);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
async getById(id: string): Promise<ApiGatewayResponse<any>> {
|
|
31
|
+
const url = `${this.baseUrl}/transaction/${id}`;
|
|
32
|
+
return await this.httpRequest.get(url);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
async getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
|
|
36
|
+
const url = `${this.baseUrl}/pay/validation/${transactionNumber}`;
|
|
37
|
+
return await this.httpRequest.get(url);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>> {
|
|
41
|
+
let url = `${this.baseUrl}/catalog`;
|
|
42
|
+
if (params) {
|
|
43
|
+
url += `?${(Object.keys(params) as (keyof typeof params)[]).map(key => `${key}=${encodeURIComponent(String(params[key]))}`).join('&')}`;
|
|
44
|
+
}
|
|
45
|
+
return await this.httpRequest.get(url);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
async consultTransaction(params: { transactionNumber: string; date: string; serviceId: string; }): Promise<ApiGatewayResponse<any>> {
|
|
49
|
+
const url = `${this.baseUrl}consult-transaction?${(Object.keys(params) as (keyof typeof params)[]).map(key => `${key}=${encodeURIComponent(String(params[key]))}`).join('&')}`;
|
|
50
|
+
return await this.httpRequest.get(url);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
async getTransactions(params: GetFavoritesParams): Promise<FiadoApiResponse<GetFavoritesResponse>> {
|
|
54
|
+
const { directoryId, ...queryParams } = params;
|
|
55
|
+
let url = `${this.baseUrl}transactions/${directoryId}`;
|
|
56
|
+
const query = (Object.keys(queryParams) as (keyof typeof queryParams)[])
|
|
57
|
+
.filter(key => queryParams[key] !== undefined)
|
|
58
|
+
.map(key => `${key}=${encodeURIComponent(String(queryParams[key]))}`)
|
|
59
|
+
.join('&');
|
|
60
|
+
if (query) url += `?${query}`;
|
|
61
|
+
return await this.httpRequest.get(url);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
async getStandardCatalog(params?: { benefitId?: string; includeDisabled?: boolean }): Promise<ApiGatewayResponse<ConnectorCatalogResponse>> {
|
|
65
|
+
let url = `${this.baseUrl}/catalog/standard`;
|
|
66
|
+
if (params) {
|
|
67
|
+
const query = Object.keys(params)
|
|
68
|
+
.filter(key => params[key as keyof typeof params] !== undefined)
|
|
69
|
+
.map(key => `${key}=${encodeURIComponent(String(params[key as keyof typeof params]))}`)
|
|
70
|
+
.join('&');
|
|
71
|
+
if (query) url += `?${query}`;
|
|
72
|
+
}
|
|
73
|
+
return await this.httpRequest.get(url);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
async payStandard(request: BenefitPaymentRequest): Promise<ApiGatewayResponse<BenefitPaymentResponse>> {
|
|
77
|
+
const url = `${this.baseUrl}/pay/standard`;
|
|
78
|
+
return await this.httpRequest.post(url, request);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
async consultStandard(transactionNumber: string): Promise<ApiGatewayResponse<BenefitPaymentResponse>> {
|
|
82
|
+
const url = `${this.baseUrl}/pay/standard/transactions/${encodeURIComponent(transactionNumber)}`;
|
|
83
|
+
return await this.httpRequest.get(url);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
async updateService(idServicio: number, patch: Record<string, unknown>): Promise<ApiGatewayResponse<any>> {
|
|
87
|
+
const url = `${this.baseUrl}/internal/services/${idServicio}`;
|
|
88
|
+
return await this.httpRequest.put(url, patch);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
async createService(payload: Record<string, unknown>): Promise<ApiGatewayResponse<any>> {
|
|
92
|
+
const url = `${this.baseUrl}/internal/services`;
|
|
93
|
+
return await this.httpRequest.post(url, payload);
|
|
94
|
+
}
|
|
95
95
|
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import {GetCatalogParams, GetFavoritesParams, GetFavoritesResponse, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
|
|
2
|
-
import {BenefitPaymentRequest, BenefitPaymentResponse, ConnectorCatalogResponse} from "@fiado/type-kit/bin/benefitCenter";
|
|
3
|
-
import {ApiGatewayResponse} from "@fiado/gateway-adapter";
|
|
4
|
-
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
5
|
-
|
|
6
|
-
export interface IMulticommServicePaymentApi {
|
|
7
|
-
pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>>;
|
|
8
|
-
|
|
9
|
-
getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>>;
|
|
10
|
-
|
|
11
|
-
getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>>
|
|
12
|
-
|
|
13
|
-
getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>>;
|
|
14
|
-
|
|
15
|
-
getById(id: string): Promise<ApiGatewayResponse<any>>;
|
|
16
|
-
|
|
17
|
-
getSTPTransactionDownload(params: {date: string,index?:string,pageSize?:number, sort?:string}): Promise<ApiGatewayResponse<any>>;
|
|
18
|
-
|
|
19
|
-
consultTransaction(params: {transactionNumber: string, date: string, serviceId: string}): Promise<ApiGatewayResponse<any>>;
|
|
20
|
-
|
|
21
|
-
getTransactions(params: GetFavoritesParams): Promise<FiadoApiResponse<GetFavoritesResponse>>;
|
|
22
|
-
|
|
23
|
-
// Agregado en v3.1.0 — consume GET /catalog/standard del conector.
|
|
24
|
-
// Consumido por CatalogTreeBuilder en benefits-marketplace-business.
|
|
25
|
-
getStandardCatalog(params?: { benefitId?: string; includeDisabled?: boolean }): Promise<ApiGatewayResponse<ConnectorCatalogResponse>>;
|
|
26
|
-
|
|
27
|
-
// Agregado en v3.5.0 (Fase 2) — consume POST /pay/standard del conector con DTO estandarizado.
|
|
28
|
-
// Lo invoca el PaymentRouter de benefits-marketplace-business.
|
|
29
|
-
payStandard(request: BenefitPaymentRequest): Promise<ApiGatewayResponse<BenefitPaymentResponse>>;
|
|
30
|
-
|
|
31
|
-
// Agregado en v3.6.0 (Fase 2.5) — consume GET /pay/standard/transactions/{transactionNumber}
|
|
32
|
-
// del conector. Devuelve el estado actual mapeado a BenefitPaymentResponse (el conector
|
|
33
|
-
// hace el mapping legacy → estándar internamente). Usado por el cron de timeout
|
|
34
|
-
// reconciliation del marketplace para consultar transacciones async sin ver shapes legacy.
|
|
35
|
-
consultStandard(transactionNumber: string): Promise<ApiGatewayResponse<BenefitPaymentResponse>>;
|
|
36
|
-
|
|
37
|
-
// Agregado en v3.8.0 — consume PUT /backoffice/services/{idServicio} del conector
|
|
38
|
-
// admin. Consumido por LeafAdminManager de benefits-marketplace-business para
|
|
39
|
-
// edición editorial in-place (admin-leaves v2).
|
|
40
|
-
updateService(idServicio: number, patch: Record<string, unknown>): Promise<ApiGatewayResponse<any>>;
|
|
41
|
-
|
|
42
|
-
// POST /internal/services — alta manual de un servicio nuevo (admin-leaves v2).
|
|
43
|
-
// Consumido por LeafAdminManager de benefits-marketplace-business.
|
|
44
|
-
createService(payload: Record<string, unknown>): Promise<ApiGatewayResponse<any>>;
|
|
1
|
+
import {GetCatalogParams, GetFavoritesParams, GetFavoritesResponse, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
|
|
2
|
+
import {BenefitPaymentRequest, BenefitPaymentResponse, ConnectorCatalogResponse} from "@fiado/type-kit/bin/benefitCenter";
|
|
3
|
+
import {ApiGatewayResponse} from "@fiado/gateway-adapter";
|
|
4
|
+
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
5
|
+
|
|
6
|
+
export interface IMulticommServicePaymentApi {
|
|
7
|
+
pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>>;
|
|
8
|
+
|
|
9
|
+
getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>>;
|
|
10
|
+
|
|
11
|
+
getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>>
|
|
12
|
+
|
|
13
|
+
getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>>;
|
|
14
|
+
|
|
15
|
+
getById(id: string): Promise<ApiGatewayResponse<any>>;
|
|
16
|
+
|
|
17
|
+
getSTPTransactionDownload(params: {date: string,index?:string,pageSize?:number, sort?:string}): Promise<ApiGatewayResponse<any>>;
|
|
18
|
+
|
|
19
|
+
consultTransaction(params: {transactionNumber: string, date: string, serviceId: string}): Promise<ApiGatewayResponse<any>>;
|
|
20
|
+
|
|
21
|
+
getTransactions(params: GetFavoritesParams): Promise<FiadoApiResponse<GetFavoritesResponse>>;
|
|
22
|
+
|
|
23
|
+
// Agregado en v3.1.0 — consume GET /catalog/standard del conector.
|
|
24
|
+
// Consumido por CatalogTreeBuilder en benefits-marketplace-business.
|
|
25
|
+
getStandardCatalog(params?: { benefitId?: string; includeDisabled?: boolean }): Promise<ApiGatewayResponse<ConnectorCatalogResponse>>;
|
|
26
|
+
|
|
27
|
+
// Agregado en v3.5.0 (Fase 2) — consume POST /pay/standard del conector con DTO estandarizado.
|
|
28
|
+
// Lo invoca el PaymentRouter de benefits-marketplace-business.
|
|
29
|
+
payStandard(request: BenefitPaymentRequest): Promise<ApiGatewayResponse<BenefitPaymentResponse>>;
|
|
30
|
+
|
|
31
|
+
// Agregado en v3.6.0 (Fase 2.5) — consume GET /pay/standard/transactions/{transactionNumber}
|
|
32
|
+
// del conector. Devuelve el estado actual mapeado a BenefitPaymentResponse (el conector
|
|
33
|
+
// hace el mapping legacy → estándar internamente). Usado por el cron de timeout
|
|
34
|
+
// reconciliation del marketplace para consultar transacciones async sin ver shapes legacy.
|
|
35
|
+
consultStandard(transactionNumber: string): Promise<ApiGatewayResponse<BenefitPaymentResponse>>;
|
|
36
|
+
|
|
37
|
+
// Agregado en v3.8.0 — consume PUT /backoffice/services/{idServicio} del conector
|
|
38
|
+
// admin. Consumido por LeafAdminManager de benefits-marketplace-business para
|
|
39
|
+
// edición editorial in-place (admin-leaves v2).
|
|
40
|
+
updateService(idServicio: number, patch: Record<string, unknown>): Promise<ApiGatewayResponse<any>>;
|
|
41
|
+
|
|
42
|
+
// POST /internal/services — alta manual de un servicio nuevo (admin-leaves v2).
|
|
43
|
+
// Consumido por LeafAdminManager de benefits-marketplace-business.
|
|
44
|
+
createService(payload: Record<string, unknown>): Promise<ApiGatewayResponse<any>>;
|
|
45
45
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './api/interfaces/IMulticommServicePaymentApi';
|
|
1
|
+
export * from './api/interfaces/IMulticommServicePaymentApi';
|
|
2
2
|
export * from './api/MulticommServicePaymentApi';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './queue/NotificationMessagePublisher';
|
|
1
|
+
export * from './queue/NotificationMessagePublisher';
|
|
2
2
|
export * from './queue/interfaces/INotificationMessagesPublisher';
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import {INotificationMessagesPublisher} from "./interfaces/INotificationMessagesPublisher";
|
|
2
|
-
import {NotificationQueueMessageRequest, NotificationTemplate} from "@fiado/type-kit/bin/notificationMessages";
|
|
3
|
-
import {SendMessageCommand, SendMessageRequest, SQSClient} from "@aws-sdk/client-sqs";
|
|
4
|
-
import {inject, injectable} from "inversify";
|
|
5
|
-
import { IHttpRequest } from "@fiado/http-client";
|
|
6
|
-
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
7
|
-
|
|
8
|
-
@injectable()
|
|
9
|
-
export default class NotificationMessagePublisher implements INotificationMessagesPublisher {
|
|
10
|
-
|
|
11
|
-
constructor(
|
|
12
|
-
@inject("IHttpRequest") private httpRequest: IHttpRequest
|
|
13
|
-
) {}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
private readonly NOTIFICATION_MESSAGES_QUEUE = process.env.NOTIFICATION_MESSAGES_QUEUE
|
|
17
|
-
private readonly NOTIFICATION_MESSAGES_URL = process.env.NOTIFICATION_MESSAGES_URL;
|
|
18
|
-
|
|
19
|
-
async publish(message: NotificationQueueMessageRequest): Promise<void> {
|
|
20
|
-
try {
|
|
21
|
-
const client: SQSClient = new SQSClient();
|
|
22
|
-
const sendMessageRequest: SendMessageRequest = {
|
|
23
|
-
QueueUrl: this.NOTIFICATION_MESSAGES_QUEUE,
|
|
24
|
-
MessageBody: JSON.stringify(message)
|
|
25
|
-
};
|
|
26
|
-
const command: SendMessageCommand = new SendMessageCommand(sendMessageRequest);
|
|
27
|
-
await client.send(command);
|
|
28
|
-
} catch (error) {
|
|
29
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
30
|
-
throw new Error(`Error publishing message to queue ${': ' + errorMessage}`);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
async getTemplateById(templateId: string): Promise<FiadoApiResponse<NotificationTemplate>> {
|
|
35
|
-
const url = `${this.NOTIFICATION_MESSAGES_URL}notification-messages/private/templates/${templateId}`;
|
|
36
|
-
return await this.httpRequest.get(`${url}`);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
async deleteByDirectoryId(directoryId: string): Promise<void> {
|
|
40
|
-
const url = `${this.NOTIFICATION_MESSAGES_URL}notification-messages/private/directory/${directoryId}`;
|
|
41
|
-
return await this.httpRequest.delete(`${url}`);
|
|
42
|
-
}
|
|
1
|
+
import {INotificationMessagesPublisher} from "./interfaces/INotificationMessagesPublisher";
|
|
2
|
+
import {NotificationQueueMessageRequest, NotificationTemplate} from "@fiado/type-kit/bin/notificationMessages";
|
|
3
|
+
import {SendMessageCommand, SendMessageRequest, SQSClient} from "@aws-sdk/client-sqs";
|
|
4
|
+
import {inject, injectable} from "inversify";
|
|
5
|
+
import { IHttpRequest } from "@fiado/http-client";
|
|
6
|
+
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
7
|
+
|
|
8
|
+
@injectable()
|
|
9
|
+
export default class NotificationMessagePublisher implements INotificationMessagesPublisher {
|
|
10
|
+
|
|
11
|
+
constructor(
|
|
12
|
+
@inject("IHttpRequest") private httpRequest: IHttpRequest
|
|
13
|
+
) {}
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
private readonly NOTIFICATION_MESSAGES_QUEUE = process.env.NOTIFICATION_MESSAGES_QUEUE
|
|
17
|
+
private readonly NOTIFICATION_MESSAGES_URL = process.env.NOTIFICATION_MESSAGES_URL;
|
|
18
|
+
|
|
19
|
+
async publish(message: NotificationQueueMessageRequest): Promise<void> {
|
|
20
|
+
try {
|
|
21
|
+
const client: SQSClient = new SQSClient();
|
|
22
|
+
const sendMessageRequest: SendMessageRequest = {
|
|
23
|
+
QueueUrl: this.NOTIFICATION_MESSAGES_QUEUE,
|
|
24
|
+
MessageBody: JSON.stringify(message)
|
|
25
|
+
};
|
|
26
|
+
const command: SendMessageCommand = new SendMessageCommand(sendMessageRequest);
|
|
27
|
+
await client.send(command);
|
|
28
|
+
} catch (error) {
|
|
29
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
30
|
+
throw new Error(`Error publishing message to queue ${': ' + errorMessage}`);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
async getTemplateById(templateId: string): Promise<FiadoApiResponse<NotificationTemplate>> {
|
|
35
|
+
const url = `${this.NOTIFICATION_MESSAGES_URL}notification-messages/private/templates/${templateId}`;
|
|
36
|
+
return await this.httpRequest.get(`${url}`);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async deleteByDirectoryId(directoryId: string): Promise<void> {
|
|
40
|
+
const url = `${this.NOTIFICATION_MESSAGES_URL}notification-messages/private/directory/${directoryId}`;
|
|
41
|
+
return await this.httpRequest.delete(`${url}`);
|
|
42
|
+
}
|
|
43
43
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
2
|
-
import {NotificationQueueMessageRequest, NotificationTemplate} from "@fiado/type-kit/bin/notificationMessages";
|
|
3
|
-
|
|
4
|
-
export interface INotificationMessagesPublisher {
|
|
5
|
-
publish(message: NotificationQueueMessageRequest): Promise<void>;
|
|
6
|
-
getTemplateById(templateId: string): Promise<FiadoApiResponse<NotificationTemplate>>;
|
|
7
|
-
deleteByDirectoryId(directoryId: string): Promise<void>;
|
|
1
|
+
import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
|
|
2
|
+
import {NotificationQueueMessageRequest, NotificationTemplate} from "@fiado/type-kit/bin/notificationMessages";
|
|
3
|
+
|
|
4
|
+
export interface INotificationMessagesPublisher {
|
|
5
|
+
publish(message: NotificationQueueMessageRequest): Promise<void>;
|
|
6
|
+
getTemplateById(templateId: string): Promise<FiadoApiResponse<NotificationTemplate>>;
|
|
7
|
+
deleteByDirectoryId(directoryId: string): Promise<void>;
|
|
8
8
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './queue/NotificationWSMessagePublisher';
|
|
1
|
+
export * from './queue/NotificationWSMessagePublisher';
|
|
2
2
|
export * from './queue/interfaces/INotificationWSMessagesPublisher';
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import {INotificationWSMessagesPublisher} from "./interfaces/INotificationWSMessagesPublisher";
|
|
2
|
-
import {NotificationWSQueueMessageRequest} from "@fiado/type-kit/bin/notificationWS";
|
|
3
|
-
import {SendMessageCommand, SendMessageRequest, SQSClient} from "@aws-sdk/client-sqs";
|
|
4
|
-
import {injectable} from "inversify";
|
|
5
|
-
import crypto from "crypto";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
@injectable()
|
|
9
|
-
export default class NotificationWSMessagePublisher implements INotificationWSMessagesPublisher {
|
|
10
|
-
|
|
11
|
-
constructor() {}
|
|
12
|
-
|
|
13
|
-
private readonly NOTIFICATION_WS_MESSAGES_QUEUE = process.env.NOTIFICATION_WS_MESSAGES_QUEUE
|
|
14
|
-
|
|
15
|
-
async publish(message: NotificationWSQueueMessageRequest<any>): Promise<void> {
|
|
16
|
-
try {
|
|
17
|
-
const client: SQSClient = new SQSClient();
|
|
18
|
-
const sendMessageRequest: SendMessageRequest = {
|
|
19
|
-
QueueUrl: this.NOTIFICATION_WS_MESSAGES_QUEUE,
|
|
20
|
-
MessageBody: JSON.stringify(message),
|
|
21
|
-
MessageGroupId: "NotificationWSGroup",
|
|
22
|
-
MessageDeduplicationId: crypto.randomUUID()
|
|
23
|
-
};
|
|
24
|
-
const command: SendMessageCommand = new SendMessageCommand(sendMessageRequest);
|
|
25
|
-
await client.send(command);
|
|
26
|
-
} catch (error) {
|
|
27
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
28
|
-
throw new Error(`Error publishing message to queue ${': ' + errorMessage}`);
|
|
29
|
-
}
|
|
1
|
+
import {INotificationWSMessagesPublisher} from "./interfaces/INotificationWSMessagesPublisher";
|
|
2
|
+
import {NotificationWSQueueMessageRequest} from "@fiado/type-kit/bin/notificationWS";
|
|
3
|
+
import {SendMessageCommand, SendMessageRequest, SQSClient} from "@aws-sdk/client-sqs";
|
|
4
|
+
import {injectable} from "inversify";
|
|
5
|
+
import crypto from "crypto";
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@injectable()
|
|
9
|
+
export default class NotificationWSMessagePublisher implements INotificationWSMessagesPublisher {
|
|
10
|
+
|
|
11
|
+
constructor() {}
|
|
12
|
+
|
|
13
|
+
private readonly NOTIFICATION_WS_MESSAGES_QUEUE = process.env.NOTIFICATION_WS_MESSAGES_QUEUE
|
|
14
|
+
|
|
15
|
+
async publish(message: NotificationWSQueueMessageRequest<any>): Promise<void> {
|
|
16
|
+
try {
|
|
17
|
+
const client: SQSClient = new SQSClient();
|
|
18
|
+
const sendMessageRequest: SendMessageRequest = {
|
|
19
|
+
QueueUrl: this.NOTIFICATION_WS_MESSAGES_QUEUE,
|
|
20
|
+
MessageBody: JSON.stringify(message),
|
|
21
|
+
MessageGroupId: "NotificationWSGroup",
|
|
22
|
+
MessageDeduplicationId: crypto.randomUUID()
|
|
23
|
+
};
|
|
24
|
+
const command: SendMessageCommand = new SendMessageCommand(sendMessageRequest);
|
|
25
|
+
await client.send(command);
|
|
26
|
+
} catch (error) {
|
|
27
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
28
|
+
throw new Error(`Error publishing message to queue ${': ' + errorMessage}`);
|
|
29
|
+
}
|
|
30
30
|
}}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NotificationWSQueueMessageRequest } from "@fiado/type-kit/bin/notificationWS";
|
|
2
|
-
|
|
3
|
-
export interface INotificationWSMessagesPublisher {
|
|
4
|
-
publish(message: NotificationWSQueueMessageRequest<any>): Promise<void>;
|
|
1
|
+
import { NotificationWSQueueMessageRequest } from "@fiado/type-kit/bin/notificationWS";
|
|
2
|
+
|
|
3
|
+
export interface INotificationWSMessagesPublisher {
|
|
4
|
+
publish(message: NotificationWSQueueMessageRequest<any>): Promise<void>;
|
|
5
5
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import dotenv from 'dotenv';
|
|
2
|
-
import { inject, injectable } from "inversify";
|
|
3
|
-
import { IHttpRequest } from "@fiado/http-client";
|
|
4
|
-
import { IObservationsApi } from "./interfaces/IObservationsApi";
|
|
5
|
-
import FiadoApiResponse from '@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse';
|
|
6
|
-
import { ObservationCreateRequest } from '@fiado/type-kit/bin/observations';
|
|
7
|
-
dotenv.config();
|
|
8
|
-
|
|
9
|
-
@injectable()
|
|
10
|
-
export class ObservationsApi implements IObservationsApi {
|
|
11
|
-
|
|
12
|
-
private readonly baseUrl = process.env.OBSERVATION_BUSINESS || "";
|
|
13
|
-
|
|
14
|
-
constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {}
|
|
15
|
-
|
|
16
|
-
async create(data: ObservationCreateRequest, author?:string): Promise<FiadoApiResponse<any>> {
|
|
17
|
-
const url: string = `${this.baseUrl}observations/create`;
|
|
18
|
-
const objectData = JSON.parse(JSON.stringify(data));
|
|
19
|
-
objectData.author = author;
|
|
20
|
-
return await this.httpRequest.post(url,objectData);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
}
|
|
1
|
+
import dotenv from 'dotenv';
|
|
2
|
+
import { inject, injectable } from "inversify";
|
|
3
|
+
import { IHttpRequest } from "@fiado/http-client";
|
|
4
|
+
import { IObservationsApi } from "./interfaces/IObservationsApi";
|
|
5
|
+
import FiadoApiResponse from '@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse';
|
|
6
|
+
import { ObservationCreateRequest } from '@fiado/type-kit/bin/observations';
|
|
7
|
+
dotenv.config();
|
|
8
|
+
|
|
9
|
+
@injectable()
|
|
10
|
+
export class ObservationsApi implements IObservationsApi {
|
|
11
|
+
|
|
12
|
+
private readonly baseUrl = process.env.OBSERVATION_BUSINESS || "";
|
|
13
|
+
|
|
14
|
+
constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {}
|
|
15
|
+
|
|
16
|
+
async create(data: ObservationCreateRequest, author?:string): Promise<FiadoApiResponse<any>> {
|
|
17
|
+
const url: string = `${this.baseUrl}observations/create`;
|
|
18
|
+
const objectData = JSON.parse(JSON.stringify(data));
|
|
19
|
+
objectData.author = author;
|
|
20
|
+
return await this.httpRequest.post(url,objectData);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export * from './interfaces/IObservationsApi';
|
|
3
|
-
export * from './ObservationsApi';
|
|
1
|
+
|
|
2
|
+
export * from './interfaces/IObservationsApi';
|
|
3
|
+
export * from './ObservationsApi';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import FiadoApiResponse from '@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse';
|
|
2
|
-
import { ObservationCreateRequest } from '@fiado/type-kit/bin/observations';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Interfaz para el servicio de Observations
|
|
6
|
-
*/
|
|
7
|
-
export interface IObservationsApi {
|
|
8
|
-
create(data: ObservationCreateRequest ,author?:string): Promise<FiadoApiResponse<any>>;
|
|
9
|
-
}
|
|
1
|
+
import FiadoApiResponse from '@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse';
|
|
2
|
+
import { ObservationCreateRequest } from '@fiado/type-kit/bin/observations';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Interfaz para el servicio de Observations
|
|
6
|
+
*/
|
|
7
|
+
export interface IObservationsApi {
|
|
8
|
+
create(data: ObservationCreateRequest ,author?:string): Promise<FiadoApiResponse<any>>;
|
|
9
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { inject, injectable } from "inversify";
|
|
2
|
-
import { IHttpRequest } from "@fiado/http-client";
|
|
3
|
-
import { IOnboardingApi } from "./interfaces/IOnboardingApi";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
@injectable()
|
|
7
|
-
export default class OnboardingApi implements IOnboardingApi {
|
|
8
|
-
|
|
9
|
-
private readonly baseUrl = process.env.ONBOARDING_LAMBDA_URL || "";
|
|
10
|
-
|
|
11
|
-
constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
async getByReferralDirectoryId(referralDirectoryId: string): Promise<any> {
|
|
15
|
-
const url = `${this.baseUrl}all?referralDirectoryId=${referralDirectoryId}`;
|
|
16
|
-
return await this.httpRequest.get(`${url}`);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
async delete(id: string): Promise<any> {
|
|
20
|
-
const url = `${this.baseUrl}onboarding/${id}`;
|
|
21
|
-
return await this.httpRequest.delete(`${url}`);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
import { inject, injectable } from "inversify";
|
|
2
|
+
import { IHttpRequest } from "@fiado/http-client";
|
|
3
|
+
import { IOnboardingApi } from "./interfaces/IOnboardingApi";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@injectable()
|
|
7
|
+
export default class OnboardingApi implements IOnboardingApi {
|
|
8
|
+
|
|
9
|
+
private readonly baseUrl = process.env.ONBOARDING_LAMBDA_URL || "";
|
|
10
|
+
|
|
11
|
+
constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
async getByReferralDirectoryId(referralDirectoryId: string): Promise<any> {
|
|
15
|
+
const url = `${this.baseUrl}all?referralDirectoryId=${referralDirectoryId}`;
|
|
16
|
+
return await this.httpRequest.get(`${url}`);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
async delete(id: string): Promise<any> {
|
|
20
|
+
const url = `${this.baseUrl}onboarding/${id}`;
|
|
21
|
+
return await this.httpRequest.delete(`${url}`);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface IOnboardingApi {
|
|
2
|
-
delete(id: string): Promise<any>
|
|
3
|
-
getByReferralDirectoryId(referralDirectoryId: string): Promise<any>
|
|
1
|
+
export interface IOnboardingApi {
|
|
2
|
+
delete(id: string): Promise<any>
|
|
3
|
+
getByReferralDirectoryId(referralDirectoryId: string): Promise<any>
|
|
4
4
|
}
|
package/src/onboarding/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './api/OnboardingApi';
|
|
1
|
+
export * from './api/OnboardingApi';
|
|
2
2
|
export * from './api/interfaces/IOnboardingApi';
|