@izara_project/izara-core-library-find-data 1.0.10 → 1.0.11
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 +1 -1
- package/src/FindDataSharedLib.js +6 -1
package/package.json
CHANGED
package/src/FindDataSharedLib.js
CHANGED
|
@@ -108,6 +108,7 @@ async function checkFindDataMainStatus(
|
|
|
108
108
|
identifiers,
|
|
109
109
|
findDataMain.dataValue,
|
|
110
110
|
findDataMain[storedCacheSharedLib.createFieldNameCacheComplete('findData')],
|
|
111
|
+
overWriteCache,
|
|
111
112
|
callingFlow,
|
|
112
113
|
cacheStatus,
|
|
113
114
|
findDataMain[storedCacheSharedLib.createFieldNameErrorsFound('findData')]
|
|
@@ -137,6 +138,7 @@ async function completeFindDataMain(
|
|
|
137
138
|
objType,
|
|
138
139
|
identifiers,
|
|
139
140
|
dataValue,
|
|
141
|
+
overWriteCache,
|
|
140
142
|
callingFlow = "",
|
|
141
143
|
status,
|
|
142
144
|
errorsFound = []
|
|
@@ -157,6 +159,7 @@ async function completeFindDataMain(
|
|
|
157
159
|
identifiers,
|
|
158
160
|
dataValue,
|
|
159
161
|
timeCacheComplete,
|
|
162
|
+
overWriteCache,
|
|
160
163
|
callingFlow,
|
|
161
164
|
status,
|
|
162
165
|
errorsFound,
|
|
@@ -247,6 +250,7 @@ async function sendFindDataCompleteMessage(
|
|
|
247
250
|
identifiers,
|
|
248
251
|
dataValue,
|
|
249
252
|
timeCacheComplete = 0,
|
|
253
|
+
overWriteCache,
|
|
250
254
|
callingFlow = "",
|
|
251
255
|
status,
|
|
252
256
|
errorsFound = [],
|
|
@@ -265,7 +269,8 @@ async function sendFindDataCompleteMessage(
|
|
|
265
269
|
dataValue: dataValue,
|
|
266
270
|
status: status,
|
|
267
271
|
errorsFound: errorsFound,
|
|
268
|
-
timeCacheComplete: timeCacheComplete
|
|
272
|
+
timeCacheComplete: timeCacheComplete,
|
|
273
|
+
overWriteCache: overWriteCache
|
|
269
274
|
}),
|
|
270
275
|
TopicArn: await snsSharedLib.snsTopicArnByFlowSchema(_izContext, 'FindDataComplete_Out')
|
|
271
276
|
};
|