@izara_project/izara-core-library-asynchronous-flow 1.0.2 → 1.0.3
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@izara_project/izara-core-library-asynchronous-flow",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Shared asynchronous flow logic",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,9 +20,11 @@
|
|
|
20
20
|
"testEnvironment": "node"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
+
"@izara_project/izara-core-library-core": "^1.0.16",
|
|
24
|
+
"@izara_project/izara-core-library-dynamodb": "^1.0.2",
|
|
23
25
|
"@izara_project/izara-core-library-external-request": "^1.0.17",
|
|
24
|
-
"@izara_project/izara-core-library-
|
|
25
|
-
"@izara_project/izara-
|
|
26
|
-
"
|
|
26
|
+
"@izara_project/izara-core-library-logger": "^1.0.6",
|
|
27
|
+
"@izara_project/izara-core-library-sqs": "^1.0.2",
|
|
28
|
+
"@izara_project/izara-core-library-trigger-cache": "^1.0.2"
|
|
27
29
|
}
|
|
28
30
|
}
|
|
@@ -20,11 +20,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
20
20
|
// Core libraries
|
|
21
21
|
const { NoRetryError } = require('@izara_project/izara-core-library-core');
|
|
22
22
|
const Logger = require('@izara_project/izara-core-library-logger');
|
|
23
|
+
|
|
24
|
+
// Data and service interaction libraries
|
|
23
25
|
const dynamodbSharedLib = require('@izara_project/izara-core-library-dynamodb');
|
|
24
26
|
const sqsSharedLib = require('@izara_project/izara-core-library-sqs');
|
|
25
|
-
const triggeredCacheSharedLib = require('@izara_project/izara-core-library-
|
|
27
|
+
const triggeredCacheSharedLib = require('@izara_project/izara-core-library-trigger-cache');
|
|
26
28
|
|
|
27
|
-
// External
|
|
29
|
+
// External service interactions
|
|
28
30
|
const { sqs } = require('@izara_project/izara-core-library-external-request');
|
|
29
31
|
|
|
30
32
|
module.exports.createFieldNameUniqueRequestId = (
|