@fiado/api-invoker 1.5.23 → 1.5.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/bin/account-pagoconfiado/AccountPagoConfiadoApi.d.ts +5 -0
  2. package/bin/account-pagoconfiado/AccountPagoConfiadoApi.js +14 -0
  3. package/bin/account-pagoconfiado/interfaces/IAccountPagoConfiadoApi.d.ts +5 -0
  4. package/bin/authentication/AuthenticationApi.d.ts +2 -1
  5. package/bin/authentication/AuthenticationApi.js +5 -0
  6. package/bin/authentication/interfaces/IAuthenticationApi.d.ts +2 -1
  7. package/bin/container.config.js +4 -0
  8. package/bin/event-history-business/EventHistoryApi.js +29 -4
  9. package/bin/index.d.ts +2 -0
  10. package/bin/index.js +2 -0
  11. package/bin/notificationWebsockets/index.d.ts +2 -0
  12. package/bin/notificationWebsockets/index.js +18 -0
  13. package/bin/notificationWebsockets/queue/NotificationWSMessagePublisher.d.ts +7 -0
  14. package/bin/notificationWebsockets/queue/NotificationWSMessagePublisher.js +37 -0
  15. package/bin/notificationWebsockets/queue/interfaces/INotificationWSMessagesPublisher.d.ts +4 -0
  16. package/bin/notificationWebsockets/queue/interfaces/INotificationWSMessagesPublisher.js +2 -0
  17. package/bin/onboarding-business/api/OnboardingBusinessApi.d.ts +1 -0
  18. package/bin/onboarding-business/api/OnboardingBusinessApi.js +4 -0
  19. package/bin/onboarding-business/api/interfaces/IOnboardingBusinessApi.d.ts +1 -0
  20. package/bin/referral-business/ReferralBusinessApi.d.ts +2 -0
  21. package/bin/referral-business/ReferralBusinessApi.js +4 -0
  22. package/bin/referral-business/interfaces/IReferralBusinessApi.d.ts +7 -0
  23. package/bin/report-processor-business/api/IReportProcessorBusinessApi.d.ts +6 -0
  24. package/bin/report-processor-business/api/IReportProcessorBusinessApi.js +2 -0
  25. package/bin/report-processor-business/api/ReportProcessorBusinessApi.d.ts +11 -0
  26. package/bin/report-processor-business/api/ReportProcessorBusinessApi.js +31 -0
  27. package/bin/report-processor-business/index.d.ts +2 -0
  28. package/bin/report-processor-business/index.js +18 -0
  29. package/package.json +1 -1
@@ -14,4 +14,9 @@ export default class AccountPagoConfiadoApi implements IAccountPagoConfiadoApi {
14
14
  update(directoryId: string, data: AccountUpdateRequest): Promise<ApiGatewayResponse<void>>;
15
15
  updateByAccountNumber(accountNumber: string, data: AccountUpdateRequest): Promise<ApiGatewayResponse<void>>;
16
16
  getAccountByAccountNumber(accountNumber: string): Promise<ApiGatewayResponse<void>>;
17
+ getAccountListByDateMinorOrEqual(params: {
18
+ index?: string | null;
19
+ pageSize?: string;
20
+ date?: string;
21
+ }): Promise<ApiGatewayResponse<any>>;
17
22
  }
@@ -46,6 +46,20 @@ let AccountPagoConfiadoApi = class AccountPagoConfiadoApi {
46
46
  const url = `${this.baseUrl}users/accountNumber/${accountNumber}`;
47
47
  return await this.httpRequest.get(url);
48
48
  }
49
+ async getAccountListByDateMinorOrEqual(params) {
50
+ let queryParams = [];
51
+ if (params.index) {
52
+ queryParams.push(`index=${params.index}`);
53
+ }
54
+ if (params.pageSize) {
55
+ queryParams.push(`pageSize=${params.pageSize}`);
56
+ }
57
+ if (params.date) {
58
+ queryParams.push(`date=${params.date}`);
59
+ }
60
+ const url = `${this.baseUrl}?${queryParams.join('&')}`;
61
+ return await this.httpRequest.get(url);
62
+ }
49
63
  };
50
64
  AccountPagoConfiadoApi = __decorate([
51
65
  (0, inversify_1.injectable)(),
@@ -9,4 +9,9 @@ export interface IAccountPagoConfiadoApi {
9
9
  updateByAccountNumber(accountNumber: string, data: AccountUpdateRequest): Promise<ApiGatewayResponse<void>>;
10
10
  getAccountByAccountNumber(accountNumber: string): Promise<ApiGatewayResponse<void>>;
11
11
  cancelAccount(directoryId: string, accountNumber?: string, documentNumber?: string): Promise<ApiGatewayResponse<void>>;
12
+ getAccountListByDateMinorOrEqual(params: {
13
+ index?: string | null;
14
+ pageSize?: string;
15
+ date?: string;
16
+ }): Promise<ApiGatewayResponse<any>>;
12
17
  }
@@ -1,9 +1,10 @@
1
1
  import { IHttpRequest } from "@fiado/http-client";
2
- import { SignUpAdditionalRequest } from "@fiado/type-kit/bin/authentication";
2
+ import { SignUpAdditionalRequest, SignUpUserBackofficeRequest } from "@fiado/type-kit/bin/authentication";
3
3
  import { IAuthenticationApi } from "./interfaces/IAuthenticationApi";
4
4
  export declare class AuthenticationApi implements IAuthenticationApi {
5
5
  private httpRequest;
6
6
  constructor(httpRequest: IHttpRequest);
7
7
  signUpAdditionalCard(createAdditionalCard: SignUpAdditionalRequest): Promise<any>;
8
8
  deleteAuthSessionByDirectoryId(directoryId: string): Promise<any>;
9
+ signUpBackofficeBulk(input: SignUpUserBackofficeRequest[]): Promise<any>;
9
10
  }
@@ -28,6 +28,11 @@ let AuthenticationApi = class AuthenticationApi {
28
28
  const operation = "deleteAuthSessionByDirectoryId";
29
29
  return await this.httpRequest.post(url, { directoryId }, { 'operationName': operation });
30
30
  }
31
+ async signUpBackofficeBulk(input) {
32
+ const url = `${process.env.AUTH_LAMBDA_URL}`;
33
+ const operation = "postSignUpBackofficeBulk";
34
+ return await this.httpRequest.post(url, input, { 'operationName': operation });
35
+ }
31
36
  };
32
37
  exports.AuthenticationApi = AuthenticationApi;
33
38
  exports.AuthenticationApi = AuthenticationApi = __decorate([
@@ -1,5 +1,6 @@
1
- import { SignUpAdditionalRequest } from "@fiado/type-kit/bin/authentication";
1
+ import { DirectoryBatchSummaryResponse, SignUpAdditionalRequest, SignUpUserBackofficeRequest } from "@fiado/type-kit/bin/authentication";
2
2
  export interface IAuthenticationApi {
3
3
  signUpAdditionalCard(createAdditionalCard: SignUpAdditionalRequest): Promise<any>;
4
4
  deleteAuthSessionByDirectoryId(directoryId: string): Promise<any>;
5
+ signUpBackofficeBulk(input: SignUpUserBackofficeRequest[]): Promise<DirectoryBatchSummaryResponse>;
5
6
  }
@@ -66,6 +66,8 @@ const OnboardingBusinessApi_1 = __importDefault(require("./onboarding-business/a
66
66
  const payroll_business_1 = require("./payroll-business");
67
67
  const referral_business_1 = require("./referral-business");
68
68
  const event_history_business_1 = require("./event-history-business");
69
+ const ReportProcessorBusinessApi_1 = __importDefault(require("./report-processor-business/api/ReportProcessorBusinessApi"));
70
+ const NotificationWSMessagePublisher_1 = __importDefault(require("./notificationWebsockets/queue/NotificationWSMessagePublisher"));
69
71
  exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
70
72
  // UTILS bindings
71
73
  bind("InvokerUtils").to(InvokerUtils_1.InvokerUtils);
@@ -81,6 +83,7 @@ exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
81
83
  bind("IAccountPagoConfiadoApi").to(AccountPagoConfiadoApi_1.default);
82
84
  bind("IAccountFiadoSAApi").to(AccountFiadoSAApi_1.default);
83
85
  bind("INotificationMessagesPublisher").to(NotificationMessagePublisher_1.default);
86
+ bind("INotificationWSMessagesPublisher").to(NotificationWSMessagePublisher_1.default);
84
87
  bind("ISessionActivityPublisher").to(sessionActivity_1.SessionActivityPublisher);
85
88
  bind("ITransactionPublisher").to(transaction_1.TransactionPublisher);
86
89
  bind("ITransactionApi").to(TransactionApi_1.default);
@@ -130,4 +133,5 @@ exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
130
133
  bind("IPayrollApi").to(payroll_business_1.PayrollApi);
131
134
  bind("IReferralBusinessApi").to(referral_business_1.ReferralBusinessApi);
132
135
  bind("IEventHistoryApi").to(event_history_business_1.EventHistoryApi);
136
+ bind("IReportProcessorBusinessApi").to(ReportProcessorBusinessApi_1.default);
133
137
  });
@@ -35,9 +35,21 @@ let EventHistoryApi = class EventHistoryApi {
35
35
  * @throws {Error} Lanza un error si los parámetros de entrada son inválidos.
36
36
  */
37
37
  async findDirectoryUserEventsByDirectoryId(directoryId, periodDate, index, pageSize) {
38
- const url = `${this.baseUrl}directoryuser/events/search?directoryId=${directoryId}&periodDate=${periodDate}&index=${index}&pageSize=${pageSize}`;
39
- const operationName = "findDirectoryUserEventsByDirectoryId";
40
- return await this.httpRequest.get(`${url}`, null, { 'operationName': operationName });
38
+ const queryParams = [];
39
+ if (directoryId) {
40
+ queryParams.push(`directoryId=${directoryId}`);
41
+ }
42
+ if (periodDate) {
43
+ queryParams.push(`periodDate=${periodDate}`);
44
+ }
45
+ if (pageSize) {
46
+ queryParams.push(`pageSize=${pageSize}`);
47
+ }
48
+ if (index) {
49
+ queryParams.push(`index=${index}`);
50
+ }
51
+ const url = `${this.baseUrl}directoryuser/events/search?${queryParams.join('&')}`;
52
+ return await this.httpRequest.get(`${url}`);
41
53
  }
42
54
  /**
43
55
  * Crea un evento de cambio asociado a un Directorio o Usuario.
@@ -60,7 +72,20 @@ let EventHistoryApi = class EventHistoryApi {
60
72
  * @throws {Error} Lanza un error si los parámetros de entrada son inválidos.
61
73
  */
62
74
  async findAccountEventsByDirectoryId(directoryId, periodDate, index, pageSize) {
63
- const url = `${this.baseUrl}accounts/events/search?directoryId=${directoryId}&periodDate=${periodDate}&index=${index}&pageSize=${pageSize}`;
75
+ const queryParams = [];
76
+ if (directoryId) {
77
+ queryParams.push(`directoryId=${directoryId}`);
78
+ }
79
+ if (periodDate) {
80
+ queryParams.push(`periodDate=${periodDate}`);
81
+ }
82
+ if (pageSize) {
83
+ queryParams.push(`pageSize=${pageSize}`);
84
+ }
85
+ if (index) {
86
+ queryParams.push(`index=${index}`);
87
+ }
88
+ const url = `${this.baseUrl}accounts/events/search?${queryParams.join('&')}`;
64
89
  return await this.httpRequest.get(`${url}`);
65
90
  }
66
91
  /**
package/bin/index.d.ts CHANGED
@@ -53,3 +53,5 @@ export * from "./onboarding-business";
53
53
  export * from "./payroll-business";
54
54
  export * from "./referral-business";
55
55
  export * from "./event-history-business";
56
+ export * from "./report-processor-business";
57
+ export * from "./notificationWebsockets";
package/bin/index.js CHANGED
@@ -69,3 +69,5 @@ __exportStar(require("./onboarding-business"), exports);
69
69
  __exportStar(require("./payroll-business"), exports);
70
70
  __exportStar(require("./referral-business"), exports);
71
71
  __exportStar(require("./event-history-business"), exports);
72
+ __exportStar(require("./report-processor-business"), exports);
73
+ __exportStar(require("./notificationWebsockets"), exports);
@@ -0,0 +1,2 @@
1
+ export * from './queue/NotificationWSMessagePublisher';
2
+ export * from './queue/interfaces/INotificationWSMessagesPublisher';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./queue/NotificationWSMessagePublisher"), exports);
18
+ __exportStar(require("./queue/interfaces/INotificationWSMessagesPublisher"), exports);
@@ -0,0 +1,7 @@
1
+ import { INotificationWSMessagesPublisher } from "./interfaces/INotificationWSMessagesPublisher";
2
+ import { NotificationWSQueueMessageRequest } from "@fiado/type-kit/bin/notificationWS";
3
+ export default class NotificationWSMessagePublisher implements INotificationWSMessagesPublisher {
4
+ constructor();
5
+ private readonly NOTIFICATION_WS_MESSAGES_QUEUE;
6
+ publish(message: NotificationWSQueueMessageRequest<any>): Promise<void>;
7
+ }
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ const client_sqs_1 = require("@aws-sdk/client-sqs");
13
+ const inversify_1 = require("inversify");
14
+ let NotificationWSMessagePublisher = class NotificationWSMessagePublisher {
15
+ constructor() {
16
+ this.NOTIFICATION_WS_MESSAGES_QUEUE = process.env.NOTIFICATION_WS_MESSAGES_QUEUE;
17
+ }
18
+ async publish(message) {
19
+ try {
20
+ const client = new client_sqs_1.SQSClient();
21
+ const sendMessageRequest = {
22
+ QueueUrl: this.NOTIFICATION_WS_MESSAGES_QUEUE,
23
+ MessageBody: JSON.stringify(message)
24
+ };
25
+ const command = new client_sqs_1.SendMessageCommand(sendMessageRequest);
26
+ await client.send(command);
27
+ }
28
+ catch (error) {
29
+ throw new Error(`Error publishing message to queue ${': ' + error.message}`);
30
+ }
31
+ }
32
+ };
33
+ NotificationWSMessagePublisher = __decorate([
34
+ (0, inversify_1.injectable)(),
35
+ __metadata("design:paramtypes", [])
36
+ ], NotificationWSMessagePublisher);
37
+ exports.default = NotificationWSMessagePublisher;
@@ -0,0 +1,4 @@
1
+ import { NotificationWSQueueMessageRequest } from "@fiado/type-kit/bin/notificationWS";
2
+ export interface INotificationWSMessagesPublisher {
3
+ publish(message: NotificationWSQueueMessageRequest<any>): Promise<void>;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -24,4 +24,5 @@ export default class OnboardingBusinessApi implements IOnboardingBusinessApi {
24
24
  index?: string;
25
25
  pageSize?: string;
26
26
  }): Promise<any>;
27
+ getBatchByIds(ids: string[]): Promise<any>;
27
28
  }
@@ -90,6 +90,10 @@ let OnboardingBusinessApi = class OnboardingBusinessApi {
90
90
  const url = `${this.baseUrl}private/getList`;
91
91
  return await this.httpRequest.get(`${url}`);
92
92
  }
93
+ async getBatchByIds(ids) {
94
+ const url = `${this.baseUrl}private/getBatchByIds`;
95
+ return await this.httpRequest.get(`${url}`, { ids });
96
+ }
93
97
  };
94
98
  OnboardingBusinessApi = __decorate([
95
99
  (0, inversify_1.injectable)(),
@@ -19,4 +19,5 @@ export interface IOnboardingBusinessApi {
19
19
  index?: string;
20
20
  pageSize?: string;
21
21
  }): Promise<any>;
22
+ getBatchByIds(ids: string[]): Promise<any>;
22
23
  }
@@ -1,6 +1,7 @@
1
1
  import { IHttpRequest } from "@fiado/http-client";
2
2
  import { IReferralBusinessApi } from "./interfaces/IReferralBusinessApi";
3
3
  import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
4
+ import { Scope } from "@fiado/type-kit/bin/directory/enums/Scope";
4
5
  export declare class ReferralBusinessApi implements IReferralBusinessApi {
5
6
  private httpRequest;
6
7
  private readonly baseUrl;
@@ -13,4 +14,5 @@ export declare class ReferralBusinessApi implements IReferralBusinessApi {
13
14
  groupId?: string;
14
15
  }): Promise<FiadoApiResponse<any>>;
15
16
  getByDirectoryId(directoryId: string): Promise<FiadoApiResponse<any>>;
17
+ accountOpeningsBySponsor(newDirectoryId: string, scope: Scope): Promise<FiadoApiResponse<any>>;
16
18
  }
@@ -32,6 +32,10 @@ let ReferralBusinessApi = class ReferralBusinessApi {
32
32
  const url = `${this.baseUrl}private/agents/directoryId/${directoryId}`;
33
33
  return await this.httpRequest.get(url);
34
34
  }
35
+ async accountOpeningsBySponsor(newDirectoryId, scope) {
36
+ const url = `${this.baseUrl}private/account-openings-by-sponsor/${newDirectoryId}`;
37
+ return await this.httpRequest.post(url, { directoryId: newDirectoryId, scope });
38
+ }
35
39
  };
36
40
  exports.ReferralBusinessApi = ReferralBusinessApi;
37
41
  exports.ReferralBusinessApi = ReferralBusinessApi = __decorate([
@@ -1,4 +1,5 @@
1
1
  import FiadoApiResponse from "@fiado/type-kit/bin/apiResponse/dtos/FiadoApiResponse";
2
+ import { Scope } from "@fiado/type-kit/bin/directory/enums/Scope";
2
3
  /**
3
4
  * Interfaz para el servicio Payroll que permite operaciones sobre payroll.
4
5
  */
@@ -21,4 +22,10 @@ export interface IReferralBusinessApi {
21
22
  category?: string;
22
23
  groupId?: string;
23
24
  }): Promise<FiadoApiResponse<any>>;
25
+ /**
26
+ * Registra aperturas de cuenta por patrocinador.
27
+ * @param newDirectoryId ID del nuevo directorio.
28
+ * @throws {Error} Lanza un error si los parámetros de entrada son inválidos.
29
+ */
30
+ accountOpeningsBySponsor(newDirectoryId: string, scope: Scope): Promise<FiadoApiResponse<void>>;
24
31
  }
@@ -0,0 +1,6 @@
1
+ export interface IReportProcessorBusinessApi {
2
+ processReports(key: string): Promise<{
3
+ url: string;
4
+ expiresInSeconds: number;
5
+ }>;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ import { IHttpRequest } from "@fiado/http-client";
2
+ import { IReportProcessorBusinessApi } from "./IReportProcessorBusinessApi";
3
+ export default class ReportProcessorBusinessApi implements IReportProcessorBusinessApi {
4
+ private httpRequest;
5
+ private readonly baseUrl;
6
+ constructor(httpRequest: IHttpRequest);
7
+ processReports(key: string): Promise<{
8
+ url: string;
9
+ expiresInSeconds: number;
10
+ }>;
11
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ const inversify_1 = require("inversify");
16
+ let ReportProcessorBusinessApi = class ReportProcessorBusinessApi {
17
+ constructor(httpRequest) {
18
+ this.httpRequest = httpRequest;
19
+ this.baseUrl = process.env.REPORT_PROCESSOR_LAMBDA_URL || "";
20
+ }
21
+ async processReports(key) {
22
+ const url = `${this.baseUrl}/report-link?key=${key}`;
23
+ return await this.httpRequest.get(url);
24
+ }
25
+ };
26
+ ReportProcessorBusinessApi = __decorate([
27
+ (0, inversify_1.injectable)(),
28
+ __param(0, (0, inversify_1.inject)("IHttpRequest")),
29
+ __metadata("design:paramtypes", [Object])
30
+ ], ReportProcessorBusinessApi);
31
+ exports.default = ReportProcessorBusinessApi;
@@ -0,0 +1,2 @@
1
+ export * from './api/ReportProcessorBusinessApi';
2
+ export * from './api/IReportProcessorBusinessApi';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./api/ReportProcessorBusinessApi"), exports);
18
+ __exportStar(require("./api/IReportProcessorBusinessApi"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/api-invoker",
3
- "version": "1.5.23",
3
+ "version": "1.5.24",
4
4
  "description": "Sirve como un puente entre diferentes funciones lambda, facilitando la comunicación entre ellas a través de invocaciones http",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",