@izara_project/izara-core-library-find-data 1.0.11 → 1.0.13
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 +20 -18
- package/src/FindDataSharedLib.js +1 -1
package/package.json
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@izara_project/izara-core-library-find-data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "Shared find data logic",
|
|
5
|
-
"
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "jest"
|
|
8
|
-
},
|
|
5
|
+
"homepage": "https://bitbucket.org/izara-core-libraries/izara-core-library-find-data#readme",
|
|
9
6
|
"repository": {
|
|
10
7
|
"type": "git",
|
|
11
8
|
"url": "git+ssh://git@bitbucket.org/izara-core-libraries/izara-core-library-find-data.git"
|
|
12
9
|
},
|
|
13
|
-
"author": "Sven Mason <thebarbariansven@gmail.com>",
|
|
14
10
|
"license": "AGPL-3.0-or-later",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
11
|
+
"author": "Sven Mason <thebarbariansven@gmail.com>",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"main": "index.js",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "jest"
|
|
18
16
|
},
|
|
19
17
|
"jest": {
|
|
20
18
|
"testEnvironment": "node"
|
|
21
19
|
},
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"@izara_project/izara-core-library-
|
|
28
|
-
"@izara_project/izara-core-library-
|
|
29
|
-
"@izara_project/izara-
|
|
30
|
-
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"jest": "^30.4.2"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@izara_project/izara-core-library-asynchronous-flow": "^1.0.25",
|
|
26
|
+
"@izara_project/izara-core-library-core": "^1.0.32",
|
|
27
|
+
"@izara_project/izara-core-library-external-request": "^1.0.30",
|
|
28
|
+
"@izara_project/izara-core-library-sns": "1.0.8",
|
|
29
|
+
"@izara_project/izara-core-library-stored-cache": "^1.0.14",
|
|
30
|
+
"@izara_project/izara-shared-core": "1.0.11"
|
|
31
|
+
},
|
|
32
|
+
"peerDependenciesMeta": {}
|
|
31
33
|
}
|
package/src/FindDataSharedLib.js
CHANGED
|
@@ -90,7 +90,7 @@ async function checkFindDataMainStatus(
|
|
|
90
90
|
[],// removeAttributes
|
|
91
91
|
"", // used when multi invocation lambdas need to link to the original uniqueRequestId
|
|
92
92
|
false, // will return recordNotFound if record not exist, and not create the record, eg sub-tasks for a main record
|
|
93
|
-
|
|
93
|
+
{},
|
|
94
94
|
overWriteCache,
|
|
95
95
|
);
|
|
96
96
|
if (cacheStatus !== "process") {
|