gemcap-be-common 1.4.104 → 1.4.105
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/package.json
CHANGED
|
@@ -166,7 +166,7 @@ class LoanStatementStatusService {
|
|
|
166
166
|
}
|
|
167
167
|
async recalculateStatementQueued(productMap) {
|
|
168
168
|
this.mainQueueService.sendTaskToQueue({
|
|
169
|
-
data: {
|
|
169
|
+
data: { productMap },
|
|
170
170
|
pattern: event_map_1.EventMap.recalc.STATEMENT_STATUS,
|
|
171
171
|
}, queue_map_1.QueueMap.main).catch(console.error);
|
|
172
172
|
}
|
|
@@ -185,7 +185,7 @@ export class LoanStatementStatusService {
|
|
|
185
185
|
|
|
186
186
|
async recalculateStatementQueued(productMap: Record<string, string>) {
|
|
187
187
|
this.mainQueueService.sendTaskToQueue({
|
|
188
|
-
data: {
|
|
188
|
+
data: { productMap },
|
|
189
189
|
pattern: EventMap.recalc.STATEMENT_STATUS,
|
|
190
190
|
}, QueueMap.main).catch(console.error);
|
|
191
191
|
}
|